DMS_Exile/@ExileServer/addons/a3_dms/config.cpp
eraser1 74f562de7e Bunch of stuff
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
2015-08-28 03:38:46 -05:00

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;
};
};
};
};