mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-03-01 11:11:52 +03:00
@@ -129,7 +129,7 @@ if (!_isNew) then {
|
||||
};
|
||||
};
|
||||
|
||||
_isHiveOk = if (_hiveVer >= dayz_hiveVersionNo) then {true} else {false}; //EDITED
|
||||
_isHiveOk = (_hiveVer >= dayz_hiveVersionNo); //EDITED
|
||||
|
||||
/*
|
||||
if (count _inventory > 2 && {typeName (_inventory select 2) != "STRING"}) then {
|
||||
|
||||
@@ -178,7 +178,7 @@ if (count _stats > 0) then {
|
||||
if (_randomSpot) then {
|
||||
private ["_counter","_position","_isNear","_isZero","_mkr"];
|
||||
if (!isDedicated) then {endLoadingScreen;};
|
||||
_IslandMap = if (toLower worldName in ["caribou","cmr_ovaron","dayznogova","dingor","dzhg","fallujah","fapovo","fdf_isle1_a","isladuala","lingor","mbg_celle2","namalsk","napf","oring","panthera2","sara","sauerland","smd_sahrani_a2","tasmania2010","tavi","trinity","utes"]) then {true} else {false};
|
||||
_IslandMap = (toLower worldName in ["caribou","cmr_ovaron","dayznogova","dingor","dzhg","fallujah","fapovo","fdf_isle1_a","isladuala","lingor","mbg_celle2","namalsk","napf","oring","panthera2","sara","sauerland","smd_sahrani_a2","tasmania2010","tavi","trinity","utes"]);
|
||||
|
||||
//spawn into random
|
||||
_findSpot = true;
|
||||
|
||||
@@ -151,7 +151,7 @@ if (count _this > 4) then { //calling from player_onDisconnect
|
||||
};
|
||||
if (_isInVehicle) then {
|
||||
//if the player object is inside a vehicle lets eject the player
|
||||
_relocate = if ((vehicle _character isKindOf "Air") && (_charPos select 2 > 1.5)) then {true} else {false};
|
||||
_relocate = ((vehicle _character isKindOf "Air") && (_charPos select 2 > 1.5));
|
||||
_character action ["eject", vehicle _character];
|
||||
|
||||
// Prevent relog in parachute, heli or plane above base exploit to get inside
|
||||
|
||||
Reference in New Issue
Block a user