allDeadMen: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 8: | Line 8: | ||
|descr= Return a list of dead units including agents. Dead unit might be inside vehicle. | |descr= Return a list of dead units including agents. Dead unit might be inside vehicle. | ||
|s1= | |s1= [[allDeadMen]] | ||
|r1= [[Array]] | |r1= [[Array]] | ||
|x1= < | |x1= <sqf>{ deleteVehicle _x } forEach allDeadMen;</sqf> | ||
</ | |||
|seealso= [[allDead]] [[allUnits]] [[allGroups]] [[playableUnits]] [[switchableUnits]] [[units]] [[vehicles]] [[allCurators]] | |seealso= [[allDead]] [[allUnits]] [[allGroups]] [[playableUnits]] [[switchableUnits]] [[units]] [[vehicles]] [[allCurators]] [[getCorpse]] | ||
}} | }} | ||
{{Note | |||
|user= Pierre MGI | |||
|timestamp= 20151015040800 | |||
|text= As dead men are civilian side, don't try to count them with <sqf inline>{ side _x isEqualTo east } count allDeadMen;</sqf> result will always be 0.<br> | |||
Use the configfile "side" instead: | |||
<sqf> | |||
0 spawn | |||
As dead men are civilian side, don't try to count them with {side _x isEqualTo | { | ||
Use the configfile "side" instead:< | while { true } do | ||
0 | { | ||
sleep 0.1; | |||
</ | _westScore = | ||
{ | |||
getNumber (configFile >> "CfgVehicles" >> typeOf _x >> "side") == 0 | |||
} count allDeadMen; | |||
hintSilent format ["East killed: %1", _westScore]; | |||
}; | |||
}; | |||
</sqf> | |||
}} |
Latest revision as of 19:48, 8 March 2024
Description
- Description:
- Return a list of dead units including agents. Dead unit might be inside vehicle.
- Groups:
- Object Detection
Syntax
- Syntax:
- allDeadMen
- Return Value:
- Array
Examples
- Example 1:
Additional Information
- See also:
- allDead allUnits allGroups playableUnits switchableUnits units vehicles allCurators getCorpse
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