mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-07-01 06:01:56 +03:00
Remove two unused files
Vanilla commit: https://github.com/DayZMod/DayZ/commit/64ea1eaa76f6d3dce9b3be3685a8642de9390f43
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
private ["_nearby","_run"];
|
||||
_building = _this select 0;
|
||||
//_GroupMarker = _this select 1;
|
||||
_items = _this select 2;
|
||||
_run = true;
|
||||
_nearby = false;
|
||||
while {_run} do {
|
||||
if (isNull _building) then {_run = false};
|
||||
_nearby = false;
|
||||
{
|
||||
if (_x distance _building < 500) then {_nearby = true};
|
||||
} forEach (call BIS_fnc_listPlayers);
|
||||
if (!_nearby) then {_run = false};
|
||||
uiSleep 5;
|
||||
};
|
||||
{deleteVehicle _x;} forEach _items;
|
||||
|
||||
|
||||
_building setVariable ["looted",(DateToNumber date),true];
|
||||
Reference in New Issue
Block a user