mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
74f562de7e
Renamed preInit/postInit All config.sqf options setup and named (for now :P ) Removed "tools" from FillCrate since it was just addItemCargoGlobal as well FindSafePos adjustments + renames IsNearWater function (from WAI) Add "_markers" array to MissionStatusCheck params (planned implemention: [_dot,_circle] for the ability to rename a marker after mission completion. EG: "COMPLETED: Weapons Crate" for X seconds) Created SelectMagazine fnc Created files for a couple TODO functions
24 lines
646 B
Plaintext
24 lines
646 B
Plaintext
// Loads compiles
|
|
// Made by Defent for Defents Mission System
|
|
// And for Numenadayz.com
|
|
// Rewritten by eraser1
|
|
|
|
//Load config
|
|
#include "config.sqf";
|
|
|
|
RESISTANCE setFriend[WEST,0];
|
|
WEST setFriend[RESISTANCE,0];
|
|
RESISTANCE setFriend[EAST,0];
|
|
EAST setFriend[RESISTANCE,0];
|
|
EAST setFriend[WEST,0];
|
|
WEST setFriend[EAST,0];
|
|
|
|
if(DMS_StaticMission) then {
|
|
call compileFinal preprocessFileLineNumbers "\x\addons\dms\static\init.sqf";
|
|
};
|
|
|
|
if (DMS_DynamicMission) then {
|
|
call compileFinal preprocessFileLineNumbers "\x\addons\dms\missions\mission_init.sqf";//<---- TODO
|
|
[1, DMS_MissionStatusCheck, [], true] call ExileServer_system_thread_addTask;
|
|
};
|