mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
e8eedfa538
* 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```.
61 lines
1.3 KiB
C++
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 {};
|
|
};
|
|
};
|
|
};
|