Hi all.
im having issues with some custom scripts ive put in my mission folder
my init.sqf doesnt seem to be starting the scripts
if (!isDedicated) then {
//Conduct map operations
0 fadeSound 0;
waitUntil {!isNil "dayz_loadScreenMsg"};
dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
//Run the player monitor
_id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
_playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";
[] execVM "R3F_Realism\R3F_Realism_Init.sqf";
[] execVM "safezone.sqf";
[] execVM "antibrute.sqf";
[] execVM "skacast.sqf";
[] execVM "excbridge.sqf";
};
//Lights
//[17,6,true,false,true,true,72,242,600,10,[0.698, 0.556, 0.419],"Generator_DZ",208,"",0.5] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
};
#include "\z\addons\dayz_code\system\REsec.sqf"

as far as i can tell it should be working as expected

