allUnits: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 15: | Line 15: | ||
|gr1= Object Detection | |gr1= Object Detection | ||
|descr= Returns a list of all units, '''except agents, dead units or units waiting for respawn''', outside and inside vehicles that were created on the following sides [[east]], [[west]], [[independent]] and [[civilian]]. | |descr= Returns a list of all units, '''except agents, dead units or units waiting for respawn''', outside and inside vehicles that were created on the following sides [[east]], [[west]], [[independent]] and [[civilian]]. | ||
{{Feature|arma3|To get all units of given side, use {{hl|[[units]] [[Side]]}}.}} | {{Feature|arma3|To get all units of given side, use {{hl|[[units]] [[Side]]}}.}} | ||
|s1= [[allUnits]] | |s1= [[allUnits]] | ||
|r1= [[Array]] - Array of [[Object|object]]s | |r1= [[Array]] - Array of [[Object|object]]s | ||
Line 24: | Line 24: | ||
|x1= <sqf>{ _x setDamage 0.5; _x groupChat "Braaains"; } forEach allUnits;</sqf> | |x1= <sqf>{ _x setDamage 0.5; _x groupChat "Braaains"; } forEach allUnits;</sqf> | ||
|x2= <sqf>allUnits apply { diag_log | |x2= <sqf>allUnits apply { diag_log _x; };</sqf> | ||
|seealso= [[allPlayers]] [[allGroups]] [[allDead]] [[playableUnits]] [[switchableUnits]] [[units]] [[vehicles]] [[allUnitsUAV]] [[allCurators]] [[playersNumber]] | |seealso= [[allPlayers]] [[allGroups]] [[allDead]] [[playableUnits]] [[switchableUnits]] [[units]] [[vehicles]] [[allUnitsUAV]] [[allCurators]] [[playersNumber]] | ||
}} | }} | ||
{{Note | |||
|user= Pierre MGI | |||
|timestamp= 20180906164300 | |||
|text= It returns also BIS_SUPP_HQ created by support modules and headquarters Entity from HQ modules. | |||
}} | |||
Revision as of 00:13, 12 August 2022
Description
- Description:
- Returns a list of all units, except agents, dead units or units waiting for respawn, outside and inside vehicles that were created on the following sides east, west, independent and civilian.
- Groups:
- Object Detection
Syntax
Examples
- Example 1:
- Example 2:
Additional Information
- See also:
- allPlayers allGroups allDead playableUnits switchableUnits units vehicles allUnitsUAV allCurators playersNumber
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
- Posted on Sep 06, 2018 - 16:43 (UTC)
- It returns also BIS_SUPP_HQ created by support modules and headquarters Entity from HQ modules.