mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
@@ -44,10 +44,12 @@ _lootGroup = Loot_GetGroup(getText(_config >> "lootGroup"));
|
|||||||
_worldPos = _this modelToWorld _x;
|
_worldPos = _this modelToWorld _x;
|
||||||
_worldPos set [2, 0 max (_worldPos select 2)];
|
_worldPos set [2, 0 max (_worldPos select 2)];
|
||||||
|
|
||||||
//Delete existing lootpiles within 1m of spawn location
|
//Delete existing lootpiles within 1m of spawn location if no player is right next to it
|
||||||
{
|
{
|
||||||
deleteVehicle _x;
|
if ({isPlayer _x} count (_x nearEntities ["CAManBase",4]) == 0) then {
|
||||||
dayz_currentWeaponHolders = dayz_currentWeaponHolders - 1;
|
deleteVehicle _x;
|
||||||
|
dayz_currentWeaponHolders = dayz_currentWeaponHolders - 1;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
foreach (_worldPos nearObjects ["ReammoBox", 1]);
|
foreach (_worldPos nearObjects ["ReammoBox", 1]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user