added plotManagement by DevZupa

This commit is contained in:
Bruce
2016-04-29 23:02:25 +02:00
parent 89eea668f5
commit 98bfee8bdf
19 changed files with 843 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
private ["_close"];
lbClear 7001;
_closePeople = player nearEntities ["CAManBase", 10];
Humans = [];
{
if (_x isKindOf "Man" and !(_x isKindOf "zZombie_base")) then {
_friendUID = getPlayerUID _x;
_friendName = name _x;
Humans = Humans + [[_friendUID,_friendName]] ;
lbAdd [7001, _friendName];
};
} forEach _closePeople;