Additional Folders/Files in System

This commit is contained in:
icomrade
2016-02-27 22:34:50 -05:00
parent 3ba3781432
commit c034f43d0b
53 changed files with 22237 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
sched_buildingBubble = {
private "_dis";
{
_dis = _x distance player;
if ((player distance _x) > 400) then {
if (_x in dayz_buildingBubbleMonitor) then {
dayz_buildingBubbleMonitor = dayz_buildingBubbleMonitor - [_x];
};
//Clear Loot vars
if (!(isNil {player getVariable "looted"})) then {
_x setVariable ["looted",nil]; //SpawnCheck
};
if (!(isNil {player getVariable "zombieSpawn"})) then {
_x setVariable ["zombieSpawn",nil]; //SpawnCheck
};
};
} count dayz_buildingBubbleMonitor;
objNull
};