From Bohemia Interactive Community
Notes
- Posted on July 13, 2009 - 11:35
- Killswitch
- In single-player missions, this command will return an empty array.
Bottom Section
- Posted on December 23, 2014 - 23:13 (UTC)
- DreadedEntity
-
To get a list of all player-controlled units:
_allPlayers = [];
{
if (isPlayer _x) then
{
_allPlayers pushBack _x;
};
} forEach playableUnits;
- Posted on April 15, 2015 - 23:06 (UTC)
- Bull A
-
Quote:
Killswitch
In single-player missions, this command will return an empty array.
Use the switchableUnits command instead