From fde6da3f90ac49ff39c4c8177bda438e463f1250 Mon Sep 17 00:00:00 2001 From: worldwidesorrow Date: Mon, 25 Nov 2019 09:26:13 -0600 Subject: [PATCH] Enable events and add new array. Note that setting minutes to -1 will run the event one time at server start. Events with minutes set to numbers from 0-60 will run every hour. --- Server Files/MPMissions/DayZ_Epoch_27.ruegen/init.sqf | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Server Files/MPMissions/DayZ_Epoch_27.ruegen/init.sqf b/Server Files/MPMissions/DayZ_Epoch_27.ruegen/init.sqf index c0714cefb..d7f6f1d1b 100644 --- a/Server Files/MPMissions/DayZ_Epoch_27.ruegen/init.sqf +++ b/Server Files/MPMissions/DayZ_Epoch_27.ruegen/init.sqf @@ -68,8 +68,13 @@ MaxDynamicDebris = 500; // Max number of random road blocks to spawn around the MaxVehicleLimit = 300; // Max number of random vehicles to spawn around the map spawnArea = 2000; // Distance around markers to find a safe spawn position spawnShoremode = 0; // Random spawn locations 1 = on shores, 0 = inland -EpochUseEvents = false; //Enable event scheduler. Define custom scripts in dayz_server\modules to run on a schedule. -EpochEvents = [["any","any","any","any",30,"crash_spawner"],["any","any","any","any",0,"crash_spawner"],["any","any","any","any",15,"supply_drop"]]; +EpochUseEvents = true; //Enable event scheduler. Define custom scripts in dayz_server\modules to run on a schedule. +EpochEvents = [ //[year,month,day of month, minutes,name of file - .sqf] If minutes is set to -1, the event will run once immediately after server start. + ["any","any","any","any",-1,"Care_Packages"], + //["any","any","any","any",-1,"Infected_Camps"], // (negatively impacts FPS) + //["any","any","any","any",-1,"CrashSites_Old"], // Old 1.0.5.1 Epoch version updated to work with Epoch 1.0.6+, includes mass graves. + ["any","any","any","any",-1,"CrashSites"] +]; // EPOCH CONFIG VARIABLES END // @@ -138,4 +143,4 @@ if (!isDedicated) then { 3 fadeSound 1; 3 fadeMusic 1; endLoadingScreen; -}; \ No newline at end of file +};