DMS_Exile/@ExileServer/addons/a3_dms/DMS_init.sqf

34 lines
1.3 KiB
Plaintext
Raw Normal View History

// Made by Defent for Defents Mission System
// And for Numenadayz.com
2015-08-27 19:28:16 +00:00
// Compiles for custom files.
2015-08-26 10:31:16 +00:00
DMS_findSafePos = compile preprocessFileLineNumbers "\x\addons\dms\scripts\DMS_findSafePos.sqf";
DMS_createBox = compile preprocessFileLineNumbers "\x\addons\dms\crates\DMS_CreateBox.sqf";
DMS_CreateMarker = compile preprocessFileLineNumbers "\x\addons\dms\scripts\DMS_CreateMarker.sqf";
DMS_spawnAI = compile preprocessFileLineNumbers "\x\addons\dms\scripts\DMS_spawnAI.sqf";
DMS_selectMission = compile preprocessFileLineNumbers "\x\addons\dms\scripts\DMS_selectMission.sqf";
DMS_CleanUp = compile preprocessFileLineNumbers "\x\addons\dms\scripts\DMS_CleanUp.sqf";
2015-08-27 19:28:16 +00:00
DMS_markerLoop = compile preprocessFileLineNumbers "\x\addons\dms\scripts\DMS_markerLoop.sqf";
2015-08-26 10:31:16 +00:00
// CONFIGS
//DMS_UseMissions = true;
//DMS_DetectNearWater = true;
//DMS_MissionMin = 60; // Timers in seconds
//DMS_MissionMax = 120; // Timers in seconds
2015-08-26 18:39:39 +00:00
//DMS_player_minDist = 700;
2015-08-27 20:02:53 +00:00
DMS_MisMinTime = 600; // 10 mins
DMS_MisMaxTime = 1200; // 20 mins
DMS_CleanUpTimer = 300; // set to 300 for 5 minutes to clean up the missions.
2015-08-26 10:31:16 +00:00
// CONFIGS
2015-08-26 10:31:16 +00:00
uiSleep 2;
2015-08-27 19:28:16 +00:00
// Selects the mission
2015-08-26 18:05:12 +00:00
[] call DMS_selectMission;
2015-08-27 19:28:16 +00:00
// Loops markers
//[] call DMS_markerLoop;
diag_log "DMS :: Functions loaded - starting the rest of the script.";