a3_exile_occupation/scripts/startOccupation.sqf

103 lines
3.7 KiB
Plaintext
Raw Normal View History

2016-04-12 10:14:07 +00:00
if (!isServer) exitWith {};
2016-04-10 14:42:45 +00:00
_logDetail = format ["[OCCUPATION]:: Occupation %2 Initialised at %1",time,SC_occupationVersion];
2016-04-02 19:06:53 +00:00
[_logDetail] call SC_fnc_log;
2016-03-19 19:00:44 +00:00
[] call ExileClient_system_map_initialize;
if(SC_debug) then { SC_refreshTime = 60; }else{ SC_refreshTime = 300; };
2016-03-18 11:02:30 +00:00
// Add selected occupation scripts to Exile Threading System
2016-03-19 19:00:44 +00:00
2016-04-30 16:13:28 +00:00
if(SC_processReporter) then
{
fnc_processReporter = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\processReporter.sqf";
diag_log format ["[processReporter]:: Initialised at %1",time];
[60, fnc_processReporter, [], true] call ExileServer_system_thread_addTask;
};
if (SC_fastNights) then
{
fnc_checkMultiplier = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationFastNights.sqf";
2016-05-03 00:05:51 +00:00
diag_log format ["[OCCUPATION:FastNights]:: Initialised at %1",time];
[60, fnc_checkMultiplier, [], true] call ExileServer_system_thread_addTask;
};
if(SC_occupyTraders) then
{
uiSleep 15; // delay the start
call compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationTraders.sqf";
};
if(SC_occupyLootCrates) then
{
if(SC_occupyLootCratesMarkers) then
{
uiSleep 15; // delay the start
fnc_occupationDeleteMapMarker = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\deleteMapMarkers.sqf";
[10, fnc_occupationDeleteMapMarker, [], true] call ExileServer_system_thread_addTask;
};
call compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationLootCrates.sqf";
};
if(SC_occupyHeliCrashes) then
{
2016-04-02 19:06:53 +00:00
uiSleep 15; // delay the start
call compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationHeliCrashes.sqf";
};
if(SC_occupyStatic) then
2016-03-19 19:00:44 +00:00
{
uiSleep 15; // delay the start
fnc_occupationStatic = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationStatic.sqf";
[SC_refreshTime, fnc_occupationStatic, [], true] call ExileServer_system_thread_addTask;
2016-03-19 19:00:44 +00:00
};
if(SC_occupySky) then
2016-03-19 19:00:44 +00:00
{
2016-04-29 11:58:10 +00:00
uiSleep 30; // delay the start
fnc_occupationSky = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationSky.sqf";
[SC_refreshTime, fnc_occupationSky, [], true] call ExileServer_system_thread_addTask;
};
if(SC_occupySea) then
{
2016-04-29 11:58:10 +00:00
uiSleep 30; // delay the start
fnc_occupationSea = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationSea.sqf";
[SC_refreshTime, fnc_occupationSea, [], true] call ExileServer_system_thread_addTask;
2016-03-19 19:00:44 +00:00
};
if(SC_occupyVehicle) then
2016-03-19 19:00:44 +00:00
{
2016-04-29 11:58:10 +00:00
uiSleep 30; // delay the start
fnc_occupationVehicle = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationVehicle.sqf";
[SC_refreshTime, fnc_occupationVehicle, [], true] call ExileServer_system_thread_addTask;
2016-03-19 19:00:44 +00:00
};
if(SC_occupyPlaces) then
{
2016-04-29 11:58:10 +00:00
uiSleep 30; // delay the start
fnc_occupationPlaces = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationPlaces.sqf";
[SC_refreshTime, fnc_occupationPlaces, [], true] call ExileServer_system_thread_addTask;
};
if(SC_occupyMilitary) then
{
2016-04-29 11:58:10 +00:00
uiSleep 30; // delay the start
fnc_occupationMilitary = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationMilitary.sqf";
[SC_refreshTime, fnc_occupationMilitary, [], true] call ExileServer_system_thread_addTask;
};
2016-04-26 09:29:50 +00:00
if(SC_occupyTransport) then
{
2016-04-26 09:29:50 +00:00
[] execVM "\x\addons\a3_exile_occupation\scripts\occupationTransport.sqf";
};
2016-04-29 11:58:10 +00:00
uiSleep 30; // delay the start
fnc_occupationMonitor = compile preprocessFileLineNumbers "\x\addons\a3_exile_occupation\scripts\occupationMonitor.sqf";
[SC_refreshTime, fnc_occupationMonitor, [], true] call ExileServer_system_thread_addTask;
2016-04-02 19:06:53 +00:00
_logDetail = format ["[OCCUPATION]:: threads added at %1",time];
[_logDetail] call SC_fnc_log;