secondcoming

Untitled

Apr 15th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 63.83 KB | None | 0 0
  1. /*
  2.     A lot of these configs are influenced by WAI :P
  3.     https://github.com/nerdalertdk/WICKED-AI
  4.  
  5.     Created by eraser1
  6. */
  7.  
  8.  
  9. // Enables debug logging in DMS functions.
  10. // Logs will be written in the RPT, and if you have infiSTAR's "ARMA_LOG" DLL loaded, it will also produce logs in the server directory.
  11. // If you have mARMA by maca134, DMS will also utilize mARMA logs.
  12. // This will produce A LOT of logs, so make sure you leave it to false unless you know what you're doing.
  13. DMS_DEBUG = false;
  14.  
  15.  
  16.  
  17. DMS_Use_Map_Config = false; // Whether or not to use config overwrites specific to the map.
  18. /*
  19.     If you are using a map other than a map listed in the "map_configs" folder, you should set this to false OR create a new file within the map_configs folder for the map so that you don't get a missing file error.
  20.     To share your map-specific config, please create a merge request on GitHub and/or leave a message on the DMS thread in the Exile forums.
  21.     For any questions regarding map-specific configs, please leave a reply in the DMS thread on the Exile forums.
  22. */
  23.  
  24. DMS_Enable_RankChange = true; // Whether or not to use Rank Changes.
  25. /*
  26.     I am sharing this upgrade to all. If you utilize GR8 Humanity (fully compatible) or a custom version of a ranking system(simple variable changes), this will allow your players to score +/- for Bandit and Hero kills as well as a custom Survivor Faction added to DMS as well. You can still utilize the HERO / BANDIT / SURVIVOR respect and poptab settings for gameplay :) ENJOY! DONKEYPUNCH.INFO!
  27. */
  28.  
  29. DMS_Add_AIKill2DB = false;  // Adds killstat for player in the database ;)
  30.  
  31. DMS_SpawnMissions_Scheduled = true; // Whether or not to spawn missions in a scheduled environment. Setting to true may help with lag when certain missions spawn.
  32.  
  33. /* Mission System Settings */
  34.     /*General settings for dynamic missions*/
  35.     DMS_DynamicMission                  = true;                     // Enable/disable dynamic mission system.
  36.     DMS_MaxBanditMissions               = 2;                        // Maximum number of Bandit Missions running at the same time
  37.     DMS_TimeToFirstMission              = [180,420];                // [Minimum,Maximum] time between first mission spawn. | DEFAULT: 3-7 minutes.
  38.     DMS_TimeBetweenMissions             = [300,600];                // [Minimum,Maximum] time between missions (if mission limit is not reached) | DEFAULT: 10-15 mins
  39.     DMS_MissionTimeOut                  = [1800,1800];              // [Minimum,Maximum] time it will take for a mission to timeout | DEFAULT: 15-30 mins
  40.     DMS_MissionTimeoutResetRange        = 1500;                     // If a player is this close to a mission then it won't time-out. Set to 0 to disable this check.
  41.     DMS_MissionTimeoutResetFrequency    = 180;                      // How often (in seconds) to check for nearby players and reset the mission timeout.
  42.     /*General settings for dynamic missions*/
  43.  
  44.     /*General settings for static missions*/
  45.     DMS_StaticMission                   = true;                     // Enable/disable static mission system.
  46.     DMS_MaxStaticMissions               = 1;                        // Maximum number of Static Missions running at the same time. It's recommended you set this to the same amount of static missions that you have in total. This config will be ignored by "DMS_StaticMissionsOnServerStart".
  47.     DMS_TimeToFirstStaticMission        = [60,120];                 // [Minimum,Maximum] time between first static mission spawn. | DEFAULT: 3-7 minutes.
  48.     DMS_TimeBetweenStaticMissions       = [900,1800];               // [Minimum,Maximum] time between static missions (if static mission limit is not reached) | DEFAULT: 15-30 mins
  49.     DMS_StaticMissionTimeOut            = [1800,3600];              // [Minimum,Maximum] time it will take for a static mission to timeout | DEFAULT: 30-60 mins
  50.     DMS_StaticMissionTimeoutResetRange  = 1500;                     // If a player is this close to a mission then it won't time-out. Set to 0 to disable this check.
  51.     DMS_SMissionTimeoutResetFrequency   = 180;                      // How often (in seconds) to check for nearby players and reset the mission timeout for static missions.
  52.     DMS_StaticMinPlayerDistance         = 1500;                     // If a player is this close to a mission location, then it won't spawn the mission and will wait 60 seconds before attempting to spawn it.
  53.     DMS_AllowStaticReinforcements       = true;                     // Whether or not static missions will receive reinforcements. This will simply disable the calling of GroupReinforcementsMonitor;
  54.     DMS_SpawnFlareOnReinforcements      = true;                     // Whether or not to spawn a flare and noise when AI reinforcements have spawned.
  55.     /*General settings for static missions*/
  56.  
  57.     DMS_playerNearRadius                = 100;                      // How close a player has to be to a mission in order to satisfy the "playerNear" mission requirement (can be customized per mission).
  58.  
  59.     DMS_AI_KillPercent                  = 100;                      // The percent amount of AI that need to be killed for "killPercent" mission requirement (NOT IMPLEMENTED)
  60.  
  61.     /*Mission Marker settings*/
  62.     DMS_MissionMarkerCount              = 2;                        // If you modify your CreateMarker and have multiple markers, you probably want to change this. *cough*Vish*cough*
  63.     DMS_ShowDifficultyColorLegend       = true;                     // Whether or not to show a "color legend" at the bottom left of the map that shows which color corresponds to which difficulty. I know it's not very pretty, meh.
  64.     DMS_MarkerText_ShowMissionPrefix    = true;                     // Whether or not to place a prefix before the mission marker text. Enable this if your players get confused by the marker names :P
  65.     DMS_MarkerText_MissionPrefix        = "Mission:";               // The text displayed before the mission name in the mission marker.
  66.     DMS_MarkerText_ShowAICount          = false;                        // Whether or not to display the number of remaining AI in the marker name.
  67.     DMS_MarkerText_ShowAICount_Static   = false;                        // Whether or not to display the number of remaining AI in the marker name for STATIC missions.
  68.     DMS_MarkerText_AIName               = "Units";                  // What the AI will be called in the map marker. For example, the marker text can show: "Car Dealer (3 Units remaining)"
  69.     DMS_MarkerPosRandomization          = false;                    // Randomize the position of the circle marker of a mission
  70.     DMS_MarkerPosRandomRadius           = [25,100];                 // Minimum/Maximum distance that the circle marker position will be randomized | DEFAULT: 0 meters to 200 meters
  71.     DMS_RandomMarkerBrush               = "Cross";                  // See: https://community.bistudio.com/wiki/setMarkerBrush
  72.     DMS_MissionMarkerWinDot             = true;                     // Keep the mission marker dot with a "win" message after mission is over
  73.     DMS_MissionMarkerLoseDot            = true;                     // Keep the mission marker dot with a "lose" message after mission is over
  74.     DMS_MissionMarkerWinDot_Type        = "mil_end";                // The marker type to show when a mission is completed. Refer to: https://community.bistudio.com/wiki/cfgMarkers
  75.     DMS_MissionMarkerLoseDot_Type       = "KIA";                    // The marker type to show when a mission fails. Refer to: https://community.bistudio.com/wiki/cfgMarkers
  76.     DMS_MissionMarkerWinDotTime         = 30;                       // How many seconds the "win" mission dot will remain on the map
  77.     DMS_MissionMarkerLoseDotTime        = 30;                       // How many seconds the "lose" mission dot will remain on the map
  78.     DMS_MissionMarkerWinDotColor        = "ColorBlue";              // The color of the "win" marker dot
  79.     DMS_MissionMarkerLoseDotColor       = "ColorRed";               // The color of the "lose" marker dot
  80.     /*Mission Marker settings*/
  81.  
  82.     /*Mission Cleanup settings*/
  83.     DMS_CompletedMissionCleanup         = true;                     // Cleanup mission-spawned buildings and AI bodies after some time
  84.     DMS_CompletedMissionCleanupTime     = 3600;                     // Minimum time until mission-spawned buildings and AI are cleaned up
  85.     DMS_CleanUp_PlayerNearLimit         = 20;                       // Cleanup of an object is aborted if a player is this many meters close to the object
  86.     DMS_AIVehCleanUpTime                = 120;                      // Time until a destroyed AI vehicle is cleaned up.
  87.     /*Mission Cleanup settings*/
  88.  
  89.     /*Mission spawn location settings*/
  90.     DMS_UsePredefinedMissionLocations   = false;                    // Whether or not to use a list of pre-defined mission locations instead before attempting to find a random (valid) position. The positions will still be checked for validity. If none of the provided positions are valid, a random one will be generated.
  91.     DMS_PredefinedMissionLocations =    [                           // List of Preset/Predefined mission locations.
  92.                                             /* List of positions:
  93.                                             position1: [x_1,y_1,z_1],
  94.                                             position2: [x_2,y_2,z_2],
  95.                                             ...
  96.                                             positionN: [x_N,y_N,z_N]
  97.                                             */
  98.  
  99.                                         ];
  100.  
  101.     DMS_PredefinedMissionLocations_WEIGHTED =   [                   // List of Preset/Predefined mission locations WITH WEIGHTED CHANCES. This will NOT override "DMS_PredefinedMissionLocations", and everything from "DMS_PredefinedMissionLocations" will behave as though it has 1 weight per position.
  102.                                             /* List of arrays with position and weighted chance:
  103.                                             [[x_1,y_1,z_1], chance_1],
  104.                                             [[x_2,y_2,z_2], chance_2],
  105.                                             ...
  106.                                             [[x_N,y_N,z_N], chance_N]
  107.                                             */
  108.  
  109.                                         ];
  110.     DMS_ThrottleBlacklists              = true;                     // Whether or not to "throttle" the blacklist distance parameters in DMS_fnc_FindSafePos. This will reduce the values of the minimum
  111.                                                                         //distances for some of the below parameters if several attempts have been made, but a suitable position was not yet found. This
  112.                                                                         //should help with server performance drops when spawning a mission, as DMS_fnc_findSafePos is the most resource-intensive function.
  113.     DMS_AttemptsUntilThrottle           = 15;                       // How many attempts until the parameters are throttled.
  114.     DMS_ThrottleCoefficient             = 0.9;                      // How much the parameters are throttled. The parameters are multiplied by the coefficient, so 0.9 means 90% of whatever the parameter was.
  115.     DMS_MinThrottledDistance            = 100;                      // The minimum distance to which it will throttle. If the throttled value is less than this, then this value is used instead.
  116.     DMS_PlayerNearBlacklist             = 2000;                     // Missions won't spawn in a position this many meters close to a player
  117.     DMS_SpawnZoneNearBlacklist          = 1500;                     // Missions won't spawn in a position this many meters close to a spawn zone
  118.     DMS_TraderZoneNearBlacklist         = 1500;                     // Missions won't spawn in a position this many meters close to a trader zone
  119.     DMS_MissionNearBlacklist            = 1500;                     // Missions won't spawn in a position this many meters close to another mission
  120.     DMS_WaterNearBlacklist              = 500;                      // Missions won't spawn in a position this many meters close to water
  121.     DMS_TerritoryNearBlacklist          = 250;                      // Missions won't spawn in a position this many meters close to a territory flag
  122.     DMS_MinSurfaceNormal                = 0.9;                      // Missions won't spawn in a position where its surfaceNormal is less than this amount. The lower the value, the steeper the location. Greater values means flatter locations. Values can range from 0-1, with 0 being sideways, and 1 being perfectly flat. For reference: SurfaceNormal of about 0.7 is when you are forced to walk up a surface. If you want to convert surfaceNormal to degrees, use the arc-cosine of the surfaceNormal. 0.9 is about 25 degrees. Google "(arccos 0.9) in degrees"
  123.     DMS_MinDistFromWestBorder           = 250;                      // Missions won't spawn in a position this many meters close to the western map border.
  124.     DMS_MinDistFromEastBorder           = 250;                      // Missions won't spawn in a position this many meters close to the easter map border.
  125.     DMS_MinDistFromSouthBorder          = 250;                      // Missions won't spawn in a position this many meters close to the southern map border.
  126.     DMS_MinDistFromNorthBorder          = 250;                      // Missions won't spawn in a position this many meters close to the northern map border.
  127.     DMS_SpawnZoneMarkerTypes =          [                           // If you're using custom spawn zone markers, make sure you define them here. CASE SENSITIVE!!!
  128.                                             "ExileSpawnZone"
  129.                                         ];
  130.     DMS_TraderZoneMarkerTypes =         [                           // If you're using custom trader markers, make sure you define them here. CASE SENSITIVE!!!
  131.                                             "ExileTraderZone"
  132.                                         ];
  133.     /*Mission spawn location settings*/
  134.  
  135.     DMS_MinWaterDepth                   = 20;                       // Minimum depth of water that an underwater mission can spawn at.
  136.  
  137.     /*Crate/Box settings*/
  138.     DMS_HideBox                         = false;                    // "Hide" the box from being visible by players until the mission is completed.
  139.     DMS_EnableBoxMoving                 = false;                        // Whether or not to allow the box to move and/or be lifted by choppers.
  140.     DMS_SpawnBoxSmoke                   = true;                     // Spawn a smoke grenade on mission box upon misson completion during daytime
  141.     DMS_SpawnBoxIRGrenade               = true;                     // Spawn an IR grenade on mission box upon misson completion during nighttime
  142.     /*Crate/Box settings*/
  143.  
  144.     /*Mine settings*/
  145.     DMS_SpawnMinefieldForEveryMission   = false;                    // Whether or not to spawn a minefield for every dynamic mission.
  146.     DMS_SpawnMinesAroundMissions        = true;                     // Whether or not to spawn mines around AI missions that have them.
  147.     DMS_despawnMines_onCompletion       = true;                     // Despawn mines spawned around missions when the mission is completed
  148.     DMS_MineInfo_easy                   = [5,50];                   // Mine info for "easy" missions. This will spawn 5 mines within a 50m radius.
  149.     DMS_MineInfo_moderate               = [10,50];                  // Mine info for "moderate" missions. This will spawn 10 mines within a 50m radius.
  150.     DMS_MineInfo_difficult              = [15,75];                  // Mine info for "difficult" missions. This will spawn 15 mines within a 75m radius.
  151.     DMS_MineInfo_hardcore               = [25,100];                 // Mine info for "hardcore" missions. This will spawn 25 mines within a 100m radius.
  152.     DMS_SpawnMineWarningSigns           = true;                     // Whether or not to spawn mine warning signs around a minefield.
  153.     DMS_BulletProofMines                = true;                     // Whether or not you want to make the mines bulletproof. Prevents players from being able to shoot the mines and creating explosions.
  154.     /*Mine settings*/
  155.  
  156.     DMS_MinPlayerCount                  = 0;                        // Minimum number of players until mission start
  157.     DMS_MinServerFPS                    = 5;                        // Minimum server FPS for missions to start
  158.  
  159.     /*Mission notification settings*/
  160.     DMS_PlayerNotificationTypes =       [                           // Notification types. Supported values are: ["dynamicTextRequest", "standardHintRequest", "systemChatRequest", "textTilesRequest"]. Details below
  161.                                             "dynamicTextRequest",           // You should use either "dynamicTextRequest" or "textTilesRequest", and I think "textTilesRequest" looks better, but this is less performance-intensive.
  162.                                             //"standardHintRequest",        // Hints are a bit wonky...
  163.                                             //"textTilesRequest",           // Keep in mind you can only have 1 "text tile" message up at a time, so the message will disappear if the player gets a kill or something while the message is shown. This message type is also performance-intensive, so I advise against it.
  164.                                             "systemChatRequest"             // Always nice to show in chat so that players can scroll up to read the info if they need to.
  165.                                         ];
  166.  
  167.         /*Dynamic Text Notification Settings*/
  168.     DMS_dynamicText_Duration            = 7;                        // Number of seconds that the message will last on the screen.
  169.     DMS_dynamicText_FadeTime            = 1.5;                      // Number of seconds that the message will fade in/out (does not affect duration).
  170.     DMS_dynamicText_Title_Size          = 1.2;                      // Size for Client Dynamic Text mission titles.
  171.     DMS_dynamicText_Title_Font          = "puristaMedium";          // Font for Client Dynamic Text mission titles.
  172.     DMS_dynamicText_Message_Color       = "#FFFFFF";                // Dynamic Text color for "dynamicTextRequest" client notification type.
  173.     DMS_dynamicText_Message_Size        = 0.65;                     // Dynamic Text size for "dynamicTextRequest" client notification type.
  174.     DMS_dynamicText_Message_Font        = "OrbitronMedium";         // Dynamic Text font for "dynamicTextRequest" client notification type.
  175.         /*Dynamic Text Notification Settings*/
  176.  
  177.         /*Standard Hint Notification Settings*/
  178.     DMS_standardHint_Title_Size         = 2.5;                      // Size for Client Standard Hint mission titles.
  179.     DMS_standardHint_Title_Font         = "puristaMedium";          // Font for Client Standard Hint mission titles.
  180.     DMS_standardHint_Message_Color      = "#FFFFFF";                // Standard Hint color for "standardHintRequest" client notification type.
  181.     DMS_standardHint_Message_Size       = 1;                        // Standard Hint size for "standardHintRequest" client notification type.
  182.     DMS_standardHint_Message_Font       = "OrbitronMedium";         // Standard Hint font for "standardHintRequest" client notification type.
  183.         /*Standard Hint Notification Settings*/
  184.  
  185.         /*Text Tiles Notification Settings*/
  186.     DMS_textTiles_Duration              = 7;                        // Number of seconds that the message will last on the screen.
  187.     DMS_textTiles_FadeTime              = 1.5;                      // Number of seconds that the message will fade in/out (does not affect duration).
  188.     DMS_textTiles_Title_Size            = 2.3;                      // Size for Client Text Tiles mission titles.
  189.     DMS_textTiles_Title_Font            = "puristaMedium";          // Font for Client Text Tiles mission titles.
  190.     DMS_textTiles_Message_Color         = "#FFFFFF";                // Text Tiles color for "textTilesRequest" client notification type.
  191.     DMS_textTiles_Message_Size          = 1.25;                     // Text Tiles size for "textTilesRequest" client notification type.
  192.     DMS_textTiles_Message_Font          = "OrbitronMedium";         // Text Tiles font for "textTilesRequest" client notification type.
  193.         /*Text Tiles Notification Settings*/
  194.  
  195.     /*Mission notification settings*/
  196.  
  197.     DMS_BanditMissionTypes =            [                           //  List of missions with spawn chances. If they add up to 100%, they represent the percentage chance each one will spawn
  198.                                             ["nedmedical1_mission",5],
  199.                                             ["nedbuilding1_mission",4],
  200.                                             ["nedguns1_mission",4],
  201.                                             ["donthasslethehoff",5],
  202.                                             ["bandits",5],
  203.                                             ["bauhaus",5],
  204.                                             ["cardealer",5],
  205.                                             ["humanitarian",5],
  206.                                             ["foodtransport",5],
  207.                                             ["blackhawkdown",4],
  208.                                             ["construction",4],
  209.                                             ["walmart",4],
  210.                                             ["mercenaries",4],
  211.                                             ["guntransport",4],
  212.                                             ["beertransport",3],
  213.                                             ["roguenavyseals",3],
  214.                                             ["thieves",2],
  215.                                             ["lost_battalion",2],
  216.                                             ["behindenemylines",2],
  217.                                             ["mercbase",1]
  218.                                         ];
  219.  
  220.  
  221.     DMS_StaticMissionTypes = [["occupation",100]];
  222.     // Map specific static missions
  223.     if (worldName == 'Altis') then  { DMS_StaticMissionTypes = [["occupation",100]]; };
  224.     if (worldName == 'Chernarus') then  { DMS_StaticMissionTypes = [["occupation",100]]; };
  225.     if (worldName == 'Taviana') then    { DMS_StaticMissionTypes = [["occupation",100]]; };   
  226.     if (worldName == 'Namalsk') then    { DMS_StaticMissionTypes = [["occupation",100]]; DMS_MaxBanditMissions = 1; };                                    
  227.  
  228.  
  229.  
  230.     DMS_BasesToImportOnServerStart =    [                           // List of static bases to import on server startup (spawned post-init). This will reduce the amount of work the server has to do when it actually spawns static missions, and players won't be surprised when a base suddenly pops up. You can also include any other M3E-exported bases to spawn here.
  231.                                             //"saltflatsbase",      //<--Example (already imported by default on Altis)
  232.                                             //"slums_objects"       //<--Example (already imported by default on Altis)
  233.                                         ];
  234.  
  235.     DMS_BanditMissionsOnServerStart =   [
  236.                                             //"construction"        //<-- Example
  237.                                         ];
  238.  
  239.     DMS_StaticMissionsOnServerStart =   [                           // List of STATIC missions with spawn chances.
  240.                                             //"saltflats",          //<--Example
  241.                                             //"slums                //<--Example
  242.  
  243.                                             //"sectorB"             //<--Example for Taviana
  244.                                         ];
  245.  
  246.  
  247.  
  248.     DMS_findSafePosBlacklist =          [                           // For BIS_fnc_findSafePos position blacklist info refer to: http://www.exilemod.com/topic/61-dms-defents-mission-system/?page=18#comment-31190
  249.                                             // An example is given in the altis_config.sqf (it blacklists the salt flats).
  250.                                             /*
  251.                                             // Blacklists most of the Northern Taviana Volcano
  252.                                             [[11375,16170],[14302,18600]],
  253.                                             [[13300,14670],[14875,16170]]
  254.                                             */
  255.                                         ];
  256. /* Mission System Settings */
  257.  
  258.  
  259. /* AI Settings */
  260.     DMS_AI_Classname                    = "O_recon_F";              // Since some of you wanted this...
  261.  
  262.     DMS_Show_Kill_Poptabs_Notification  = true;                     // Whether or not to show the poptabs gained/lost message on the player's screen when killing an AI. (It will still change the player's money, it just won't show the "Money Received" notification)
  263.     DMS_Show_Kill_Respect_Notification  = true;                     // Whether or not to show the "Frag Message" on the player's screen when killing an AI. (It will still change the player's respect, it just won't show the "AI Killed" frag message)
  264.     DMS_Show_Kill_Rank_Notification     = false;
  265.     DMS_Show_Party_Kill_Notification    = true;                     // Whether or not to show in chat when a party member kills an AI.
  266.  
  267.     DMS_Bandit_Soldier_MoneyGain        = 50;                       // The amount of Poptabs gained for killing a bandit soldier
  268.     DMS_Bandit_Soldier_RepGain          = 10;                       // The amount of Respect gained for killing a bandit soldier
  269.     DMS_Bandit_Soldier_RankGain         = 15;
  270.     DMS_Bandit_Static_MoneyGain         = 75;                       // The amount of Poptabs gained for killing a bandit static gunner
  271.     DMS_Bandit_Static_RepGain           = 15;                       // The amount of Respect gained for killing a bandit static gunner
  272.     DMS_Bandit_Static_RankGain          = 30;
  273.     DMS_Bandit_Vehicle_MoneyGain        = 100;                      // The amount of Poptabs gained for killing a bandit vehicle crew member
  274.     DMS_Bandit_Vehicle_RepGain          = 25;                       // The amount of Respect gained for killing a bandit vehicle crew member
  275.     DMS_Bandit_Vehicle_RankGain         = 50;
  276. /* DonkeyPunchDMS Custom Settings for Hero AI*/
  277.     DMS_Hero_Soldier_MoneyGain          = 100;                      // The amount of Poptabs gained for killing a hero soldier
  278.     DMS_Hero_Soldier_RepGain            = 20;                       // The amount of Respect gained for killing a hero soldier
  279.     DMS_Hero_Soldier_RankGain           = -30;
  280.     DMS_Hero_Static_MoneyGain           = 120;                      // The amount of Poptabs gained for killing a hero static gunner
  281.     DMS_Hero_Static_RepGain             = 30;                       // The amount of Respect gained for killing a hero static gunner
  282.     DMS_Hero_Static_RankGain            = -60;
  283.     DMS_Hero_Vehicle_MoneyGain          = 200;                      // The amount of Poptabs gained for killing a hero vehicle crew member
  284.     DMS_Hero_Vehicle_RepGain            = 50;                       // The amount of Respect gained for killing a hero vehicle crew member
  285.     DMS_Hero_Vehicle_RankGain           = -100;
  286. /* DonkeyPunchDMS Custom Settings for Survivor AI*/
  287.     DMS_Survivor_Soldier_MoneyGain      = -100;                     // The amount of Poptabs gained for killing a Survivor soldier
  288.     DMS_Survivor_Soldier_RepGain        = -100;                     // The amount of Respect gained for killing a Survivor soldier
  289.     DMS_Survivor_Soldier_RankGain       = -250;
  290.     DMS_Survivor_Static_MoneyGain       = -100;                     // The amount of Poptabs gained for killing a Survivor static gunner
  291.     DMS_Survivor_Static_RepGain         = -100;                     // The amount of Respect gained for killing a Survivor static gunner
  292.     DMS_Survivor_Static_RankGain        = -400;
  293.     DMS_Survivor_Vehicle_MoneyGain      = -500;                     // The amount of Poptabs gained for killing a Survivor vehicle crew member
  294.     DMS_Survivor_Vehicle_RepGain        = -100;                     // The amount of Respect gained for killing a Survivor vehicle crew member
  295.     DMS_Survivor_Vehicle_RankGain       = -600;
  296.  
  297.     DMS_AIKill_DistanceBonusMinDistance = 100;                      // Minimum distance from the player to the AI to apply the distance bonus.
  298.     DMS_AIKill_DistanceBonusCoefficient = 0.05;                     // If the distance from the player to the killed unit is more than "DMS_AIKill_DistanceBonusMinDistance" meters then the player gets a respect bonus equivalent to the distance multiplied by this coefficient. For example, killing an AI from 400 meters will give 100 extra respect (when the coefficient is 0.25). Set to 0 to disable the bonus. This bonus will not be applied if there isn't a regular AI kill bonus.
  299.  
  300.     DMS_Diff_RepOrTabs_on_roadkill      = true;                     // Whether or not you want to use different values for giving respect/poptabs when you run an AI over. Default values are NEGATIVE. This means player will LOSE respect or poptabs.
  301.     DMS_Bandit_Soldier_RoadkillMoney    = -10;                      // The amount of Poptabs gained/lost for running over a bandit soldier
  302.     DMS_Bandit_Soldier_RoadkillRep      = -5;                       // The amount of Respect gained/lost for running over a bandit soldier
  303.     DMS_Bandit_Soldier_RoadkillRank     = 20;
  304.     DMS_Bandit_Static_RoadkillMoney     = -10;                      // The amount of Poptabs gained/lost for running over a bandit static gunner
  305.     DMS_Bandit_Static_RoadkillRep       = -5;                       // The amount of Respect gained/lost for running over a bandit static gunner
  306.     DMS_Bandit_Static_RoadkillRank      = 30;
  307.     DMS_Bandit_Vehicle_RoadkillMoney    = -10;                      // The amount of Poptabs gained/lost for running over a bandit vehicle crew member
  308.     DMS_Bandit_Vehicle_RoadkillRep      = -5;                       // The amount of Respect gained/lost for running over a bandit vehicle crew member
  309.     DMS_Bandit_Vehicle_RoadkillRank     = 50;
  310. /* DonkeyPunchDMS Custom RoadKill Settings for Hero AI*/
  311.     DMS_Hero_Soldier_RoadkillMoney      = 20;                       // The amount of Poptabs gained/lost for running over a hero soldier
  312.     DMS_Hero_Soldier_RoadkillRep        = 10;                       // The amount of Respect gained/lost for running over a hero soldier
  313.     DMS_Hero_Soldier_RoadkillRank       = -40;
  314.     DMS_Hero_Static_RoadkillMoney       = 20;                       // The amount of Poptabs gained/lost for running over a hero static gunner
  315.     DMS_Hero_Static_RoadkillRep         = 10;                       // The amount of Respect gained/lost for running over a hero static gunner
  316.     DMS_Hero_Static_RoadkillRank        = -60;
  317.     DMS_Hero_Vehicle_RoadkillMoney      = 20;                       // The amount of Poptabs gained/lost for running over a hero vehicle crew member
  318.     DMS_Hero_Vehicle_RoadkillRep        = 10;                       // The amount of Respect gained/lost for running over a hero vehicle crew member
  319.     DMS_Hero_Vehicle_RoadkillRank       = -100;
  320. /* DonkeyPunchDMS Custom Roadkill Settings for Survivor AI*/
  321.     DMS_Survivor_Soldier_RoadkillMoney  = -200;                     // The amount of Poptabs gained/lost for running over a Survivor soldier
  322.     DMS_Survivor_Soldier_RoadkillRep    = -200;                     // The amount of Respect gained/lost for running over a Survivor soldier
  323.     DMS_Survivor_Soldier_RoadkillRank   = -200;
  324.     DMS_Survivor_Static_RoadkillMoney   = -200;                     // The amount of Poptabs gained/lost for running over a Survivor static gunner
  325.     DMS_Survivor_Static_RoadkillRep     = -200;                     // The amount of Respect gained/lost for running over a Survivor static gunner
  326.     DMS_Survivor_Static_RoadkillRank    = -200;
  327.     DMS_Survivor_Vehicle_RoadkillMoney  = -500;                     // The amount of Poptabs gained/lost for running over a Survivor vehicle crew member
  328.     DMS_Survivor_Vehicle_RoadkillRep    = -100;                     // The amount of Respect gained/lost for running over a Survivor vehicle crew member
  329.     DMS_Survivor_Vehicle_RoadkillRank   = -100;
  330.  
  331.     DMS_banditSide                      = EAST;                     // The side (team) that AI Bandits will spawn on
  332. /* DonkeyPunchDMS Custom Side Factions */
  333.     DMS_heroSide                        = WEST;                     // The side (team) that AI Heros will spawn on
  334.     DMS_survivorSide                    = CIV;                      // The side (team) that AI Survivor will spawn on
  335.  
  336.     DMS_clear_AI_body                   = false;                    // Clear AI body as soon as they die
  337.     DMS_clear_AI_body_chance            = 50;                       // Percentage chance that AI bodies will be cleared when they die
  338.     DMS_ai_disable_ramming_damage       = false;                        // Disables damage due to ramming into AI. !!!NOTE: THIS WILL NOT BE RELIABLE WITH "DMS_ai_offload_to_client"!!!
  339.     DMS_remove_roadkill                 = true;                     // Remove gear from AI bodies that are roadkilled
  340.     DMS_remove_roadkill_chance          = 100;                      // Percentage chance that roadkilled AI bodies will be deleted
  341.     DMS_explode_onRoadkill              = true;                     // Whether or not to spawn an explosion when an AI gets run over. It will likely take out the 2 front wheels. Should help mitigate the ineffective AI vs. striders issue ;)
  342.     DMS_RemoveNVG                       = false;                    // Remove NVGs from AI bodies
  343.  
  344.     DMS_MaxAIDistance                   = 500;                      // The maximum distance an AI unit can be from a mission before he is killed. Helps with AI running away and forcing the mission to keep running. Set to 0 if you don't want it.
  345.     DMS_AIDistanceCheckFrequency        = 60;                       // How often to check within DMS_fnc_TargetsKilled whether or not the AI is out of the maximum radius. Lower values increase frequency and increase server load, greater values decrease frequency and may cause longer delays for "runaway" AI.
  346.  
  347.     DMS_ai_offload_to_client            = true;                     // Offload spawned AI groups to random clients. Helps with server performance.
  348.     DMS_ai_offload_Only_DMS_AI          = false;                    // Do you use other mission systems on your server but still want to offload AI? You should probably enable this then, unless you have tested it for compatibility.
  349.     DMS_ai_offload_notifyClient         = false;                    // Notify the client when AI has been offloaded to the client.
  350.  
  351.     DMS_ai_share_info                   = true;                     // Share info about killer
  352.     DMS_ai_share_info_distance          = 300;                      // The distance killer's info will be shared to other AI
  353.  
  354.     DMS_ai_nighttime_accessory_chance   = 75;                       // Percentage chance that AI will have a flashlight or laser pointer on their guns if spawned during nighttime
  355.     DMS_ai_enable_water_equipment       = true;                     // Enable/disable overriding default weapons of an AI if it spawns on/in water
  356.  
  357.     // https://community.bistudio.com/wiki/AI_Sub-skills#general
  358.     DMS_ai_skill_static             = [["aimingAccuracy",0.20],["aimingShake",0.70],["aimingSpeed",0.75],["spotDistance",0.70],["spotTime",0.50],["courage",1.00],["reloadSpeed",1.00],["commanding",1.00],["general",1.00]];   // Static AI Skills
  359.     DMS_ai_skill_easy                   = [["aimingAccuracy",0.30],["aimingShake",0.50],["aimingSpeed",0.50],["spotDistance",0.50],["spotTime",0.50],["courage",1.00],["reloadSpeed",1.00],["commanding",1.00],["general",0.50]];   // Easy
  360.     DMS_ai_skill_moderate               = [["aimingAccuracy",0.60],["aimingShake",0.60],["aimingSpeed",0.60],["spotDistance",0.60],["spotTime",0.60],["courage",1.00],["reloadSpeed",1.00],["commanding",1.00],["general",0.60]];   // Moderate
  361.     DMS_ai_skill_difficult              = [["aimingAccuracy",0.70],["aimingShake",0.70],["aimingSpeed",0.70],["spotDistance",0.70],["spotTime",0.80],["courage",1.00],["reloadSpeed",1.00],["commanding",1.00],["general",0.70]];   // Difficult
  362.     DMS_ai_skill_hardcore               = [["aimingAccuracy",1.00],["aimingShake",1.00],["aimingSpeed",1.00],["spotDistance",1.00],["spotTime",1.00],["courage",1.00],["reloadSpeed",1.00],["commanding",1.00],["general",1.00]];   // Hardcore
  363.     DMS_ai_skill_random             = ["hardcore","difficult","difficult","difficult","moderate","moderate","moderate","moderate","easy","easy"];   // Skill frequencies for "random" AI skills | Default: 10% hardcore, 30% difficult, 40% moderate, and 20% easy
  364.     DMS_ai_skill_randomDifficult        = ["hardcore","hardcore","difficult","difficult","difficult"];  // 60% chance for "difficult", 40% chance for "hardcore" AI.
  365.     DMS_ai_skill_randomEasy         = ["moderate","moderate","easy","easy","easy"];                 // 60% chance for "easy", 40% chance for "moderate" AI.
  366.     DMS_ai_skill_randomIntermediate     = ["difficult","difficult","moderate","moderate","moderate"];   // 60% chance for "moderate", 40% chance for "difficult" AI.
  367.     DMS_AI_WP_Radius_easy               = 20;                       // Waypoint radius for "easy" AI.
  368.     DMS_AI_WP_Radius_moderate           = 30;                       // Waypoint radius for "moderate" AI.
  369.     DMS_AI_WP_Radius_difficult          = 50;                       // Waypoint radius for "difficult" AI.
  370.     DMS_AI_WP_Radius_hardcore           = 75;                       // Waypoint radius for "hardcore" AI.
  371.     DMS_AI_AimCoef_easy             = 0.9;                      // "Custom Aim Coefficient" (weapon sway multiplier) for "easy" AI
  372.     DMS_AI_AimCoef_moderate         = 0.65;                     // "Custom Aim Coefficient" (weapon sway multiplier) for "moderate" AI
  373.     DMS_AI_AimCoef_difficult            = 0.4;                      // "Custom Aim Coefficient" (weapon sway multiplier) for "difficult" AI
  374.     DMS_AI_AimCoef_hardcore         = 0.05;                     // "Custom Aim Coefficient" (weapon sway multiplier) for "hardcore" AI
  375.     DMS_AI_EnableStamina_easy           = true;                     // Whether or not to keep the stamina system for "easy" AI.
  376.     DMS_AI_EnableStamina_moderate       = true;                     // Whether or not to keep the stamina system for "moderate" AI.
  377.     DMS_AI_EnableStamina_difficult      = false;                        // Whether or not to keep the stamina system for "difficult" AI.
  378.     DMS_AI_EnableStamina_hardcore       = false;                        // Whether or not to keep the stamina system for "hardcore" AI.
  379.     DMS_AI_WP_Radius_base               = 5;                            // Waypoint radius for AI in bases.
  380.     DMS_AI_WP_Radius_heli               = 500;                      // Waypoint radius for AI in helis.
  381.  
  382.     DMS_AI_destroyVehicleChance         = 0;                            // Percent chance that an AI vehicle will be destroyed after the AI have been killed. Set to 100 for always, or 0 for never.
  383.  
  384.     DMS_AI_destroyStaticWeapon          = false;                        // Whether or not to destroy static HMGs after AI death.
  385.     DMS_AI_destroyStaticWeapon_chance   = 0;                            // Percent chance that a static weapon will be destroyed (only applied if "DMS_AI_destroyStaticWeapon" is true)
  386.  
  387.     DMS_static_weapons =                [                           // Static weapons for AI
  388.                                             "O_HMG_01_high_F"
  389.                                         ];
  390.  
  391.     DMS_ai_default_items =              [                           // Toolbelt items each AI will spawn with
  392.                                             "ItemWatch",
  393.                                             "ItemMap",
  394.                                             "ItemCompass",
  395.                                             "ItemRadio"
  396.                                     ];
  397.  
  398.     DMS_ai_BipodList =              [
  399.  
  400.                                     ];
  401.  
  402.     //Assault Class
  403.     DMS_assault_weps =              [                           // Assault Rifles
  404.                                             "rhs_weap_m16a4",
  405.                                             "rhs_weap_m4",
  406.                                             "rhs_weap_m4a1",
  407.                                             "rhs_weap_m4_m203",
  408.                                             "rhs_weap_m4a1_m320",
  409.                                             "rhs_weap_asval_npz",
  410.                                             "rhs_weap_ak103",
  411.                                             "rhs_weap_ak103_npz",
  412.                                             "rhs_weap_ak103_1",
  413.                                             "rhs_weap_ak103_2",
  414.                                             "rhs_weap_ak103_gp25_npz",         
  415.                                             "rhs_weap_ak104_npz",
  416.                                             "rhs_weap_ak105_npz",
  417.                                             "rhs_weap_ak74m",
  418.                                             "rhs_weap_ak74m_2mag",
  419.                                             "rhs_weap_ak74m_2mag_camo",
  420.                                             "rhs_weap_ak74m_2mag_npz",
  421.                                             "rhs_weap_ak74m_camo",
  422.                                             "rhs_weap_ak74m_desert",
  423.                                             "rhs_weap_ak74m_desert_npz",
  424.                                             "rhs_weap_ak74m_desert_folded",
  425.                                             "rhs_weap_ak74m_plummag_folded",
  426.                                             "rhs_weap_ak74m_folded",
  427.                                             "rhs_weap_ak74m_camo_folded",
  428.                                             "rhs_weap_ak74m_gp25",
  429.                                             "rhs_weap_ak74m_gp25_npz",
  430.                                             "rhs_weap_ak74m_npz",
  431.                                             "rhs_weap_ak74m_plummag",
  432.                                             "rhs_weap_ak74m_plummag_npz",
  433.                                             "rhs_weap_akm",
  434.                                             "rhs_weap_akm_gp25",
  435.                                             "rhs_weap_akms",
  436.                                             "rhs_weap_akms_gp25"
  437.                                     ];
  438.     DMS_assault_pistols =               [                           // Pistols for Assault Class (Set to empty array if you don't want to give them any pistols)
  439.                                             "hgun_ACPC2_F",
  440.                                             "hgun_Rook40_F",
  441.                                             "hgun_P07_F",
  442.                                             "hgun_Pistol_heavy_01_F",
  443.                                             "hgun_Pistol_heavy_02_F",
  444.                                             "rhs_weap_pya",
  445.                                             "rhs_weap_makarov_pmm",
  446.                                             "rhsusf_weap_m1911a1"
  447.                                         ];
  448.     DMS_assault_optics =                [                           // Optics for Assault Class
  449.  
  450.                                         ];
  451.     DMS_assault_optic_chance            = 0;                        // Percentage chance that an Assault Class AI will get an optic
  452.     DMS_assault_bipod_chance            = 0;                        // Percentage chance that an Assault Class AI will get a bipod
  453.     DMS_assault_suppressor_chance       = 0;                        // Percentage chance that an Assault Class AI will get a suppressor
  454.  
  455.     DMS_assault_items =                 [                           // Items for Assault Class AI (Loot stuff that goes in uniform/vest/backpack)
  456.                                             "Exile_Item_InstaDoc",
  457.                                             "Exile_Item_Surstromming_Cooked",
  458.                                             "Exile_Item_PlasticBottleFreshWater",
  459.                                             "Exile_Item_PlasticBottleFreshWater",
  460.                                             "Exile_Item_Matches"
  461.                                         ];
  462.     DMS_assault_equipment =             [                           // Equipment for Assault Class AI (stuff that goes in toolbelt slots)
  463.                                             "ItemGPS"
  464.                                         ];
  465.     DMS_assault_helmets =               [                           // Helmets for Assault Class
  466.                                             "H_Cap_blk",
  467.                                             "H_Cap_blk_Raven",
  468.                                             "H_Cap_blu",
  469.                                             "H_Cap_brn_SPECOPS",
  470.                                             "H_Cap_grn",
  471.                                             "H_Cap_headphones",
  472.                                             "H_Cap_khaki_specops_UK",
  473.                                             "H_Cap_oli",
  474.                                             "H_Cap_press",
  475.                                             "H_Cap_red",
  476.                                             "H_Cap_tan",
  477.                                             "H_Cap_tan_specops_US",
  478.                                             "H_Watchcap_blk",
  479.                                             "H_Watchcap_camo",
  480.                                             "H_Watchcap_khk",
  481.                                             "H_Watchcap_sgg",
  482.                                             "H_MilCap_blue",
  483.                                             "H_MilCap_dgtl",
  484.                                             "H_MilCap_mcamo",
  485.                                             "H_MilCap_ocamo",
  486.                                             "H_MilCap_oucamo",
  487.                                             "H_MilCap_rucamo",
  488.                                             "H_Bandanna_camo",
  489.                                             "H_Bandanna_cbr",
  490.                                             "H_Bandanna_gry",
  491.                                             "H_Bandanna_khk",
  492.                                             "H_Bandanna_khk_hs",
  493.                                             "H_Bandanna_mcamo",
  494.                                             "H_Bandanna_sgg",
  495.                                             "H_Bandanna_surfer",
  496.                                             "H_Booniehat_dgtl",
  497.                                             "H_Booniehat_dirty",
  498.                                             "H_Booniehat_grn",
  499.                                             "H_Booniehat_indp",
  500.                                             "H_Booniehat_khk",
  501.                                             "H_Booniehat_khk_hs",
  502.                                             "H_Booniehat_mcamo",
  503.                                             "H_Booniehat_tan",
  504.                                             "H_Hat_blue",
  505.                                             "H_Hat_brown",
  506.                                             "H_Hat_camo",
  507.                                             "H_Hat_checker",
  508.                                             "H_Hat_grey",
  509.                                             "H_Hat_tan",
  510.                                             "H_StrawHat",
  511.                                             "H_StrawHat_dark",
  512.                                             "H_Beret_02",
  513.                                             "H_Beret_blk",
  514.                                             "H_Beret_blk_POLICE",
  515.                                             "H_Beret_brn_SF",
  516.                                             "H_Beret_Colonel",
  517.                                             "H_Beret_grn",
  518.                                             "H_Beret_grn_SF",
  519.                                             "H_Beret_ocamo",
  520.                                             "H_Beret_red",
  521.                                             "H_Shemag_khk",
  522.                                             "H_Shemag_olive",
  523.                                             "H_Shemag_olive_hs",
  524.                                             "H_Shemag_tan",
  525.                                             "H_ShemagOpen_khk",
  526.                                             "H_ShemagOpen_tan",
  527.                                             "H_TurbanO_blk"
  528.                                         ];
  529.     DMS_assault_clothes =               [                           // Uniforms for Assault Class
  530.                                             "TRYK_U_denim_jersey_blu",
  531.                                             "TRYK_U_denim_jersey_blk",
  532.                                             "TRYK_shirts_PAD",
  533.                                             "TRYK_shirts_OD_PAD",
  534.                                             "TRYK_shirts_TAN_PAD",
  535.                                             "TRYK_shirts_BLK_PAD",
  536.                                             "TRYK_shirts_PAD_BK",
  537.                                             "TRYK_shirts_OD_PAD_BK",
  538.                                             "TRYK_shirts_TAN_PAD_BK",
  539.                                             "TRYK_shirts_BLK_PAD_BK",
  540.                                             "TRYK_shirts_PAD_BLW",
  541.                                             "TRYK_shirts_OD_PAD_BLW",
  542.                                             "TRYK_shirts_TAN_PAD_BLW",
  543.                                             "TRYK_shirts_BLK_PAD_BLW",
  544.                                             "TRYK_shirts_PAD_YEL",
  545.                                             "TRYK_shirts_OD_PAD_YEL",
  546.                                             "TRYK_shirts_TAN_PAD_YEL",
  547.                                             "TRYK_shirts_BLK_PAD_YEL",
  548.                                             "TRYK_shirts_PAD_RED2",
  549.                                             "TRYK_shirts_OD_PAD_RED2",
  550.                                             "TRYK_shirts_TAN_PAD_RED2",
  551.                                             "TRYK_shirts_BLK_PAD_RED2",
  552.                                             "TRYK_shirts_PAD_BLU3",
  553.                                             "TRYK_shirts_OD_PAD_BLU3",
  554.                                             "TRYK_shirts_TAN_PAD_BLU3",
  555.                                             "TRYK_shirts_BLK_PAD_BLU3",
  556.                                             "TRYK_shirts_DENIM_R",
  557.                                             "TRYK_shirts_DENIM_BL",
  558.                                             "TRYK_shirts_DENIM_BK",
  559.                                             "TRYK_shirts_DENIM_WH",
  560.                                             "TRYK_shirts_DENIM_BWH",
  561.                                             "TRYK_shirts_DENIM_RED2",
  562.                                             "TRYK_shirts_DENIM_WHB",
  563.                                             "TRYK_shirts_DENIM_ylb",
  564.                                             "TRYK_shirts_DENIM_od",
  565.                                             "TRYK_shirts_DENIM_R_Sleeve",
  566.                                             "TRYK_shirts_DENIM_BL_Sleeve",
  567.                                             "TRYK_shirts_DENIM_BK_Sleeve",
  568.                                             "TRYK_shirts_DENIM_WH_Sleeve",
  569.                                             "TRYK_shirts_DENIM_BWH_Sleeve",
  570.                                             "TRYK_shirts_DENIM_RED2_Sleeve",
  571.                                             "TRYK_shirts_DENIM_WHB_Sleeve",
  572.                                             "TRYK_shirts_DENIM_ylb_Sleeve",
  573.                                             "TRYK_shirts_DENIM_od_Sleeve",
  574.                                             "TRYK_shirts_PAD_BL",
  575.                                             "TRYK_shirts_OD_PAD_BL",
  576.                                             "TRYK_shirts_TAN_PAD_BL",
  577.                                             "TRYK_shirts_BLK_PAD_BL"
  578.                                         ];
  579.     DMS_assault_vests =                 [                           // Vests for Assault Class
  580.                                             "rhsusf_spc",
  581.                                             "V_Press_F",
  582.                                             "V_Rangemaster_belt",
  583.                                             "V_TacVest_blk",
  584.                                             "V_TacVest_blk_POLICE",
  585.                                             "V_TacVest_brn",
  586.                                             "V_TacVest_camo",
  587.                                             "V_TacVest_khk",
  588.                                             "V_TacVest_oli",
  589.                                             "V_TacVestCamo_khk",
  590.                                             "V_TacVestIR_blk",
  591.                                             "V_I_G_resistanceLeader_F",
  592.                                             "V_BandollierB_blk",
  593.                                             "V_BandollierB_cbr",
  594.                                             "V_BandollierB_khk",
  595.                                             "V_BandollierB_oli",
  596.                                             "V_BandollierB_rgr"
  597.                                         ];
  598.     DMS_assault_backpacks =             [                           // Backpacks for Assault Class
  599.                                             "TRYK_B_Coyotebackpack_BLK",
  600.                                             "TRYK_B_Alicepack",
  601.                                             "B_AssaultPack_blk",
  602.                                             "B_AssaultPack_cbr",
  603.                                             "B_AssaultPack_dgtl",
  604.                                             "B_AssaultPack_khk",
  605.                                             "B_AssaultPack_mcamo",
  606.                                             "B_AssaultPack_rgr",
  607.                                             "B_AssaultPack_sgg",
  608.                                             "B_Bergen_blk",
  609.                                             "B_Bergen_mcamo",
  610.                                             "B_Bergen_rgr",
  611.                                             "B_Bergen_sgg",
  612.                                             "B_Carryall_cbr",
  613.                                             "B_Carryall_khk",
  614.                                             "B_Carryall_mcamo",
  615.                                             "B_Carryall_ocamo",
  616.                                             "B_Carryall_oli",
  617.                                             "B_Carryall_oucamo",
  618.                                             "B_FieldPack_blk",
  619.                                             "B_FieldPack_cbr",
  620.                                             "B_FieldPack_ocamo",
  621.                                             "B_FieldPack_oucamo",
  622.                                             "B_HuntingBackpack",
  623.                                             "B_Kitbag_cbr",
  624.                                             "B_Kitbag_mcamo",
  625.                                             "B_Kitbag_sgg"
  626.                                         ];
  627.  
  628.     //Machine Gun Class
  629.     DMS_MG_weps =                       [                           // Machine Guns
  630.                                             "rhs_weap_m240B",
  631.                                             "rhs_weap_m240B_CAP",
  632.                                             "rhs_weap_m240G"
  633.                                         ];
  634.     DMS_MG_pistols =                    [                           // Pistols for MG Class (Set to empty array if you don't want to give them any pistols)
  635.                                             "hgun_ACPC2_F",
  636.                                             "hgun_Rook40_F",
  637.                                             "hgun_P07_F",
  638.                                             "hgun_Pistol_heavy_01_F",
  639.                                             "hgun_Pistol_heavy_02_F"
  640.                                         ];
  641.     DMS_MG_optics =                     [                           //  Optics for MG Class
  642.                                             "optic_Hamr",
  643.                                             "optic_Aco",
  644.                                             "optic_Holosight",
  645.                                             "optic_MRCO"
  646.                                         ];
  647.     DMS_MG_optic_chance                 = 0;                        // Percentage chance that an MG Class AI will get an optic
  648.     DMS_MG_bipod_chance                 = 0;                        // Percentage chance that an MG Class AI will get a bipod
  649.     DMS_MG_suppressor_chance            = 0;                        // Percentage chance that an MG Class AI will get a suppressor
  650.  
  651.     DMS_MG_items =                      [                           // Items for MG Class AI (Loot stuff that goes in uniform/vest/backpack)
  652.                                             "Exile_Item_InstaDoc",
  653.                                             "Exile_Item_Surstromming_Cooked",
  654.                                             "Exile_Item_PlasticBottleFreshWater",
  655.                                             "Exile_Item_PlasticBottleFreshWater",
  656.                                             "Exile_Item_Matches"
  657.                                         ];
  658.     DMS_MG_equipment =                  [                           // Equipment for MG Class AI (stuff that goes in toolbelt slots)
  659.                                             "Binocular"
  660.                                         ];
  661.     DMS_MG_helmets =                    [                           // Helmets for MG Class
  662.                                             "TRYK_H_headsetcap_blk",
  663.                                             "TRYK_kio_balaclava_BLK",
  664.                                             "TRYK_Shemagh_shade",
  665.                                             "TRYK_H_Bandana_wig"
  666.                                         ];
  667.     DMS_MG_clothes =                    [                           // Uniforms for MG Class
  668.                                             "TRYK_U_denim_jersey_blu",
  669.                                             "TRYK_U_denim_jersey_blk",
  670.                                             "TRYK_shirts_PAD",
  671.                                             "TRYK_shirts_OD_PAD",
  672.                                             "TRYK_shirts_TAN_PAD",
  673.                                             "TRYK_shirts_BLK_PAD",
  674.                                             "TRYK_shirts_PAD_BK",
  675.                                             "TRYK_shirts_OD_PAD_BK",
  676.                                             "TRYK_shirts_TAN_PAD_BK",
  677.                                             "TRYK_shirts_BLK_PAD_BK",
  678.                                             "TRYK_shirts_PAD_BLW",
  679.                                             "TRYK_shirts_OD_PAD_BLW",
  680.                                             "TRYK_shirts_TAN_PAD_BLW",
  681.                                             "TRYK_shirts_BLK_PAD_BLW",
  682.                                             "TRYK_shirts_PAD_YEL",
  683.                                             "TRYK_shirts_OD_PAD_YEL",
  684.                                             "TRYK_shirts_TAN_PAD_YEL",
  685.                                             "TRYK_shirts_BLK_PAD_YEL",
  686.                                             "TRYK_shirts_PAD_RED2",
  687.                                             "TRYK_shirts_OD_PAD_RED2",
  688.                                             "TRYK_shirts_TAN_PAD_RED2",
  689.                                             "TRYK_shirts_BLK_PAD_RED2",
  690.                                             "TRYK_shirts_PAD_BLU3",
  691.                                             "TRYK_shirts_OD_PAD_BLU3",
  692.                                             "TRYK_shirts_TAN_PAD_BLU3",
  693.                                             "TRYK_shirts_BLK_PAD_BLU3",
  694.                                             "TRYK_shirts_DENIM_R",
  695.                                             "TRYK_shirts_DENIM_BL",
  696.                                             "TRYK_shirts_DENIM_BK",
  697.                                             "TRYK_shirts_DENIM_WH",
  698.                                             "TRYK_shirts_DENIM_BWH",
  699.                                             "TRYK_shirts_DENIM_RED2",
  700.                                             "TRYK_shirts_DENIM_WHB",
  701.                                             "TRYK_shirts_DENIM_ylb",
  702.                                             "TRYK_shirts_DENIM_od",
  703.                                             "TRYK_shirts_DENIM_R_Sleeve",
  704.                                             "TRYK_shirts_DENIM_BL_Sleeve",
  705.                                             "TRYK_shirts_DENIM_BK_Sleeve",
  706.                                             "TRYK_shirts_DENIM_WH_Sleeve",
  707.                                             "TRYK_shirts_DENIM_BWH_Sleeve",
  708.                                             "TRYK_shirts_DENIM_RED2_Sleeve",
  709.                                             "TRYK_shirts_DENIM_WHB_Sleeve",
  710.                                             "TRYK_shirts_DENIM_ylb_Sleeve",
  711.                                             "TRYK_shirts_DENIM_od_Sleeve",
  712.                                             "TRYK_shirts_PAD_BL",
  713.                                             "TRYK_shirts_OD_PAD_BL",
  714.                                             "TRYK_shirts_TAN_PAD_BL",
  715.                                             "TRYK_shirts_BLK_PAD_BL"
  716.                                         ];
  717.     DMS_MG_vests =                      [                           // Vests for MG Class
  718.                                             "V_PlateCarrierH_CTRG",
  719.                                             "V_PlateCarrierSpec_rgr",
  720.                                             "V_PlateCarrierGL_blk",
  721.                                             "V_PlateCarrierGL_mtp",
  722.                                             "V_PlateCarrierGL_rgr",
  723.                                             "V_PlateCarrierSpec_blk",
  724.                                             "V_PlateCarrierSpec_mtp",
  725.                                             "V_PlateCarrierL_CTRG",
  726.                                             "V_TacVest_blk_POLICE",
  727.                                             "V_PlateCarrierIA2_dgtl",
  728.                                             "V_HarnessO_brn",
  729.                                             "V_HarnessO_gry"
  730.                                         ];
  731.     DMS_MG_backpacks =                  [                           // Backpacks for MG Class
  732.                                             "TRYK_B_Coyotebackpack_BLK",
  733.                                             "TRYK_B_Alicepack",
  734.                                             "B_AssaultPack_blk",
  735.                                             "B_AssaultPack_cbr",
  736.                                             "B_AssaultPack_dgtl",
  737.                                             "B_AssaultPack_khk",
  738.                                             "B_AssaultPack_mcamo",
  739.                                             "B_AssaultPack_rgr",
  740.                                             "B_AssaultPack_sgg",
  741.                                             "B_Bergen_blk",
  742.                                             "B_Bergen_mcamo",
  743.                                             "B_Bergen_rgr",
  744.                                             "B_Bergen_sgg",
  745.                                             "B_Carryall_cbr",
  746.                                             "B_Carryall_khk",
  747.                                             "B_Carryall_mcamo",
  748.                                             "B_Carryall_ocamo",
  749.                                             "B_Carryall_oli",
  750.                                             "B_Carryall_oucamo",
  751.                                             "B_FieldPack_blk",
  752.                                             "B_FieldPack_cbr",
  753.                                             "B_FieldPack_ocamo",
  754.                                             "B_FieldPack_oucamo",
  755.                                             "B_HuntingBackpack",
  756.                                             "B_Kitbag_cbr",
  757.                                             "B_Kitbag_mcamo",
  758.                                             "B_Kitbag_sgg"
  759.                                         ];
  760.  
  761.     //Sniper Class
  762.     DMS_sniper_weps =                   [                           // Sniper Rifles
  763.                                             "rhs_weap_sr25_ec"
  764.                                         ];
  765.     DMS_sniper_pistols =                [                           // Pistols for Sniper Class (Set to empty array if you don't want to give them any pistols)
  766.                                             "hgun_ACPC2_F",
  767.                                             "hgun_Rook40_F",
  768.                                             "hgun_P07_F",
  769.                                             "hgun_Pistol_heavy_01_F",
  770.                                             "hgun_Pistol_heavy_02_F"
  771.                                         ];
  772.     DMS_sniper_optics =                 [                           // Optics for Sniper Class
  773.                                             "optic_KHS_blk",
  774.                                             "optic_DMS",
  775.                                             "optic_LRPS"
  776.                                         ];
  777.     DMS_sniper_optic_chance             = 100;                      // Percentage chance that a Sniper Class AI will get an optic
  778.     DMS_sniper_bipod_chance             = 90;                       // Percentage chance that a Sniper Class AI will get a bipod
  779.     DMS_sniper_suppressor_chance        = 15;                       // Percentage chance that a Sniper Class AI will get a suppressor
  780.  
  781.     DMS_sniper_items =                  [                           // Items for Sniper Class AI (Loot stuff that goes in uniform/vest/backpack)
  782.                                             "Exile_Item_InstaDoc",
  783.                                             "Exile_Item_Surstromming_Cooked",
  784.                                             "Exile_Item_PlasticBottleFreshWater",
  785.                                             "Exile_Item_PlasticBottleFreshWater",
  786.                                             "Exile_Item_Matches"
  787.                                         ];
  788.     DMS_sniper_equipment =              [                           // Equipment for Sniper Class AI (stuff that goes in toolbelt slots)
  789.                                             "Rangefinder",
  790.                                             "ItemGPS"
  791.                                         ];
  792.     DMS_sniper_helmets =                [                           // Helmets for Sniper Class
  793.                                             "H_HelmetSpecB_paint1",
  794.                                             "H_HelmetIA_camo",
  795.                                             "H_HelmetLeaderO_ocamo",
  796.                                             "H_HelmetLeaderO_oucamo"
  797.                                         ];
  798.     DMS_sniper_clothes =                [                           // Uniforms for Sniper Class
  799.                                             "TRYK_U_denim_jersey_blu",
  800.                                             "TRYK_U_denim_jersey_blk",
  801.                                             "TRYK_shirts_PAD",
  802.                                             "TRYK_shirts_OD_PAD",
  803.                                             "TRYK_shirts_TAN_PAD",
  804.                                             "TRYK_shirts_BLK_PAD",
  805.                                             "TRYK_shirts_PAD_BK",
  806.                                             "TRYK_shirts_OD_PAD_BK",
  807.                                             "TRYK_shirts_TAN_PAD_BK",
  808.                                             "TRYK_shirts_BLK_PAD_BK",
  809.                                             "TRYK_shirts_PAD_BLW",
  810.                                             "TRYK_shirts_OD_PAD_BLW",
  811.                                             "TRYK_shirts_TAN_PAD_BLW",
  812.                                             "TRYK_shirts_BLK_PAD_BLW",
  813.                                             "TRYK_shirts_PAD_YEL",
  814.                                             "TRYK_shirts_OD_PAD_YEL",
  815.                                             "TRYK_shirts_TAN_PAD_YEL",
  816.                                             "TRYK_shirts_BLK_PAD_YEL",
  817.                                             "TRYK_shirts_PAD_RED2",
  818.                                             "TRYK_shirts_OD_PAD_RED2",
  819.                                             "TRYK_shirts_TAN_PAD_RED2",
  820.                                             "TRYK_shirts_BLK_PAD_RED2",
  821.                                             "TRYK_shirts_PAD_BLU3",
  822.                                             "TRYK_shirts_OD_PAD_BLU3",
  823.                                             "TRYK_shirts_TAN_PAD_BLU3",
  824.                                             "TRYK_shirts_BLK_PAD_BLU3",
  825.                                             "TRYK_shirts_DENIM_R",
  826.                                             "TRYK_shirts_DENIM_BL",
  827.                                             "TRYK_shirts_DENIM_BK",
  828.                                             "TRYK_shirts_DENIM_WH",
  829.                                             "TRYK_shirts_DENIM_BWH",
  830.                                             "TRYK_shirts_DENIM_RED2",
  831.                                             "TRYK_shirts_DENIM_WHB",
  832.                                             "TRYK_shirts_DENIM_ylb",
  833.                                             "TRYK_shirts_DENIM_od",
  834.                                             "TRYK_shirts_DENIM_R_Sleeve",
  835.                                             "TRYK_shirts_DENIM_BL_Sleeve",
  836.                                             "TRYK_shirts_DENIM_BK_Sleeve",
  837.                                             "TRYK_shirts_DENIM_WH_Sleeve",
  838.                                             "TRYK_shirts_DENIM_BWH_Sleeve",
  839.                                             "TRYK_shirts_DENIM_RED2_Sleeve",
  840.                                             "TRYK_shirts_DENIM_WHB_Sleeve",
  841.                                             "TRYK_shirts_DENIM_ylb_Sleeve",
  842.                                             "TRYK_shirts_DENIM_od_Sleeve",
  843.                                             "TRYK_shirts_PAD_BL",
  844.                                             "TRYK_shirts_OD_PAD_BL",
  845.                                             "TRYK_shirts_TAN_PAD_BL",
  846.                                             "TRYK_shirts_BLK_PAD_BL"
  847.                                         ];
  848.     DMS_sniper_vests =                  [                           // Vests for Sniper Class
  849.                                             "V_PlateCarrierH_CTRG",
  850.                                             "V_PlateCarrierSpec_rgr",
  851.                                             "V_PlateCarrierGL_blk",
  852.                                             "V_PlateCarrierGL_mtp",
  853.                                             "V_PlateCarrierGL_rgr",
  854.                                             "V_PlateCarrierSpec_blk",
  855.                                             "V_PlateCarrierSpec_mtp",
  856.                                             "V_PlateCarrierL_CTRG",
  857.                                             "V_TacVest_blk_POLICE",
  858.                                             "V_PlateCarrierIA2_dgtl",
  859.                                             "V_HarnessO_brn",
  860.                                             "V_HarnessO_gry"
  861.                                         ];
  862.     DMS_sniper_backpacks =              [                           // Backpacks for Sniper Class
  863.                                             "TRYK_B_Coyotebackpack_BLK",
  864.                                             "TRYK_B_Alicepack",
  865.                                             "B_AssaultPack_blk",
  866.                                             "B_AssaultPack_cbr",
  867.                                             "B_AssaultPack_dgtl",
  868.                                             "B_AssaultPack_khk",
  869.                                             "B_AssaultPack_mcamo",
  870.                                             "B_AssaultPack_rgr",
  871.                                             "B_AssaultPack_sgg",
  872.                                             "B_Bergen_blk",
  873.                                             "B_Bergen_mcamo",
  874.                                             "B_Bergen_rgr",
  875.                                             "B_Bergen_sgg",
  876.                                             "B_Carryall_cbr",
  877.                                             "B_Carryall_khk",
  878.                                             "B_Carryall_mcamo",
  879.                                             "B_Carryall_ocamo",
  880.                                             "B_Carryall_oli",
  881.                                             "B_Carryall_oucamo",
  882.                                             "B_FieldPack_blk",
  883.                                             "B_FieldPack_cbr",
  884.                                             "B_FieldPack_ocamo",
  885.                                             "B_FieldPack_oucamo",
  886.                                             "B_HuntingBackpack",
  887.                                             "B_Kitbag_cbr",
  888.                                             "B_Kitbag_mcamo",
  889.                                             "B_Kitbag_sgg"
  890.                                         ];
  891.  
  892.     DMS_ai_SupportedClasses =           [                           // Allowed AI classes. If you want to create your own class, make sure you define everything as I've defined above, and add it here
  893.                                             "assault",
  894.                                             "MG",
  895.                                             "sniper"
  896.                                         ];
  897.  
  898.     DMS_ai_SupportedRandomClasses =     [                           // Allowed "random" AI presets here if you want to create different random presets.
  899.                                             "random",
  900.                                             "random_non_assault",
  901.                                             "random_non_MG",
  902.                                             "random_non_sniper"
  903.                                         ];
  904.  
  905.     DMS_random_AI =                     [                           // Random AI preset that contains all default classes | DEFAULT: 60% Assault, 20% MG, 20% Sniper
  906.                                             "assault",
  907.                                             "assault",
  908.                                             "assault",
  909.                                             "MG",
  910.                                             "sniper"
  911.                                         ];
  912.  
  913.     DMS_random_non_assault_AI =         [                           // Random AI preset that excludes the "assault" class
  914.                                             "MG",
  915.                                             "MG",
  916.                                             "sniper"
  917.                                         ];
  918.  
  919.     DMS_random_non_MG_AI =              [                           // Random AI preset that excludes the "MG" class
  920.                                             "assault",
  921.                                             "assault",
  922.                                             "sniper"
  923.                                         ];
  924.  
  925.     DMS_random_non_sniper_AI =          [                           // Random AI preset that excludes the "sniper" class
  926.                                             "assault",
  927.                                             "assault",
  928.                                             "MG"
  929.                                         ];
  930.  
  931.     DMS_ai_use_launchers                = true;                     // Enable/disable spawning an AI in a group with a launcher
  932.     DMS_ai_launchers_per_group          = 1;                        // How many units per AI group can get a launcher.
  933.     DMS_ai_use_launchers_chance         = 50;                       // Percentage chance to actually spawn the launcher (per-unit). With "DMS_ai_launchers_per_group" set to 2, and "DMS_ai_use_launchers_chance" set to 50, there will be an average of 1 launcher per group.
  934.     DMS_AI_launcher_ammo_count          = 2;                        // How many rockets an AI will get with its launcher
  935.     DMS_ai_remove_launchers             = true;                     // Remove rocket launchers on AI death
  936.  
  937.     DMS_AI_wep_launchers_AT =           [                           // AT Launchers
  938.                                             "launch_RPG32_F"
  939.                                         ];
  940.     DMS_AI_wep_launchers_AA =           [                           // AA Launchers
  941.                                             "launch_RPG32_F"
  942.                                         ];
  943.  
  944.     DMS_RHeli_Height                    = 250;                      // Altitude of the heli when flying to drop point.
  945.     DMS_RHeli_MinDistFromDrop           = 500;                      // Minimum distance for the reinforcement heli to spawn from drop point.
  946.     DMS_RHeli_MaxDistFromDrop           = 1000;                     // Maximum distance for the reinforcement heli to spawn from drop point.
  947.     DMS_RHeli_MinDistFromPlayers        = 750;                      // Minimum distance for the reinforcement heli to spawn from players.
  948.  
  949. /* AI Settings */
  950.  
  951.  
  952. /* Loot Settings */
  953.     DMS_GodmodeCrates                   = true;                     // Whether or not crates will have godmode after being filled with loot.
  954.     DMS_MinimumMagCount                 = 3;                        // Minimum number of magazines for weapons.
  955.     DMS_MaximumMagCount                 = 5;                        // Maximum number of magazines for weapons.
  956.     DMS_CrateCase_Sniper =              [                           // If you pass "Sniper" in _lootValues, then it will spawn these weapons/items/backpacks
  957.                                             [
  958.                                                 ["Rangefinder",1],
  959.                                                 ["rhs_weap_sr25",1],
  960.                                                 ["rhs_weap_XM2010",1],
  961.                                                 ["rhs_weap_svd",1],
  962.                                                 ["rhs_weap_svds",1],
  963.                                                 ["rhs_weap_m14ebrri",1]
  964.                                             ],
  965.                                             [
  966.                                                 ["ItemGPS",1],
  967.                                                 ["U_B_FullGhillie_ard",1],
  968.                                                 ["U_I_FullGhillie_lsh",1],
  969.                                                 ["U_O_FullGhillie_sard",1],
  970.                                                 ["U_O_GhillieSuit",1],
  971.                                                 ["V_PlateCarrierGL_blk",1],
  972.                                                 ["V_HarnessO_brn",1],
  973.                                                 ["Exile_Item_InstaDoc",3],
  974.                                                 ["Exile_Item_Surstromming_Cooked",5],
  975.                                                 ["Exile_Item_PlasticBottleFreshWater",5],
  976.                                                 ["optic_DMS",1],
  977.                                                 ["muzzle_snds_B",1],
  978.                                                 ["optic_LRPS",1],
  979.                                                 ["optic_MRD",1],
  980.                                                 ["muzzle_snds_acp",1],
  981.                                                 ["optic_Holosight_smg",1],
  982.                                                 ["muzzle_snds_L",1],
  983.                                                 ["5Rnd_127x108_APDS_Mag",3],
  984.                                                 ["7Rnd_408_Mag",3],
  985.                                                 ["20Rnd_762x51_Mag",5],
  986.                                                 ["11Rnd_45ACP_Mag",3],
  987.                                                 ["30Rnd_9x21_Mag",3]
  988.                                             ],
  989.                                             [
  990.                                                 ["B_Carryall_cbr",1],
  991.                                                 ["B_Kitbag_mcamo",1]
  992.                                             ]
  993.                                         ];
  994.     DMS_BoxWeapons =                    [                           // List of weapons that can spawn in a crate
  995.                                             "Exile_Melee_Axe",
  996.                                             "rhs_weap_m16a4",
  997.                                             "rhs_weap_m16a4_carryhandle",
  998.                                             "rhs_weap_m16a4_carryhandle_grip",
  999.                                             "rhs_weap_m16a4_carryhandle_grip_pmag",
  1000.                                             "rhs_weap_m16a4_carryhandle_M203",
  1001.                                             "rhs_weap_m16a4_carryhandle_pmag",
  1002.                                             "rhs_weap_m16a4_grip",
  1003.                                             "rhs_weap_m4",
  1004.                                             "rhs_weap_m4_grip2",
  1005.                                             "rhs_weap_m4_carryhandle",
  1006.                                             "rhs_weap_m4_carryhandle_pmag",
  1007.                                             "rhs_weap_m4_grip",
  1008.                                             "rhs_weap_m4_m203",
  1009.                                             "rhs_weap_m4_m320",
  1010.                                             "rhs_weap_m4a1_carryhandle",
  1011.                                             "rhs_weap_m4a1_carryhandle_grip2",
  1012.                                             "rhs_weap_m4a1_carryhandle_pmag",
  1013.                                             "rhs_weap_m4a1_carryhandle_m203",
  1014.                                             "rhs_weap_m4a1",
  1015.                                             "rhs_weap_m4a1_grip2",
  1016.                                             "rhs_weap_m4a1_grip",
  1017.                                             "rhs_weap_m4a1_m203",
  1018.                                             "rhs_weap_m4a1_m320",
  1019.                                             "rhs_weap_m4a1_blockII",
  1020.                                             "rhs_weap_m4a1_blockII_KAC",
  1021.                                             "rhs_weap_m4a1_blockII_grip2",
  1022.                                             "rhs_weap_m4a1_blockII_grip2_KAC",
  1023.                                             "rhs_weap_m4a1_blockII_M203",
  1024.                                             "rhs_weap_mk18",
  1025.                                             "rhs_weap_mk18_KAC",
  1026.                                             "rhs_weap_mk18_grip2",
  1027.                                             "rhs_weap_mk18_grip2_KAC",
  1028.                                             "rhs_weap_mk18_m320",
  1029.                                             "rhs_weap_ak103",
  1030.                                             "rhs_weap_ak103_npz",
  1031.                                             "rhs_weap_ak103_1",
  1032.                                             "rhs_weap_ak74m",
  1033.                                             "rhs_weap_ak74m_2mag",
  1034.                                             "rhs_weap_ak74m_2mag_camo",
  1035.                                             "rhs_weap_ak74m_2mag_npz",
  1036.                                             "rhs_weap_ak74m_camo",
  1037.                                             "rhs_weap_ak74m_desert",
  1038.                                             "rhs_weap_ak74m_desert_npz",
  1039.                                             "rhs_weap_ak74m_desert_folded",
  1040.                                             "rhs_weap_ak74m_plummag_folded",
  1041.                                             "rhs_weap_ak74m_folded",
  1042.                                             "rhs_weap_ak74m_camo_folded",
  1043.                                             "rhs_weap_ak74m_gp25",
  1044.                                             "rhs_weap_ak74m_gp25_npz",
  1045.                                             "rhs_weap_ak74m_npz",
  1046.                                             "rhs_weap_ak74m_plummag",
  1047.                                             "rhs_weap_ak74m_plummag_npz",
  1048.                                             "rhs_weap_akm",
  1049.                                             "rhs_weap_akm_gp25",
  1050.                                             "rhs_weap_akms",
  1051.                                             "rhs_weap_akms_gp25",
  1052.                                             "rhs_weap_sr25",
  1053.                                             "rhs_weap_sr25_ec",
  1054.                                             "rhs_weap_m14ebrri",
  1055.                                             "rhs_weap_XM2010",
  1056.                                             "rhs_weap_XM2010_wd",
  1057.                                             "rhs_weap_XM2010_d",
  1058.                                             "rhs_weap_XM2010_sa",
  1059.                                             "rhs_weap_svd",
  1060.                                             "rhs_weap_svdp_wd",
  1061.                                             "rhs_weap_svdp_wd_npz",
  1062.                                             "rhs_weap_svdp_npz",
  1063.                                             "rhs_weap_svds",
  1064.                                             "rhs_weap_svds_npz",
  1065.                                             "arifle_MXM_Black_F",
  1066.                                             "arifle_MXM_F",
  1067.                                             "srifle_DMR_01_F",
  1068.                                             "srifle_DMR_02_camo_F",
  1069.                                             "srifle_DMR_02_F",
  1070.                                             "srifle_DMR_02_sniper_F",
  1071.                                             "srifle_DMR_03_F",
  1072.                                             "srifle_DMR_03_khaki_F",
  1073.                                             "srifle_DMR_03_multicam_F",
  1074.                                             "srifle_DMR_03_tan_F",
  1075.                                             "srifle_DMR_03_woodland_F",
  1076.                                             "srifle_DMR_04_F",
  1077.                                             "srifle_DMR_04_Tan_F",
  1078.                                             "srifle_DMR_05_blk_F",
  1079.                                             "srifle_DMR_05_hex_F",
  1080.                                             "srifle_DMR_05_tan_f",
  1081.                                             "srifle_DMR_06_camo_F",
  1082.                                             "srifle_DMR_06_olive_F",
  1083.                                             "srifle_EBR_F",
  1084.                                             "srifle_GM6_camo_F",
  1085.                                             "srifle_GM6_F",
  1086.                                             "srifle_LRR_camo_F",
  1087.                                             "srifle_LRR_F"
  1088.                                         ];
  1089.     DMS_BoxFood =                       [                           // List of food that can spawn in a crate.
  1090.                                             "Exile_Item_GloriousKnakworst_Cooked",
  1091.                                             "Exile_Item_Surstromming_Cooked",
  1092.                                             "Exile_Item_SausageGravy_Cooked",
  1093.                                             "Exile_Item_ChristmasTinner_Cooked",
  1094.                                             "Exile_Item_BBQSandwich_Cooked",
  1095.                                             "Exile_Item_Catfood_Cooked",
  1096.                                             "Exile_Item_DogFood_Cooked"
  1097.                                         ];
  1098.     DMS_BoxDrinks =                     [
  1099.                                             "Exile_Item_PlasticBottleCoffee",
  1100.                                             "Exile_Item_PowerDrink",
  1101.                                             "Exile_Item_PlasticBottleFreshWater",
  1102.                                             "Exile_Item_EnergyDrink",
  1103.                                             "Exile_Item_MountainDupe"
  1104.                                         ];
  1105.     DMS_BoxMeds =                       [
  1106.                                             "Exile_Item_InstaDoc",
  1107.                                             "Exile_Item_Vishpirin",
  1108.                                             "Exile_Item_Bandage"
  1109.                                         ];
  1110.     DMS_BoxSurvivalSupplies =           [                           //List of survival supplies (food/drink/meds) that can spawn in a crate. "DMS_BoxFood", "DMS_BoxDrinks", and "DMS_BoxMeds" is automatically added to this list.
  1111.                                             "Exile_Item_Matches",
  1112.                                             "Exile_Item_CookingPot",
  1113.                                             "Exile_Melee_Axe",
  1114.                                             "Exile_Item_CanOpener"
  1115.                                         ] + DMS_BoxFood + DMS_BoxDrinks + DMS_BoxMeds;
  1116.     DMS_BoxBaseParts =                  [
  1117.                                             "Exile_Item_CamoTentKit",
  1118.                                             "Exile_Item_WoodWallKit",
  1119.                                             "Exile_Item_WoodWallHalfKit",
  1120.                                             "Exile_Item_WoodDoorwayKit",
  1121.                                             "Exile_Item_WoodDoorKit",
  1122.                                             "Exile_Item_WoodFloorKit",
  1123.                                             "Exile_Item_WoodFloorPortKit",
  1124.                                             "Exile_Item_WoodStairsKit",
  1125.                                             "Exile_Item_WoodSupportKit",
  1126.                                             "Exile_Item_FortificationUpgrade"
  1127.                                         ];
  1128.     DMS_BoxCraftingMaterials =          [
  1129.                                             "Exile_Item_MetalPole",
  1130.                                             "Exile_Item_MetalBoard",
  1131.                                             "Exile_Item_JunkMetal"
  1132.                                         ];
  1133.     DMS_BoxTools =                      [
  1134.                                             "Exile_Item_Grinder",
  1135.                                             "Exile_Item_Handsaw"
  1136.                                         ];
  1137.     DMS_BoxBuildingSupplies =           [                           // List of building supplies that can spawn in a crate ("DMS_BoxBaseParts", "DMS_BoxCraftingMaterials", and "DMS_BoxTools" are automatically added to this list. "DMS_BoxCraftingMaterials" is added twice for weight.)
  1138.                                             "Exile_Item_DuctTape",
  1139.                                             "Exile_Item_PortableGeneratorKit"
  1140.                                         ] + DMS_BoxBaseParts + DMS_BoxCraftingMaterials + DMS_BoxCraftingMaterials + DMS_BoxTools;
  1141.     DMS_BoxOptics =                     [                           // List of optics that can spawn in a crate
  1142.                                             "optic_Aco",
  1143.                                             "optic_ACO_grn",
  1144.                                             "optic_ACO_grn_smg",
  1145.                                             "optic_Aco_smg",
  1146.                                             "optic_AMS",
  1147.                                             "optic_AMS_khk",
  1148.                                             "optic_AMS_snd",
  1149.                                             "optic_Arco",
  1150.                                             "optic_DMS",
  1151.                                             "optic_Hamr",
  1152.                                             "optic_Aco",
  1153.                                             "optic_Holosight",
  1154.                                             "optic_Holosight_smg",
  1155.                                             "optic_KHS_blk",
  1156.                                             "optic_KHS_hex",
  1157.                                             "optic_KHS_old",
  1158.                                             "optic_KHS_tan",
  1159.                                             "optic_LRPS",
  1160.                                             "optic_MRCO",
  1161.                                             "optic_MRD",
  1162.                                             "optic_Nightstalker",
  1163.                                             "rhsusf_acc_eotech_552",
  1164.                                             "rhsusf_acc_LEUPOLDMK4",
  1165.                                             "rhsusf_acc_ELCAN",
  1166.                                             "rhsusf_acc_ELCAN_pip",
  1167.                                             "rhsusf_acc_ACOG",
  1168.                                             "rhsusf_acc_ACOG_pip",
  1169.                                             "rhs_acc_1pn93_2",
  1170.                                             "rhsusf_acc_ACOG2",
  1171.                                             "rhsusf_acc_ACOG_USMC",
  1172.                                             "rhsusf_acc_ACOG2_USMC",
  1173.                                             "rhsusf_acc_ACOG3_USMC",
  1174.                                             "rhsusf_acc_LEUPOLDMK4_2",
  1175.                                             "rhsusf_acc_EOTECH",
  1176.                                             "rhs_acc_1p29",
  1177.                                             "rhs_acc_1p78",
  1178.                                             "rhs_acc_pkas",
  1179.                                             "rhs_acc_1p63",
  1180.                                             "rhs_acc_ekp1",
  1181.                                             "rhs_acc_pso1m2",
  1182.                                             "rhs_acc_pgo7v",
  1183.                                             "rhs_acc_1pn93_1"
  1184.                                         ];
  1185.     DMS_BoxBackpacks =                  [                           //List of backpacks that can spawn in a crate
  1186.                                             "B_Bergen_rgr",
  1187.                                             "B_Carryall_oli",
  1188.                                             "B_Kitbag_mcamo",
  1189.                                             "B_Carryall_cbr",
  1190.                                             "B_FieldPack_oucamo",
  1191.                                             "B_FieldPack_cbr",
  1192.                                             "B_Bergen_blk"
  1193.                                         ];
  1194.     DMS_BoxItems                        = DMS_BoxSurvivalSupplies+DMS_BoxBuildingSupplies+DMS_BoxOptics;    // Random "items" can spawn optics, survival supplies, or building supplies
  1195.  
  1196.     DMS_RareLoot                        = true;                     // Potential chance to spawn rare loot in any crate.
  1197.     DMS_RareLootAmount                  = 1;                        // How many rare loot items to add.
  1198.     DMS_RareLootList =                  [                           // List of rare loot to spawn
  1199.                                             "Exile_Item_SafeKit",
  1200.                                             "Exile_Item_CodeLock",
  1201.                                             "APERSBoundingMine_Range_Mag",
  1202.                                             "APERSMine_Range_Mag",
  1203.                                             "APERSTripMine_Wire_Mag",
  1204.                                             "ClaymoreDirectionalMine_Remote_Mag",
  1205.                                             "DemoCharge_Remote_Mag",
  1206.                                             "IEDLandBig_Remote_Mag",
  1207.                                             "IEDLandSmall_Remote_Mag",
  1208.                                             "IEDUrbanBig_Remote_Mag",
  1209.                                             "IEDUrbanSmall_Remote_Mag",
  1210.                                             "SatchelCharge_Remote_Mag",
  1211.                                             "SLAMDirectionalMine_Wire_Mag"
  1212.                                         ];
  1213.     DMS_RareLootChance                  = 5;                        // Percentage Chance to spawn rare loot in any crate | Default: 10%
  1214.  
  1215.     // Vehicles
  1216.     DMS_ArmedVehicles =                 [                           // List of armed vehicles that can spawn
  1217.                                             "Exile_Car_Offroad_Armed_Guerilla01",
  1218.                                             "rhsusf_m1025_w_m2"
  1219.                                         ];
  1220.  
  1221.     DMS_MilitaryVehicles =              [                           // List of military vehicles that can spawn
  1222.                                             "rhs_tigr_ffv_3camo_vdv",
  1223.                                             "rhsusf_m998_w_4dr",
  1224.                                             "rhsusf_m998_d_s_4dr_fulltop"
  1225.                                         ];
  1226.  
  1227.     DMS_TransportTrucks =               [                           // List of transport trucks that can spawn
  1228.                                             "rhsusf_m998_w_4dr",
  1229.                                             "rhs_gaz66_vmf",
  1230.                                             "RHS_Ural_Open_Civ_02",
  1231.                                             "RHS_Ural_MSV_01"
  1232.                                         ];
  1233.  
  1234.     DMS_RefuelTrucks =                  [                           // List of refuel trucks that can spawn
  1235.                                             "Exile_Car_Van_Fuel_Black",
  1236.                                             "RHS_Ural_Fuel_MSV_01",
  1237.                                             "Exile_Car_Van_Fuel_Guerilla03"
  1238.                                         ];
  1239.  
  1240.     DMS_CivilianVehicles =              [                           // List of civilian vehicles that can spawn
  1241.                                             "rhs_uaz_vmf",
  1242.                                             "rhsusf_m998_w_s_4dr_fulltop",
  1243.                                             "Exile_Car_Offroad_Rusty2",
  1244.                                             "Exile_Bike_QuadBike_Fia"
  1245.                                         ];
  1246.  
  1247.     DMS_TransportHelis =                [                           // List of transport helis that can spawn
  1248.                                             "rhs_ka60_c",
  1249.                                             "RHS_UH60M",
  1250.                                             "rhs_UH1Y_unarmed",
  1251.                                             "rhs_Mi8mt_cargo_vvs",
  1252.                                             "Exile_Chopper_Hellcat_Green",
  1253.                                             "Exile_Chopper_Taru_Transport_Black"
  1254.                                         ];
  1255.  
  1256.     DMS_ReinforcementHelis =            [                           // List of helis that can spawn for AI paratrooper reinforcements.
  1257.                                             //"B_Heli_Transport_01_camo_F"      // Ghosthawk: You'll have to whitelist this in infistar if you want to use it.
  1258.                                         ] + DMS_TransportHelis;
  1259.  
  1260.     DMS_CarThievesVehicles =            [                           // List of vehicles that can spawn in the "car thieves" mission. By default, it's just "DMS_MilitaryVehicles" and "DMS_TransportTrucks".
  1261.                                             //"Exile_Car_Offroad_Armed_Guerilla01"
  1262.                                         ] + DMS_MilitaryVehicles + DMS_TransportTrucks;
  1263. /* Loot Settings */
Add Comment
Please, Sign In to add comment