mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 04:23:13 +03:00
0.69 + 1.7.5.M1D15
This commit is contained in:
@@ -7,6 +7,7 @@ _dateNow = (DateToNumber date);
|
||||
_maxZombies = dayz_maxLocalZombies;
|
||||
_maxWildZombies = 3;
|
||||
_age = -1;
|
||||
|
||||
_nearbyBuildings = [];
|
||||
_radius = 200;
|
||||
_maxZombies = 10;
|
||||
@@ -23,20 +24,37 @@ diag_log ("Type: " +str(_type));
|
||||
|
||||
switch (_nearbytype) do {
|
||||
case "NameVillage": {
|
||||
_radius = 250;
|
||||
//_radius = 250;
|
||||
_maxZombies = 30;
|
||||
};
|
||||
case "NameCity": {
|
||||
_radius = 300;
|
||||
//_radius = 300;
|
||||
_maxZombies = 40;
|
||||
};
|
||||
case "NameCityCapital": {
|
||||
_radius = 400;
|
||||
//_radius = 400;
|
||||
_maxZombies = 50;
|
||||
};
|
||||
};
|
||||
|
||||
_spawnZombies = count (_position nearEntities ["zZombie_Base",_radius]) < _maxZombies;
|
||||
_spawnZombies = count (_position nearEntities ["zZombie_Base",_radius+100]) < _maxZombies;
|
||||
|
||||
if ("ItemMap_Debug" in items player) then {
|
||||
deleteMarkerLocal "MaxZeds";
|
||||
deleteMarkerLocal "Counter";
|
||||
_markerstr = createMarkerLocal ["MaxZeds", _position];
|
||||
_markerstr setMarkerColorLocal "ColorRed";
|
||||
_markerstr setMarkerShapeLocal "ELLIPSE";
|
||||
_markerstr setMarkerBrushLocal "Border";
|
||||
_markerstr setMarkerSizeLocal [_radius, _radius];
|
||||
|
||||
_markerstr1 = createMarkerLocal ["Counter", _position];
|
||||
_markerstr1 setMarkerColorLocal "ColorYellow";
|
||||
_markerstr1 setMarkerShapeLocal "ELLIPSE";
|
||||
_markerstr1 setMarkerBrushLocal "Border";
|
||||
_markerstr1 setMarkerSizeLocal [_radius+100, _radius+100];
|
||||
};
|
||||
|
||||
|
||||
switch (_type) do {
|
||||
case "Zeds": {
|
||||
@@ -49,8 +67,16 @@ switch (_type) do {
|
||||
};
|
||||
};
|
||||
};
|
||||
case "Wild": {
|
||||
case "both": {
|
||||
//[_position, _maxZombies] call wild_spawnZombies;
|
||||
_nearbyBuildings = nearestObjects [_position, dayz_ZombieBuildings, _radius];
|
||||
_nearbyCount = count _nearbyBuildings;
|
||||
if (_nearbyCount > 0) then {
|
||||
[_radius, _position, _inVehicle, _dateNow, _age, _locationstypes, _nearestCity, _nearbyBuildings] call player_spawnlootCheck;
|
||||
if (_spawnZombies) then {
|
||||
[_radius, _position, _inVehicle, _dateNow, _age, _locationstypes, _nearestCity, _maxZombies, _nearbyBuildings] call player_spawnzedCheck;
|
||||
};
|
||||
};
|
||||
};
|
||||
case "Loot": {
|
||||
//_nearbyBuildings = nearestObjects [_position, ["building"], _radius];
|
||||
|
||||
Reference in New Issue
Block a user