DMS_Exile/@ExileServer/addons/a3_dms/config.cpp
eraser1 e8eedfa538 More features, fixes, tweaks
* NEW CONFIG VALUES: ```DMS_MarkerPosRandomization```,
```DMS_MarkerPosRandomRadius```, and ```DMS_RandomMarkerBrush```
* With the above configs, you can randomize the marker positions in a
random position around the actual mission center.
* You can also "force" DMS_fnc_CreateMarker to randomize (or not
randomize) the marker position with optional boolean parameter of index
3.
* Changed the default (non-randomized) circle marker "brush". It should
be a solid circle.
* Created new functions ```DMS_fnc_SelectOffsetPos``` and
```DMS_fnc_SelectRandomVal```
* Adjusted a couple functions to use them.
* Fixed ```DMS_fnc_IsNearWater```.
2015-09-10 17:48:56 -05:00

61 lines
1.3 KiB
C++

class CfgPatches
{
class A3_dms
{
units[] = {};
weapons[] = {};
a3_DMS_version = 3.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;
};
};
class compiles
{
file = "\x\addons\dms\scripts";
class AddMissionToMonitor {};
class AILocalityManager {};
class BroadcastMissionStatus {};
class CleanUp {};
class CleanUpManager {};
class CreateMarker {};
class FillCrate {};
class FindSafePos {};
class FindSuppressor {};
class IsPlayerNearby {};
class IsNearWater {};
class MissionsMonitor {};
class MissionSuccessState {};
class OnKilled {};
class RemoveMarkers {};
class SelectRandomVal {};
class SelectMagazine {};
class SelectMission {};
class SelectOffsetPos {};
class SetAILocality {};
class SetGroupBehavior {};
class SpawnAIGroup {};
class SpawnAISoldier {};
class SpawnAIStatic {};
class SpawnCrate {};
class SpawnNonPersistentVehicle {};
class TargetsKilled {};
};
};
};