A2Epoch:Init.sqf
Contents
- 1 DayZ Epoch init.sqf variables
- 1.1 DZE_TRADER_SPAWNMODE
- 1.2 OldHeliCrash (1.0.1.5+)
- 1.3 dayz_fullMoonNights
- 1.4 spawnShoremode
- 1.5 spawnArea
- 1.6 dayz_minpos
- 1.7 dayz_maxpos
- 1.8 MaxVehicleLimit
- 1.9 dayz_MapArea
- 1.10 dayz_paraSpawn
- 1.11 spawnMarkerCount
- 1.12 dayz_maxAnimals
- 1.13 dayz_tameDogs
- 1.14 DynamicVehicleDamageLow
- 1.15 DynamicVehicleDamageHigh
- 1.16 DynamicVehicleFuelLow
- 1.17 DynamicVehicleFuelHigh
- 1.18 dayz_maxLocalZombies
- 1.19 dayz_maxGlobalZombiesInit
- 1.20 dayz_maxGlobalZombiesIncrease
- 1.21 dayz_maxZeds
- 1.22 dayz_zedsAttackVehicles
- 1.23 dayz_sellDistance
- 1.24 DZEdebug
- 1.25 Dynamic Debris
- 1.26 Customize fresh spawn loadout
- 1.27 Customize Death Messages
DayZ Epoch init.sqf variables[edit | edit source]
DZE_TRADER_SPAWNMODE[edit | edit source]
Enable purchased vehicle parachute spawning setting this to true. (Default: false)
DZE_TRADER_SPAWNMODE = true;
OldHeliCrash (1.0.1.5+)[edit | edit source]
Re-enable old heli crash method with OldHeliCrash = true;
OldHeliCrash = true;
dayz_fullMoonNights[edit | edit source]
Enable full moon nights by setting this to true. (Default: false)
dayz_fullMoonNights = true;
spawnShoremode[edit | edit source]
Controls if the player will spawn on shore or not. 1 = Spawn must be on shore, 0 = anywhere. (Default: 1)
spawnShoremode = 1;
spawnArea[edit | edit source]
Controls how large of an area to search for a suitable spawn location. (Default: 1500)
spawnArea = 1500;
dayz_minpos[edit | edit source]
Defines acceptable play area if player is outside of area the players position will reset on reconnect. (Default: -20000)
dayz_minpos = -20000;
dayz_maxpos[edit | edit source]
Defines acceptable play area if player is outside of area the players position will reset on reconnect. (Default: 20000)
dayz_maxpos = 20000;
MaxVehicleLimit[edit | edit source]
Controls the max overall vehicle limit if this limit is reached no new vehicles will spawn.
MaxVehicleLimit = 50;
dayz_MapArea[edit | edit source]
This is the overall area used to determine where to spawn vehicles, road debris, and helicopter crashes. (Default: 10000)
dayz_MapArea = 12000;
dayz_paraSpawn[edit | edit source]
Experimental feature that will parachute spawn all players into the game. (Default: false)
dayz_paraSpawn = true;
spawnMarkerCount[edit | edit source]
Allows adding more potential spawn points. PLEASE NOTE: The extra markers named spawn5 - spawn10 must exist. (Default: 4)
spawnMarkerCount = 10;
dayz_maxAnimals[edit | edit source]
Controls animal spawn limits (Default: 8)
dayz_maxAnimals = 8;
dayz_tameDogs[edit | edit source]
Enables the ability to tame dogs with raw meat. (Default: false)
dayz_tameDogs = true;
DynamicVehicleDamageLow[edit | edit source]
Sets the lowest possible damage a fresh spawned vehicle will have. (Default: 0)
DynamicVehicleDamageLow = 0;
DynamicVehicleDamageHigh[edit | edit source]
Sets the highest possible damage a fresh spawned vehicle will have. (Default: 100)
DynamicVehicleDamageHigh = 100;
DynamicVehicleFuelLow[edit | edit source]
Sets the lowest possible fuel level a fresh spawned vehicle will have. (Default: 0)
DynamicVehicleFuelLow = 0;
DynamicVehicleFuelHigh[edit | edit source]
Sets the highest possible fuel level a fresh spawned vehicle will have. (Default: 100)
DynamicVehicleFuelHigh = 100;
dayz_maxLocalZombies[edit | edit source]
Max number of zombies spawned per player. (Default: 40)
dayz_maxLocalZombies = 40;
dayz_maxGlobalZombiesInit[edit | edit source]
Starting global max zombie count, this will increase for each player within 400m (Default: 40)
dayz_maxGlobalZombiesInit = 40;
dayz_maxGlobalZombiesIncrease[edit | edit source]
This is the amount of global zombie limit increase per player within 400m (Default: 10)
dayz_maxGlobalZombiesIncrease = 10;
dayz_maxZeds[edit | edit source]
Total zombie limit (Default: 500)
dayz_maxZeds = 500;
dayz_zedsAttackVehicles[edit | edit source]
Disables zombies attacking vehicles.
dayz_zedsAttackVehicles = false;
dayz_sellDistance[edit | edit source]
Controls the distance that you can sell a vehicle to the traders.
dayz_sellDistance = 20;
DZEdebug[edit | edit source]
true will enable debug so that road debris and new vehicle spawns are visible via map markers. Also debug will enable "Save to arma.RPT" that allows access of a tool to obtain lootpos information for buildings used for adding support for additional maps. (Default: false)
DZEdebug = true;
Dynamic Debris[edit | edit source]
To change how many debris spawn edit the MaxDynamicDebris variable in the missions init.sqf.
MaxDynamicDebris = 100; // Max number of road debris spawns (Default: 100)
Customize fresh spawn loadout[edit | edit source]
Server admins can now change default fresh spawn loadout by adding these variables to the mission init.sqf.
DefaultMagazines = ["ItemBandage","ItemPainkiller"]; DefaultWeapons = ["ItemFlashlight"]; DefaultBackpack = ""; DefaultBackpackWeapon = "";
Customize Death Messages[edit | edit source]
Untested
Enables global chat messaging of player deaths. (Also requires enableRadio true;?)
DZE_DeathMsgGlobal = true;
Enables side chat messaging of player deaths. (Also requires enableRadio true;?)
DZE_DeathMsgSide = true;
Enables global title text messaging of player deaths.
DZE_DeathMsgTitleText = true;