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
23 lines
371 B
C++
23 lines
371 B
C++
class CfgPatches {
|
|
class A3_dms {
|
|
units[] = {};
|
|
weapons[] = {};
|
|
a3_DMS_version = 1.0;
|
|
requiredVersion = 1.36;
|
|
requiredAddons[] = {"exile_client","exile_server_config"};
|
|
};
|
|
};
|
|
class CfgFunctions {
|
|
class dms {
|
|
class main {
|
|
file = "\x\addons\dms";
|
|
class DMS_preInit
|
|
{
|
|
preInit = 1;
|
|
};
|
|
class DMS_postInit {
|
|
postInit = 1;
|
|
};
|
|
};
|
|
};
|
|
}; |