Files
DayZ-Epoch/SQF/dayz_code/groups/getCrew.sqf
ebaydayz f770b0a85d Add group system
Initial commit, not tested in multiplayer yet. Some revisions still left
to do.
2016-10-27 16:06:49 -04:00

8 lines
160 B
Plaintext

private "_crew";
_crew = [];
{
_crew set [count _crew, if (alive _x) then {name _x} else {"unknown"}];
} count crew _this;
format ["%1%2",typeOf _this,_crew]