Add Timezone switch Var

Not 100% sure if this is correctlly
This commit is contained in:
Skaronator
2013-11-08 22:02:27 +01:00
parent 6a4846747c
commit d82fcb8bd4
2 changed files with 7 additions and 7 deletions

View File

@@ -360,7 +360,7 @@ if (!isDedicated) then {
_objName
};
dayz_originalPlayer = player;
dayz_originalPlayer = player;
// trader menu gui by maca134

View File

@@ -400,6 +400,9 @@ dayz_zSpawnDistance = 1000;
if(isNil "dayz_maxAnimals") then {
dayz_maxAnimals = 8;
};
if(isNil "timezoneswitch") then {
timezoneswitch = 0;
};
if(isNil "dayz_maxLocalZombies") then {
dayz_maxLocalZombies = 15;
};
@@ -448,6 +451,9 @@ if(isNil "DZE_BuildingLimit") then {
if(isNil "DZE_HumanityTargetDistance") then {
DZE_HumanityTargetDistance = 25;
};
if(isNil "DZE_FriendlySaving") then {
DZE_FriendlySaving = true;
};
DZE_REPLACE_WEAPONS = [["Crossbow","ItemMatchbox","ItemHatchet"],["Crossbow_DZ","ItemMatchbox_DZE","ItemHatchet_DZE"]];
@@ -490,13 +496,7 @@ DZE_fueltruckarray = ["KamazRefuel_DZ","UralRefuel_TK_EP1_DZ","MtvrRefuel_DES_EP
// Standard Fuel sources
dayz_fuelsources = ["Land_Ind_TankSmall","Land_fuel_tank_big","Land_fuel_tank_stairs","Land_fuel_tank_stairs_ep1","Land_wagon_tanker","Land_fuelstation","Land_fuelstation_army","land_fuelstation_w","Land_benzina_schnell"];
DZE_Lock_Door = "";
if(isNil "DZE_FriendlySaving") then {
DZE_FriendlySaving = true;
};
//init global arrays for Loot Chances
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\loot_init.sqf";