Skip to content

Commit

Permalink
a3 mission
Browse files Browse the repository at this point in the history
  • Loading branch information
tbox1911 committed May 24, 2024
1 parent 264fd61 commit e7c6c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core.liberation/scripts/server/a3w/init_missions.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ A3W_Mission_timeout = 60*60; // Time in seconds that a Side Mission will run fo
// A3W_Mission_delay = 1*60;
// A3W_Mission_timeout = 5*60;

waitUntil {sleep 1; !isNil "save_is_loaded" };
waitUntil {sleep 1; !isNil "GRLIB_init_server"};

// move to shared init (HC)
//[] call compileFinal preprocessFileLineNumbers "scripts\server\a3w\missions\setupMissionArrays.sqf";

for "_i" from 1 to 4 do {
// Start Permanent controller
private _init_sleep = ((5 + floor random 14) * 60);
private _init_sleep = ((2 + floor random 10) * 60);
while {_init_sleep > 0 && isNil "A3W_debug"} do { sleep 1; _init_sleep = _init_sleep - 1 };
diag_log format ["--- LRX A3W Starting Mission Controller #%1 at %2", _i, time];
if ((_i == 1) || (_i > 1 && isNil "A3W_debug")) then {
Expand Down

0 comments on commit e7c6c6b

Please sign in to comment.