allDead: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
 
(47 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma2oa |Game name=
|game1= arma2oa
|version1= 1.57


|1.57|Game version=
|game2= tkoh
|version2= 1.00


|gr1= Object Manipulation |GROUP1=
|game3= arma3
____________________________________________________________________________________________
|version3= 0.50


| Return a list of all dead units including agents and destroyed vehicles. Dead units may be in vehicles. |DESCRIPTION=
|gr1= Object Detection
____________________________________________________________________________________________


| [[allDead]] |SYNTAX=
|descr= Return a list of all dead units including agents and destroyed vehicles. Dead units may be in vehicles.


| [[Array]] |RETURNVALUE=
|s1= [[allDead]]
____________________________________________________________________________________________


|x1= <code>{ [[deleteVehicle]] _x } [[forEach]] [[allDead]];</code>|EXAMPLE1=
|r1= [[Array]]


|x2= allAlive: <code>_all = [[allUnits]] + [[vehicles]];
|x1= <sqf>{ deleteVehicle _x } forEach allDead;</sqf>
 
|x2= allAlive:
<sqf>_all = allUnits + vehicles;
{
{
_all [[pushBack]] [[agent]] _x;
_all pushBack agent _x;
} [[forEach]] ([[agents]] - [<nowiki/>[[teamMemberNull]]]);
} forEach (agents - [teamMemberNull]);
allAlive = _all - [[allDead]];</code> |EXAMPLE2=
allAlive = _all - allDead;</sqf>
____________________________________________________________________________________________


| [[allDeadMen]], [[allUnits]], [[allGroups]], [[playableUnits]], [[switchableUnits]], [[units]], [[vehicles]], [[allCurators]] |SEEALSO=
|seealso= [[allDeadMen]] [[allUnits]] [[allGroups]] [[playableUnits]] [[switchableUnits]] [[units]] [[vehicles]] [[allCurators]]
}}


| |MPBEHAVIOUR=
{{Note
|user= Ebay
|timestamp= 20170406154000
|text= This also returns bodies hidden with [[hideBody]] until they are deleted. Tested in A2OA 1.63.131129
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on April 6, 2017 - 15:40 (UTC)</dd>
<dt class="note">[[User:Ebay|Ebay]]</dt>
<dd class="note">
This also returns bodies hidden with [[hideBody]] until they are deleted. Tested in A2OA 1.63.131129
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 13:02, 14 May 2022

Hover & click on the images for description

Description

Description:
Return a list of all dead units including agents and destroyed vehicles. Dead units may be in vehicles.
Groups:
Object Detection

Syntax

Syntax:
allDead
Return Value:
Array

Examples

Example 1:
{ deleteVehicle _x } forEach allDead;
Example 2:
allAlive:
_all = allUnits + vehicles; { _all pushBack agent _x; } forEach (agents - [teamMemberNull]); allAlive = _all - allDead;

Additional Information

See also:
allDeadMen allUnits allGroups playableUnits switchableUnits units vehicles allCurators

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Ebay - c
Posted on Apr 06, 2017 - 15:40 (UTC)
This also returns bodies hidden with hideBody until they are deleted. Tested in A2OA 1.63.131129