mirror of
https://github.com/rambo/arma3_missions.git
synced 2024-08-30 16:52:13 +00:00
11 lines
235 B
Plaintext
11 lines
235 B
Plaintext
|
private _returnValue = [];
|
||
|
|
||
|
private _justPlayers = (call BIS_fnc_listPlayers) - entities "HeadlessClient_F";
|
||
|
{
|
||
|
if (alive _x) then
|
||
|
{
|
||
|
[_returnValue, _x] call BIS_fnc_arrayPush;
|
||
|
};
|
||
|
} forEach _justPlayers;
|
||
|
|
||
|
_returnValue
|