武装突袭 Wiki
Advertisement
  

点击图片可看到更多讯息

开始使用于

游戏:
Arma 2: Operation Arrowhead
版本:
1.57

描述

描述:
Returns all mission objects (created by or during a mission) with given type (or its subtype). In some cases allMissionObjects could be substituted with entities, which would be much much faster alternative.

基本句法

句法:
allMissionObjects type
参数:
type: String
返回值:
Array of Objects

范例

范例1:
_airObjects = allMissionObjects "Air";
范例2:
{ deleteVehicle _x } forEach (allMissionObjects "");
范例3:
_allMObjects =allMissionObjects "All";

额外资讯

多人游戏:
-
也可以看看:
allDeadallGroupsallUnitsentitiesvehiclesallMines

注意事项

此处撰写句法皆为可行用法. 可到官网[1]专页回报错误. 你可以使用讨论页面或是论坛来进行讨论.
新增注意事项 | 如何新增?

Notes

Posted on June 22, 2012
Rocket
Be VERY careful with the use of this command. It is very demanding as it must iterate through all mission created objects. Particular care should be taken exercising this often on dedicated servers.
Posted on Decembere 15, 2013
Killzone_Kid
For some reason in Arma 3 this command is up to 5 times faster on the dedicated server than on a connected client. In my experiments it took on average 5 ms for the command to complete on a client while under 1 ms on the server.

Bottom Section

Advertisement