Skip to content

Instantly share code, notes, and snippets.

DayZ Epoch 1.0.7.1 LAN server install guide by JasonTM
** for Youtube demonstration **
** This version is for installing directly into your Arma 2 Operation Arrowhead directory in your Steam files. **
*** Always run steam as an administrator.
*** Go into your Steam Library and verify the game files of Arma 2 and Arma 2 OA by right clicking and selecting Properties >> Installed Files >> Verify Integrity of Game Files.
*** I am convinced that the Steam installer does not always copy files over correctly and failing to verify the integrity of the files leads to "Session Lost" errors.
*** Make sure you have run Arma 2 and Arma 2 Operation Arrowhead to the options screen at least once to complete their configurations.
Some of the files used in the install are quite large so downloading them can take a significant amount of time.
/*
This file places wood ramps in front of certain barracks so they can be entered without vaulting -JasonTM
Install Instructions
Place this file into a folder called mapaddons in the root of your server PBO.
Open dayz_server\system\server_monitor.sqf and add this line at the very bottom.
execVM "z\addons\dayz_server\mapaddons\namalskmapfixes.sqf";
Save and repack your server PBO.
*/
_vehicle_8 = objNull;
/////////////////////////////////////////Server Install/////////////////////////////////////////////////////////////////////////////
//Add this to the top of addons in mission.sqm
"ns_dayz",
"ns_modules",
//AII Rail Gun Spawn Script by JasonTM
/*
Install Instructions
Place this file into a folder called mapaddons in the root of your server PBO.
Open dayz_server\system\server_monitor.sqf and add this line at the very bottom.
execVM "z\addons\dayz_server\mapaddons\AIIRailGunSpawn.sqf";
Save and repack your server PBO.
*/
/*
Place this file in a folder called scripts on the root of your mission PBO.
Add this line to your (!isDedicated) section in init.sqf
[] execVM "scripts\fogbreath.sqf";
*/
doobreath = {
private ["_pos", "_ps"];
sleep random 2;
_pos = _this selectionposition "neck";
execVM "\z\addons\dayz_server\bankzones\banks.sqf";
"PVDZE_bank_Save" addPublicVariableEventHandler {
_playerObj = ((_this select 1) select 0);
_playerID = getPlayerUID _playerObj;
_bankMoney = _playerObj getVariable ["bankMoney",0];
if(_playerID != "") then {
_key = format["CHILD:299:%1:%2:",_playerID,_bankMoney];