odincz

Untitled

Oct 5th, 2019
719
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 71.81 KB | None | 0 0
  1. /*
  2. Main DMS Config File
  3.  
  4. Created by eraser1
  5. Several revisions and additions have been made by community members.
  6.  
  7.  
  8. A lot of these configs are influenced by WAI :P
  9. https://github.com/nerdalertdk/WICKED-AI
  10. */
  11.  
  12. // You dawg... heard you like configs... so here's some configs for your config.... so you can configure your configuration to make it easier to configure your configuration http://i.imgur.com/9eJjEEo.jpg
  13.  
  14.  
  15. // If you don't want the AI to have marksman DLC weapons, then simply remove the line below, or comment it by putting // at the beginning of the line
  16. #define GIVE_AI_MARKSMAN_DLC_WEAPONS 1
  17.  
  18. // If you don't want crates to spawn with marksman DLC weapons, simply remove the line below or comment it out.
  19. #define USE_MARKSMAN_DLC_WEAPONS_IN_CRATES 1
  20.  
  21. // Uncomment this if you want Apex weapons on AI.
  22. //#define GIVE_AI_APEX_WEAPONS 1
  23.  
  24. // Uncomment this if you want Apex gear on AI. Uniforms, Vests, Backpacks, Helmets,Scopes
  25. //#define GIVE_AI_APEX_GEAR 1
  26.  
  27. // Uncomment this if you want Apex weapons in loot crates
  28. //#define USE_APEX_WEAPONS_IN_CRATES 1
  29.  
  30. // Uncomment this if you want Apex vehicles to spawn for AI/missions
  31. //#define USE_APEX_VEHICLES 1
  32.  
  33.  
  34.  
  35.  
  36. DMS_Use_Map_Config = true; // Whether or not to use config overwrites specific to the map.
  37. /*
  38. 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.
  39. 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.
  40. For any questions regarding map-specific configs, please leave a reply in the DMS thread on the Exile forums.
  41. */
  42.  
  43. DMS_Enable_RankChange = false; // Whether or not to use Rank Changes. (Required 'true' if using Occupation)
  44. /*
  45. 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!
  46. */
  47.  
  48. DMS_Add_AIKill2DB = false; // Adds killstat for player in the database ;)
  49.  
  50. DMS_SpawnMissions_Scheduled = false; // Whether or not to spawn missions in a scheduled environment. Setting to true may help with lag when certain missions spawn.
  51. //Note, if you have the above to true, you need to set DMS_ai_freezeOnSpawn = false; and DMS_ai_share_info = true;
  52.  
  53. /* Mission System Settings */
  54. /*General settings for dynamic missions*/
  55. DMS_DynamicMission = true; // Enable/disable dynamic mission system.
  56. DMS_MaxBanditMissions = 4; // Maximum number of Bandit Missions running at the same time
  57. DMS_TimeToFirstMission = [180,420]; // [Minimum,Maximum] time between first mission spawn. | DEFAULT: 3-7 minutes.
  58. DMS_TimeBetweenMissions = [500,800]; // [Minimum,Maximum] time between missions (if mission limit is not reached) | DEFAULT: 10-15 mins
  59. DMS_MissionTimeout = [900,1800]; // [Minimum,Maximum] time it will take for a mission to timeout | DEFAULT: 15-30 mins
  60. DMS_MissionTimeoutResetRange = 1200; // If a player is this close to a mission then it won't time-out. Set to 0 to disable this check.
  61. DMS_MissionTimeoutResetFrequency = 180; // How often (in seconds) to check for nearby players and reset the mission timeout.
  62. DMS_ResetMissionTimeoutOnKill = true; // Whether or not to reset the mission timeout when an AI is killed.
  63. /*General settings for dynamic missions*/
  64.  
  65. /*General settings for static missions*/
  66. DMS_StaticMission = true; // Enable/disable static mission system.
  67. 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".
  68. DMS_TimeToFirstStaticMission = [1200,1400]; // [Minimum,Maximum] time between first static mission spawn. | DEFAULT: 3-7 minutes.
  69. DMS_TimeBetweenStaticMissions = [1800,2700]; // [Minimum,Maximum] time between static missions (if static mission limit is not reached) | DEFAULT: 15-30 mins
  70. DMS_StaticMissionTimeOut = [2700,3600]; // [Minimum,Maximum] time it will take for a static mission to timeout | DEFAULT: 30-60 mins
  71. DMS_StaticMissionTimeoutResetRange = 1200; // If a player is this close to a mission then it won't time-out. Set to 0 to disable this check.
  72. DMS_SMissionTimeoutResetFrequency = 180; // How often (in seconds) to check for nearby players and reset the mission timeout for static missions.
  73. DMS_ResetStaticMissionTimeoutOnKill = true; // Whether or not to reset the mission timeout when an AI is killed (for Static Missions).
  74. 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.
  75. DMS_AllowStaticReinforcements = false; // Whether or not static missions will receive reinforcements. This will simply disable the calling of GroupReinforcementsMonitor;
  76. DMS_SpawnFlareOnReinforcements = true; // Whether or not to spawn a flare and noise when AI reinforcements have spawned.
  77. /*General settings for static missions*/
  78.  
  79. 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).
  80.  
  81. DMS_AI_KillPercent = 100; // The percent amount of AI that need to be killed for "killPercent" mission requirement (NOT IMPLEMENTED)
  82.  
  83. /*Mission Marker settings*/
  84. 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.
  85. DMS_ShowMarkerCircle = false; // Whether or not to show the colored "circle" around a mission marker.
  86. 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
  87. DMS_MarkerText_MissionPrefix = "Mise:"; // The text displayed before the mission name in the mission marker.
  88. DMS_MarkerText_ShowAICount = true; // Whether or not to display the number of remaining AI in the marker name.
  89. DMS_MarkerText_ShowAICount_Static = true; // Whether or not to display the number of remaining AI in the marker name for STATIC missions.
  90. DMS_MarkerText_AIName = "jednotek"; // What the AI will be called in the map marker. For example, the marker text can show: "Car Dealer (3 Units remaining)"
  91. DMS_MarkerPosRandomization = false; // Randomize the position of the circle marker of a mission
  92. DMS_MarkerPosRandomRadius = [25,100]; // Minimum/Maximum distance that the circle marker position will be randomized | DEFAULT: 0 meters to 200 meters
  93. DMS_RandomMarkerBrush = "Cross"; // See: https://community.bistudio.com/wiki/setMarkerBrush
  94. DMS_MissionMarkerWinDot = true; // Keep the mission marker dot with a "win" message after mission is over
  95. DMS_MissionMarkerLoseDot = true; // Keep the mission marker dot with a "lose" message after mission is over
  96. DMS_MissionMarkerWinDot_Type = "mil_end"; // The marker type to show when a mission is completed. Refer to: https://community.bistudio.com/wiki/cfgMarkers
  97. DMS_MissionMarkerLoseDot_Type = "KIA"; // The marker type to show when a mission fails. Refer to: https://community.bistudio.com/wiki/cfgMarkers
  98. DMS_MissionMarkerWinDotTime = 30; // How many seconds the "win" mission dot will remain on the map
  99. DMS_MissionMarkerLoseDotTime = 30; // How many seconds the "lose" mission dot will remain on the map
  100. DMS_MissionMarkerWinDotColor = "ColorBlue"; // The color of the "win" marker dot
  101. DMS_MissionMarkerLoseDotColor = "ColorRed"; // The color of the "lose" marker dot
  102. /*Mission Marker settings*/
  103.  
  104. /*Mission Cleanup settings*/
  105. DMS_CompletedMissionCleanup = true; // Cleanup mission-spawned buildings and AI bodies after some time
  106. DMS_CompletedMissionCleanupTime = 3600; // Minimum time until mission-spawned buildings and AI are cleaned up
  107. DMS_CleanUp_PlayerNearLimit = 20; // Cleanup of an object is aborted if a player is this many meters close to the object
  108. DMS_AIVehCleanUpTime = 600; // Time until a destroyed AI vehicle is cleaned up.
  109. /*Mission Cleanup settings*/
  110.  
  111. /*Mission spawn location settings*/
  112. 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.
  113. DMS_PredefinedMissionLocations = [ // List of Preset/Predefined mission locations.
  114. /* List of positions:
  115. position1: [x_1,y_1,z_1],
  116. position2: [x_2,y_2,z_2],
  117. ...
  118. positionN: [x_N,y_N,z_N]
  119. */
  120.  
  121. ];
  122.  
  123. 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.
  124. /* List of arrays with position and weighted chance:
  125. [[x_1,y_1,z_1], chance_1],
  126. [[x_2,y_2,z_2], chance_2],
  127. ...
  128. [[x_N,y_N,z_N], chance_N]
  129. */
  130.  
  131. ];
  132. DMS_ThrottleBlacklists = true; // Whether or not to "throttle" the blacklist distance parameters in DMS_fnc_FindSafePos. This will reduce the values of the minimum
  133. //distances for some of the below parameters if several attempts have been made, but a suitable position was not yet found. This
  134. //should help with server performance drops when spawning a mission, as DMS_fnc_findSafePos is the most resource-intensive function.
  135. DMS_AttemptsUntilThrottle = 15; // How many attempts until the parameters are throttled.
  136. 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.
  137. DMS_MinThrottledDistance = 500; // The minimum distance to which it will throttle. If the throttled value is less than this value, then this value is used instead.
  138. DMS_PlayerNearBlacklist = 2000; // Missions won't spawn in a position this many meters close to a player
  139. DMS_SpawnZoneNearBlacklist = 2500; // Missions won't spawn in a position this many meters close to a spawn zone
  140. DMS_TraderZoneNearBlacklist = 2500; // Missions won't spawn in a position this many meters close to a trader zone
  141. DMS_MissionNearBlacklist = 2500; // Missions won't spawn in a position this many meters close to another mission
  142. DMS_WaterNearBlacklist = 500; // Missions won't spawn in a position this many meters close to water
  143. DMS_TerritoryNearBlacklist = 100; // Missions won't spawn in a position this many meters close to a territory flag. This is a resource intensive check, don't set this value too high!
  144. DMS_MixerNearBlacklist = 1000; // Missions won't spawn in a position this many meters close to a concrete mixer
  145. DMS_ContaminatedZoneNearBlacklist = 1000; // Missions won't spawn in a position this many meters close to a contaminated zone
  146. 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"
  147. DMS_MinDistFromWestBorder = 250; // Missions won't spawn in a position this many meters close to the western map border.
  148. DMS_MinDistFromEastBorder = 250; // Missions won't spawn in a position this many meters close to the easter map border.
  149. DMS_MinDistFromSouthBorder = 250; // Missions won't spawn in a position this many meters close to the southern map border.
  150. DMS_MinDistFromNorthBorder = 250; // Missions won't spawn in a position this many meters close to the northern map border.
  151. DMS_SpawnZoneMarkerTypes = [ // If you're using custom spawn zone markers, make sure you define them here. CASE SENSITIVE!!!
  152. "ExileSpawnZoneIcon"
  153. ];
  154. DMS_TraderZoneMarkerTypes = [ // If you're using custom trader markers, make sure you define them here. CASE SENSITIVE!!!
  155. "ExileTraderZoneIcon"
  156. ];
  157. DMS_MixerMarkerTypes = [ // If you're using custom concrete mixer map markers, make sure you define them here. CASE SENSITIVE!!!
  158. "ExileConcreteMixerZoneIcon"
  159. ];
  160. DMS_ContaminatedZoneMarkerTypes = [ // If you're using custom contaminated zone markers, make sure you define them here. CASE SENSITIVE!!!
  161. "ExileContaminatedZoneIcon"
  162. ];
  163. /*Mission spawn location settings*/
  164.  
  165. DMS_MinWaterDepth = 20; // Minimum depth of water that an underwater mission can spawn at.
  166.  
  167. /*Crate/Box settings*/
  168. DMS_HideBox = false; // "Hide" the box from being visible by players until the mission is completed.
  169. DMS_EnableBoxMoving = true; // Whether or not to allow the box to move and/or be lifted by choppers.
  170. DMS_SpawnBoxSmoke = true; // Spawn a smoke grenade on mission box upon misson completion during daytime
  171. DMS_DefaultSmokeClassname = "SmokeShellRed"; // Classname of the smoke you want to spawn.
  172. DMS_SpawnBoxIRGrenade = true; // Spawn an IR grenade on mission box upon misson completion during nighttime
  173. /*Crate/Box settings*/
  174.  
  175. /*Mine settings*/
  176. DMS_SpawnMinefieldForEveryMission = false; // Whether or not to spawn a minefield for every dynamic mission.
  177. DMS_SpawnMinesAroundMissions = true; // Whether or not to spawn mines around AI missions that have them.
  178. DMS_despawnMines_onCompletion = true; // Despawn mines spawned around missions when the mission is completed
  179. DMS_MineInfo_easy = [5,50]; // Mine info for "easy" missions. This will spawn 5 mines within a 50m radius.
  180. DMS_MineInfo_moderate = [10,50]; // Mine info for "moderate" missions. This will spawn 10 mines within a 50m radius.
  181. DMS_MineInfo_difficult = [15,75]; // Mine info for "difficult" missions. This will spawn 15 mines within a 75m radius.
  182. DMS_MineInfo_hardcore = [25,100]; // Mine info for "hardcore" missions. This will spawn 25 mines within a 100m radius.
  183. DMS_SpawnMineWarningSigns = true; // Whether or not to spawn mine warning signs around a minefield.
  184. 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.
  185. /*Mine settings*/
  186.  
  187. DMS_MinPlayerCount = 0; // Minimum number of players until mission start
  188. DMS_MinServerFPS = 5; // Minimum server FPS for missions to start
  189.  
  190. /*Mission notification settings*/
  191. DMS_PlayerNotificationTypes = [ // Notification types. Supported values are: ["dynamicTextRequest", "standardHintRequest", "systemChatRequest", "textTilesRequest", "ExileToasts"]. Details below.
  192. //"dynamicTextRequest", // You should use either "dynamicTextRequest" or "textTilesRequest", and I think "textTilesRequest" looks better, but this is less performance-intensive.
  193. //"standardHintRequest", // Hints are a bit wonky...
  194. //"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.
  195. //"systemChatRequest", // Always nice to show in chat so that players can scroll up to read the info if they need to.
  196. "ExileToasts" // Default notification type since Exile 0.98, see (http://www.exilemod.com/devblog/new-ingame-notifications/)
  197. ];
  198.  
  199. /*Exile Toasts Notification Settings*/
  200. DMS_ExileToasts_Title_Size = 22; // Size for Client Exile Toasts mission titles.
  201. DMS_ExileToasts_Title_Font = "puristaMedium"; // Font for Client Exile Toasts mission titles.
  202. DMS_ExileToasts_Message_Color = "#FFFFFF"; // Exile Toasts color for "ExileToast" client notification type.
  203. DMS_ExileToasts_Message_Size = 19; // Exile Toasts size for "ExileToast" client notification type.
  204. DMS_ExileToasts_Message_Font = "PuristaLight"; // Exile Toasts font for "ExileToast" client notification type.
  205. /*Exile Toasts Notification Settings*/
  206.  
  207. /*Dynamic Text Notification Settings*/
  208. DMS_dynamicText_Duration = 7; // Number of seconds that the message will last on the screen.
  209. DMS_dynamicText_FadeTime = 1.5; // Number of seconds that the message will fade in/out (does not affect duration).
  210. DMS_dynamicText_Title_Size = 1.2; // Size for Client Dynamic Text mission titles.
  211. DMS_dynamicText_Title_Font = "puristaMedium"; // Font for Client Dynamic Text mission titles.
  212. DMS_dynamicText_Message_Color = "#FFFFFF"; // Dynamic Text color for "dynamicTextRequest" client notification type.
  213. DMS_dynamicText_Message_Size = 0.65; // Dynamic Text size for "dynamicTextRequest" client notification type.
  214. DMS_dynamicText_Message_Font = "OrbitronMedium"; // Dynamic Text font for "dynamicTextRequest" client notification type.
  215. /*Dynamic Text Notification Settings*/
  216.  
  217. /*Standard Hint Notification Settings*/
  218. DMS_standardHint_Title_Size = 2; // Size for Client Standard Hint mission titles.
  219. DMS_standardHint_Title_Font = "puristaMedium"; // Font for Client Standard Hint mission titles.
  220. DMS_standardHint_Message_Color = "#FFFFFF"; // Standard Hint color for "standardHintRequest" client notification type.
  221. DMS_standardHint_Message_Size = 1; // Standard Hint size for "standardHintRequest" client notification type.
  222. DMS_standardHint_Message_Font = "OrbitronMedium"; // Standard Hint font for "standardHintRequest" client notification type.
  223. /*Standard Hint Notification Settings*/
  224.  
  225. /*Text Tiles Notification Settings*/
  226. DMS_textTiles_Duration = 7; // Number of seconds that the message will last on the screen.
  227. DMS_textTiles_FadeTime = 1.5; // Number of seconds that the message will fade in/out (does not affect duration).
  228. DMS_textTiles_Title_Size = 2.3; // Size for Client Text Tiles mission titles.
  229. DMS_textTiles_Title_Font = "puristaMedium"; // Font for Client Text Tiles mission titles.
  230. DMS_textTiles_Message_Color = "#FFFFFF"; // Text Tiles color for "textTilesRequest" client notification type.
  231. DMS_textTiles_Message_Size = 1.25; // Text Tiles size for "textTilesRequest" client notification type.
  232. DMS_textTiles_Message_Font = "OrbitronMedium"; // Text Tiles font for "textTilesRequest" client notification type.
  233. /*Text Tiles Notification Settings*/
  234.  
  235. /*Mission notification settings*/
  236.  
  237. DMS_RandomBanditMissionsOnStart = 0; // Number of (random) bandit missions to spawn when the server starts, just so players don't have to wait for missions to spawn.
  238. DMS_BanditMissionTypes = [ // List of missions with spawn chances. If they add up to 100%, they represent the percentage chance each one will spawn
  239. ["bandits",3],
  240. ["bauhaus",3],
  241. ["beertransport",3],
  242. ["behindenemylines",3],
  243. ["blackhawkdown",3],
  244. ["cardealer",3],
  245. ["construction",3],
  246. ["donthasslethehoff",3],
  247. ["foodtransport",3],
  248. ["guntransport",3],
  249. ["humanitarian",3],
  250. ["lost_battalion",3],
  251. ["medical",3],
  252. ["mercbase",2],
  253. ["mercenaries",3],
  254. ["nedbuilding1_mission",3],
  255. ["nedcar_mission",4],
  256. ["nedguns1_mission",3],
  257. ["nedhatchback_mission",3],
  258. ["nedhunter_mission",2],
  259. ["nedifrit_mission",2],
  260. ["nedlittlebird_mission",2],
  261. ["nedmedical1_mission",3],
  262. ["nedoffroad_mission",3],
  263. ["nedresearch_mission",3],
  264. ["nedsnipercamp_mission",3],
  265. ["nedstrider_mission",2],
  266. ["nedural_mission",3],
  267. ["roguenavyseals",3],
  268. ["thieves",3],
  269. ["nedm113_mission",3],
  270. ["nedgaz_mission",3],
  271. ["walmart",3]
  272. ];
  273.  
  274.  
  275. DMS_StaticMissionTypes = [
  276. ["AnkesTanke",1],
  277. ["GasLaden",1]
  278. ];
  279.  
  280. DMS_SpecialMissions = [ // List of special missions with restrictions. Each element must be defined as [mission<STRING>, minPlayers<SCALAR>, maxPlayers<SCALAR>, timesPerRestart<SCALAR>, _timeBetween<SCALAR>].
  281. //["specops",15,60,2,900] //<-- Example for a mission named "specops.sqf" that must be placed in the "special" folder. It will only spawn when there are at least 15 players, less than 60 players, it will only spawn up to twice per restart, and at least 900 seconds must pass before another instance of the mission can spawn.
  282. ];
  283.  
  284. 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.
  285. //"saltflatsbase", //<--Example (already imported by default on Altis)
  286. //"slums_objects" //<--Example (already imported by default on Altis)
  287. ];
  288.  
  289. DMS_BanditMissionsOnServerStart = [
  290. //"construction" //<-- Example
  291. ];
  292.  
  293. DMS_StaticMissionsOnServerStart = [ // List of STATIC missions with spawn chances.
  294. //"saltflats" //<--Example
  295. //"slums" //<--Example
  296. //"occupation" //<--Example
  297. //"sectorB" //<--Example for Taviana
  298. ];
  299.  
  300.  
  301.  
  302. DMS_findSafePosBlacklist = [ // This list defines areas where missions WILL NOT spawn. For position blacklist info refer to: http://www.exilemod.com/topic/61-dms-defents-mission-system/?do=findComment&comment=31190
  303. // There are examples in the altis map config (it blacklists the salt flats) and in the tavi/taviana map configs.
  304.  
  305. //[[2350,4680],100] // This random example blacklists any position within 100 meters of coordinates "[2350,4680]"
  306. ];
  307. /* Mission System Settings */
  308.  
  309.  
  310. /* AI Settings */
  311. DMS_AI_Classname = "O_Soldier_unarmed_F"; // Since some of you wanted this...
  312.  
  313. DMS_AI_NamingType = 0; // This specifies the "naming scheme" for the AI. 0 corresponds with the default ArmA names; 1 means you want a DMS name (eg: [DMS BANDIT SOLDIER 123]); 2 means you want to generate a name from a list of first and last names (DMS_AI_FirstNames, DMS_AI_LastNames).
  314. DMS_AI_FirstNames = [ // List of "first names" that an AI can have. Only used when DMS_AI_NamingType = 2.
  315. "Adam",
  316. "Benjamin",
  317. "Charles",
  318. "David",
  319. "Dave",
  320. "Steve",
  321. "Bob",
  322. "Andrew",
  323. "Will",
  324. "Nick",
  325. "Adrian",
  326. "Mark",
  327. "Rob",
  328. "George",
  329. "Harry",
  330. "John",
  331. "Thomas",
  332. "Dominik",
  333. "Ben",
  334. "Villiam",
  335. "Graham",
  336. "Donnald",
  337. "Richard",
  338. "James",
  339. "Edvard",
  340. "Mohamed",
  341. "Grogorij",
  342. "Vladimir",
  343. "Vasilij",
  344. "Valerij",
  345. "Boris",
  346. "Viktor",
  347. "Artur",
  348. "Ilja",
  349. "Josef",
  350. "Anwar",
  351. "Rowan",
  352. "Harrison",
  353. "Bruce",
  354. "Arnold",
  355. "Alexandr",
  356. "Marek",
  357. "Tomáš",
  358. "Ondřej",
  359. "Josef",
  360. "Martin",
  361. "Barack",
  362. "Adolf",
  363. "Václav",
  364. "Miloš",
  365. "Eric",
  366. "Alex",
  367. "Nikita",
  368. "Daniel",
  369. "Sasha",
  370. "Sergey",
  371. "Dmitry",
  372. "Anton",
  373. "Jakub",
  374. "Vlad",
  375. "Maxim",
  376. "Oleg",
  377. "Denis",
  378. "Wojtek"
  379. // etc.
  380. ];
  381. DMS_AI_LastNames = [ // List of "last names" that an AI can have. Only used when DMS_AI_NamingType = 2.
  382. "Smith",
  383. "Johnson",
  384. "Davids",
  385. "Jackson",
  386. "Jobs",
  387. "Andrews",
  388. "Woods",
  389. "White",
  390. "Taylor",
  391. "Walker",
  392. "Dimitrov",
  393. "Hansen",
  394. "Larsen",
  395. "Ivanov",
  396. "Virtanen",
  397. "Pavlov",
  398. "Tamm",
  399. "Horak",
  400. "Vesely",
  401. "Dvorak",
  402. "Horvat",
  403. "Novak",
  404. "Petrov",
  405. "Williams",
  406. "Clarke",
  407. "Jones",
  408. "Willis",
  409. "Medvěděv",
  410. "Putin",
  411. "Norris",
  412. "Bush",
  413. "Trump",
  414. "Lee",
  415. "Datlov",
  416. "Kovalsky",
  417. "Protopov",
  418. "Atkinson",
  419. "Stalone",
  420. "Rock",
  421. "Batista",
  422. "Dragunov",
  423. "Snow",
  424. "Stark",
  425. "Hanuš",
  426. "Svoboda",
  427. "Novotný",
  428. "Černý",
  429. "Vániš",
  430. "Obbama",
  431. "Brown"
  432. // etc.
  433. ];
  434.  
  435. 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)
  436. 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)
  437. DMS_Show_Kill_Rank_Notification = true;
  438. DMS_Show_Party_Kill_Notification = true; // Whether or not to show in chat when a party member kills an AI.
  439.  
  440. DMS_Spawn_AI_With_Money = true; // Whether or not to spawn AI with money that can be looted from the body.
  441. DMS_AIMoney_PopulationMultiplier = 5; // This determines how much EXTRA money an AI will have on his body. For example, setting this to 5 and having a server population of 30 means the AI will have an extra 150 poptabs on the body. Set to 0 to disable.
  442.  
  443. DMS_GiveMoneyToPlayer_OnAIKill = true; // Whether or not to give money directly to players when they kill AI (old method of giving money).
  444. DMS_GiveRespectToPlayer_OnAIKill = true; // Whether or not to give respect to players when they kill AI.
  445.  
  446. DMS_Bandit_Soldier_MoneyGain = 50; // The amount of Poptabs gained for killing a bandit soldier
  447. DMS_Bandit_Soldier_RepGain = 50; // The amount of Respect gained for killing a bandit soldier
  448. DMS_Bandit_Soldier_RankGain = 15;
  449. DMS_Bandit_Soldier_SpawnMoney = 100; // The amount of Poptabs carried by a bandit soldier
  450.  
  451. DMS_Bandit_Static_MoneyGain = 75; // The amount of Poptabs gained for killing a bandit static gunner
  452. DMS_Bandit_Static_RepGain = 50; // The amount of Respect gained for killing a bandit static gunner
  453. DMS_Bandit_Static_RankGain = 30;
  454. DMS_Bandit_Static_SpawnMoney = 100; // The amount of Poptabs carried by a bandit static gunner
  455.  
  456. DMS_Bandit_Vehicle_MoneyGain = 100; // The amount of Poptabs gained for killing a bandit vehicle crew member
  457. DMS_Bandit_Vehicle_RepGain = 100; // The amount of Respect gained for killing a bandit vehicle crew member
  458. DMS_Bandit_Vehicle_RankGain = 50;
  459. DMS_Bandit_Vehicle_SpawnMoney = 100; // The amount of Poptabs carried by a bandit vehicle crew member
  460.  
  461. /* DonkeyPunchDMS Custom Settings for Hero AI*/
  462. DMS_Hero_Soldier_MoneyGain = 100; // The amount of Poptabs gained for killing a hero soldier
  463. DMS_Hero_Soldier_RepGain = 20; // The amount of Respect gained for killing a hero soldier
  464. DMS_Hero_Soldier_RankGain = -30;
  465. DMS_Hero_Soldier_SpawnMoney = 100; // The amount of Poptabs carried by a hero soldier
  466.  
  467. DMS_Hero_Static_MoneyGain = 120; // The amount of Poptabs gained for killing a hero static gunner
  468. DMS_Hero_Static_RepGain = 30; // The amount of Respect gained for killing a hero static gunner
  469. DMS_Hero_Static_RankGain = -60;
  470. DMS_Hero_Static_SpawnMoney = 120; // The amount of Poptabs carried by a hero static gunner
  471.  
  472. DMS_Hero_Vehicle_MoneyGain = 200; // The amount of Poptabs gained for killing a hero vehicle crew member
  473. DMS_Hero_Vehicle_RepGain = 50; // The amount of Respect gained for killing a hero vehicle crew member
  474. DMS_Hero_Vehicle_RankGain = -100;
  475. DMS_Hero_Vehicle_SpawnMoney = 200; // The amount of Poptabs carried by a hero vehicle crew member
  476. /* DonkeyPunchDMS Custom Settings for Survivor AI*/
  477. DMS_Survivor_Soldier_MoneyGain = -100; // The amount of Poptabs gained for killing a Survivor soldier
  478. DMS_Survivor_Soldier_RepGain = -100; // The amount of Respect gained for killing a Survivor soldier
  479. DMS_Survivor_Soldier_RankGain = -250;
  480. DMS_Survivor_Soldier_SpawnMoney = 0; // The amount of Poptabs carried by a Survivor soldier
  481.  
  482. DMS_Survivor_Static_MoneyGain = -100; // The amount of Poptabs gained for killing a Survivor static gunner
  483. DMS_Survivor_Static_RepGain = -100; // The amount of Respect gained for killing a Survivor static gunner
  484. DMS_Survivor_Static_RankGain = -400;
  485. DMS_Survivor_Static_SpawnMoney = 0; // The amount of Poptabs carried by a Survivor static gunner
  486.  
  487. DMS_Survivor_Vehicle_MoneyGain = -500; // The amount of Poptabs gained for killing a Survivor vehicle crew member
  488. DMS_Survivor_Vehicle_RepGain = -100; // The amount of Respect gained for killing a Survivor vehicle crew member
  489. DMS_Survivor_Vehicle_RankGain = -600;
  490. DMS_Survivor_Vehicle_SpawnMoney = 0; // The amount of Poptabs carried by a Survivor vehicle crew member
  491.  
  492. DMS_AIKill_DistanceBonusMinDistance = 100; // Minimum distance from the player to the AI to apply the distance bonus.
  493. 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.
  494.  
  495. DMS_Diff_RepOrTabs_on_roadkill = false; // 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.
  496. DMS_Bandit_Soldier_RoadkillMoney = 20; // The amount of Poptabs gained/lost for running over a bandit soldier
  497. DMS_Bandit_Soldier_RoadkillRep = 30; // The amount of Respect gained/lost for running over a bandit soldier
  498. DMS_Bandit_Soldier_RoadkillRank = 20;
  499. DMS_Bandit_Static_RoadkillMoney = 200; // The amount of Poptabs gained/lost for running over a bandit static gunner
  500. DMS_Bandit_Static_RoadkillRep = 30; // The amount of Respect gained/lost for running over a bandit static gunner
  501. DMS_Bandit_Static_RoadkillRank = 30;
  502. DMS_Bandit_Vehicle_RoadkillMoney = 20; // The amount of Poptabs gained/lost for running over a bandit vehicle crew member
  503. DMS_Bandit_Vehicle_RoadkillRep = 30; // The amount of Respect gained/lost for running over a bandit vehicle crew member
  504. DMS_Bandit_Vehicle_RoadkillRank = 50;
  505. /* DonkeyPunchDMS Custom RoadKill Settings for Hero AI*/
  506. DMS_Hero_Soldier_RoadkillMoney = 20; // The amount of Poptabs gained/lost for running over a hero soldier
  507. DMS_Hero_Soldier_RoadkillRep = 10; // The amount of Respect gained/lost for running over a hero soldier
  508. DMS_Hero_Soldier_RoadkillRank = -40;
  509. DMS_Hero_Static_RoadkillMoney = 20; // The amount of Poptabs gained/lost for running over a hero static gunner
  510. DMS_Hero_Static_RoadkillRep = 10; // The amount of Respect gained/lost for running over a hero static gunner
  511. DMS_Hero_Static_RoadkillRank = -60;
  512. DMS_Hero_Vehicle_RoadkillMoney = 20; // The amount of Poptabs gained/lost for running over a hero vehicle crew member
  513. DMS_Hero_Vehicle_RoadkillRep = 10; // The amount of Respect gained/lost for running over a hero vehicle crew member
  514. DMS_Hero_Vehicle_RoadkillRank = -100;
  515. /* DonkeyPunchDMS Custom Roadkill Settings for Survivor AI*/
  516. DMS_Survivor_Soldier_RoadkillMoney = -200; // The amount of Poptabs gained/lost for running over a Survivor soldier
  517. DMS_Survivor_Soldier_RoadkillRep = -200; // The amount of Respect gained/lost for running over a Survivor soldier
  518. DMS_Survivor_Soldier_RoadkillRank = -200;
  519. DMS_Survivor_Static_RoadkillMoney = -200; // The amount of Poptabs gained/lost for running over a Survivor static gunner
  520. DMS_Survivor_Static_RoadkillRep = -200; // The amount of Respect gained/lost for running over a Survivor static gunner
  521. DMS_Survivor_Static_RoadkillRank = -200;
  522. DMS_Survivor_Vehicle_RoadkillMoney = -500; // The amount of Poptabs gained/lost for running over a Survivor vehicle crew member
  523. DMS_Survivor_Vehicle_RoadkillRep = -100; // The amount of Respect gained/lost for running over a Survivor vehicle crew member
  524. DMS_Survivor_Vehicle_RoadkillRank = -100;
  525.  
  526. DMS_banditSide = EAST; // The side (team) that AI Bandits will spawn on
  527. /* DonkeyPunchDMS Custom Side Factions */
  528. DMS_heroSide = WEST; // The side (team) that AI Heros will spawn on
  529. DMS_survivorSide = CIV; // The side (team) that AI Survivor will spawn on
  530.  
  531. DMS_clear_AI_body = false; // Clear AI body as soon as they die
  532. DMS_clear_AI_body_chance = 0; // Percentage chance that AI bodies will be cleared when they die
  533. DMS_ai_disable_ramming_damage = true; // Disables damage due to ramming into AI. !!!NOTE: THIS WILL NOT BE RELIABLE WITH "DMS_ai_offload_to_client"!!!
  534. DMS_remove_roadkill = false; // Remove gear from AI bodies that are roadkilled
  535. DMS_remove_roadkill_chance = 0; // Percentage chance that roadkilled AI bodies will be deleted
  536. DMS_explode_onRoadkill = false; // 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 ;)
  537. DMS_RemoveNVG = false; // Remove NVGs from AI bodies
  538.  
  539. 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.
  540. 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.
  541.  
  542. DMS_ai_offload_to_client = true; // Offload spawned AI groups to random clients. Helps with server performance.
  543. DMS_ai_offload_Only_DMS_AI = true; // Don't set this to false unless you know what you're doing.
  544. DMS_ai_offload_notifyClient = false; // Notify the client when AI has been offloaded to the client.
  545.  
  546. DMS_ai_allowFreezing = false; // Whether or not to "freeze" AI that are a certain distance away from players (and therefore inactive).
  547. DMS_ai_freeze_Only_DMS_AI = false; // Whether or not to "freeze" AI that are not spawned by DMS.
  548. DMS_ai_freezingDistance = 3500; // If there are no players within this distance of the leader of an AI group, then the AI group will be "frozen".
  549. DMS_ai_unfreezingDistance = 3500; // If there are players within this distance of the leader of an AI group, then the AI group will be "un-frozen".
  550. DMS_ai_offloadOnUnfreeze = false; // Whether or not to offload AI to clients once they have been "un-frozen". NOTE: This config will be ignored if "DMS_ai_offload_to_client" is set to false.
  551. DMS_ai_freezeCheckingDelay = 0; // How often (in seconds) DMS will check whether to freeze/un-freeze AI.
  552. DMS_ai_freezeOnSpawn = false; // Whether or not to freeze an AI group when initially spawned.
  553.  
  554. DMS_ai_share_info = false; // Share info about killer
  555. DMS_ai_share_info_distance = 25; // The distance killer's info will be shared to other AI
  556.  
  557. DMS_ai_nighttime_accessory_chance = 75; // Percentage chance that AI will have a flashlight or laser pointer on their guns if spawned during nighttime
  558. DMS_ai_enable_water_equipment = true; // Enable/disable overriding default weapons of an AI if it spawns on/in water
  559.  
  560. // https://community.bistudio.com/wiki/AI_Sub-skills#general
  561. 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
  562. 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
  563. 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
  564. 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
  565. 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
  566. 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
  567. DMS_ai_skill_randomDifficult = ["hardcore","hardcore","difficult","difficult","difficult"]; // 60% chance for "difficult", 40% chance for "hardcore" AI.
  568. DMS_ai_skill_randomEasy = ["moderate","moderate","easy","easy","easy"]; // 60% chance for "easy", 40% chance for "moderate" AI.
  569. DMS_ai_skill_randomIntermediate = ["difficult","difficult","moderate","moderate","moderate"]; // 60% chance for "moderate", 40% chance for "difficult" AI.
  570. DMS_AI_WP_Radius_easy = 20; // Waypoint radius for "easy" AI.
  571. DMS_AI_WP_Radius_moderate = 30; // Waypoint radius for "moderate" AI.
  572. DMS_AI_WP_Radius_difficult = 50; // Waypoint radius for "difficult" AI.
  573. DMS_AI_WP_Radius_hardcore = 75; // Waypoint radius for "hardcore" AI.
  574. DMS_AI_AimCoef_easy = 0.9; // "Custom Aim Coefficient" (weapon sway multiplier) for "easy" AI
  575. DMS_AI_AimCoef_moderate = 0.65; // "Custom Aim Coefficient" (weapon sway multiplier) for "moderate" AI
  576. DMS_AI_AimCoef_difficult = 0.4; // "Custom Aim Coefficient" (weapon sway multiplier) for "difficult" AI
  577. DMS_AI_AimCoef_hardcore = 0.05; // "Custom Aim Coefficient" (weapon sway multiplier) for "hardcore" AI
  578. DMS_AI_EnableStamina_easy = true; // Whether or not to keep the stamina system for "easy" AI.
  579. DMS_AI_EnableStamina_moderate = true; // Whether or not to keep the stamina system for "moderate" AI.
  580. DMS_AI_EnableStamina_difficult = false; // Whether or not to keep the stamina system for "difficult" AI.
  581. DMS_AI_EnableStamina_hardcore = false; // Whether or not to keep the stamina system for "hardcore" AI.
  582. DMS_AI_WP_Radius_base = 5; // Waypoint radius for AI in bases.
  583. DMS_AI_WP_Radius_heli = 500; // Waypoint radius for AI in helis.
  584.  
  585. 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.
  586.  
  587. DMS_AI_destroyStaticWeapon = true; // Whether or not to destroy static HMGs after AI death.
  588. DMS_AI_destroyStaticWeapon_chance = 80; // Percent chance that a static weapon will be destroyed (only applied if "DMS_AI_destroyStaticWeapon" is true)
  589.  
  590. DMS_static_weapons = [ // Static weapons for AI
  591. "O_HMG_01_high_F"
  592. ];
  593.  
  594. DMS_ai_default_items = [ // Toolbelt items each AI will spawn with
  595. "ItemWatch",
  596. "ItemMap",
  597. "ItemCompass",
  598. "ItemRadio"
  599. ];
  600.  
  601. DMS_ai_BipodList = [
  602. "bipod_01_F_blk",
  603. "bipod_01_F_mtp",
  604. "bipod_01_F_snd",
  605. "bipod_02_F_blk",
  606. "bipod_02_F_hex",
  607. "bipod_02_F_tan",
  608. "bipod_03_F_blk",
  609. "bipod_03_F_oli"
  610. ];
  611.  
  612. //Assault Class
  613. DMS_assault_weps = [ // Assault Rifles
  614. #ifdef GIVE_AI_APEX_WEAPONS
  615. "arifle_AK12_F",
  616. "arifle_ARX_ghex_F",
  617. "arifle_CTAR_blk_F",
  618. "arifle_SPAR_01_khk_F",
  619. "arifle_SPAR_03_khk_F",
  620. #endif
  621. "arifle_Katiba_GL_F",
  622. "arifle_MX_GL_Black_F",
  623. "arifle_Mk20_GL_F",
  624. "arifle_TRG21_GL_F",
  625. "arifle_Katiba_F",
  626. "arifle_MX_Black_F",
  627. "arifle_TRG21_F",
  628. "arifle_TRG20_F",
  629. "arifle_Mk20_plain_F",
  630. "arifle_Mk20_F",
  631. "Exile_Weapon_AK107",
  632. "Exile_Weapon_AK107_GL",
  633. "Exile_Weapon_AK74_GL",
  634. "Exile_Weapon_AK47",
  635. "Exile_Weapon_AKS_Gold"
  636. ];
  637. DMS_assault_pistols = [ // Pistols for Assault Class (Set to empty array if you don't want to give them any pistols)
  638. "hgun_ACPC2_F",
  639. "hgun_Rook40_F",
  640. "hgun_P07_F",
  641. "hgun_Pistol_heavy_01_F",
  642. "hgun_Pistol_heavy_02_F",
  643. "Exile_Weapon_Colt1911",
  644. "Exile_Weapon_Makarov",
  645. "Exile_Weapon_Taurus",
  646. "Exile_Weapon_TaurusGold"
  647. ];
  648. DMS_assault_optics = [ // Optics for Assault Class
  649. #ifdef GIVE_AI_APEX_GEAR
  650. "optic_ERCO_khk_F",
  651. "optic_Holosight_blk_F",
  652. #endif
  653. "optic_Arco",
  654. "optic_Hamr",
  655. "optic_Aco",
  656. "optic_Holosight",
  657. "optic_MRCO",
  658. "optic_DMS"
  659. ];
  660. DMS_assault_optic_chance = 75; // Percentage chance that an Assault Class AI will get an optic
  661. DMS_assault_bipod_chance = 25; // Percentage chance that an Assault Class AI will get a bipod
  662. DMS_assault_suppressor_chance = 25; // Percentage chance that an Assault Class AI will get a suppressor
  663.  
  664. DMS_assault_items = [ // Items for Assault Class AI (Loot stuff that goes in uniform/vest/backpack)
  665. "Exile_Item_InstaDoc",
  666. "Exile_Item_BBQSandwich",
  667. "Exile_Item_Energydrink"
  668. ];
  669. DMS_assault_equipment = [ // Equipment for Assault Class AI (stuff that goes in toolbelt slots)
  670. "ItemGPS"
  671. ];
  672. DMS_assault_RandItemCount = 2; // How many random items to add to the AI's inventory.
  673. DMS_assault_RandItems = [ // The random items that will be added to the AI's inventory.
  674. "Exile_Item_Catfood_Cooked",
  675. "Exile_Item_Surstromming_Cooked",
  676. "Exile_Item_PowerDrink",
  677. "Exile_Item_EnergyDrink",
  678. "Exile_Item_Vishpirin",
  679. "Exile_Item_Bandage"
  680. ];
  681. DMS_assault_helmets = [ // Helmets for Assault Class
  682. #ifdef GIVE_AI_APEX_GEAR
  683. "H_HelmetB_TI_tna_F",
  684. "H_HelmetB_Enh_tna_F",
  685. "H_HelmetSpecO_ghex_F",
  686. "H_HelmetCrew_O_ghex_F",
  687. #endif
  688. "H_HelmetSpecB_paint1",
  689. "H_HelmetIA_camo",
  690. "H_HelmetLeaderO_ocamo",
  691. "H_HelmetLeaderO_oucamo"
  692. ];
  693. DMS_assault_clothes = [ // Uniforms for Assault Class
  694. #ifdef GIVE_AI_APEX_GEAR
  695. "U_B_T_Soldier_F",
  696. "U_B_T_Soldier_SL_F",
  697. "U_B_CTRG_Soldier_F",
  698. "U_O_V_Soldier_Viper_F",
  699. "U_I_C_Soldier_Bandit_2_F",
  700. "U_I_C_Soldier_Camo_F",
  701. "U_B_CTRG_Soldier_urb_1_F",
  702. #endif
  703. "U_O_CombatUniform_ocamo",
  704. "U_O_PilotCoveralls",
  705. //"U_B_Wetsuit",
  706. "U_BG_Guerilla3_1",
  707. "U_BG_Guerilla2_3",
  708. "U_BG_Guerilla2_2",
  709. "U_BG_Guerilla1_1",
  710. "U_BG_Guerrilla_6_1",
  711. "U_IG_Guerilla3_2",
  712. "U_B_SpecopsUniform_sgg",
  713. "U_I_OfficerUniform",
  714. "U_B_CTRG_3",
  715. "U_I_G_resistanceLeader_F"
  716. ];
  717. DMS_assault_vests = [ // Vests for Assault Class
  718. #ifdef GIVE_AI_APEX_GEAR
  719. "V_TacChestrig_grn_F",
  720. "V_PlateCarrier2_tna_F",
  721. "V_PlateCarrierSpec_tna_F",
  722. "V_PlateCarrierGL_tna_F",
  723. "V_TacVest_gen_F",
  724. "V_PlateCarrier1_rgr_noflag_F",
  725. #endif
  726. "V_PlateCarrierH_CTRG",
  727. "V_PlateCarrierSpec_rgr",
  728. "V_PlateCarrierGL_blk",
  729. "V_PlateCarrierGL_mtp",
  730. "V_PlateCarrierGL_rgr",
  731. "V_PlateCarrierSpec_blk",
  732. "V_PlateCarrierSpec_mtp",
  733. "V_PlateCarrierL_CTRG",
  734. "V_TacVest_blk_POLICE",
  735. "V_PlateCarrierIA2_dgtl"
  736. ];
  737. DMS_assault_backpacks = [ // Backpacks for Assault Class
  738. #ifdef GIVE_AI_APEX_GEAR
  739. "B_Bergen_tna_F",
  740. "B_FieldPack_ghex_F",
  741. "B_ViperLightHarness_khk_F",
  742. #endif
  743. "B_Bergen_rgr",
  744. "B_Carryall_oli",
  745. "B_Kitbag_mcamo",
  746. "B_Carryall_cbr",
  747. "B_FieldPack_oucamo",
  748. "B_FieldPack_cbr",
  749. "B_Bergen_blk"
  750. ];
  751.  
  752. //Machine Gun Class
  753. DMS_MG_weps = [ // Machine Guns
  754. #ifdef GIVE_AI_MARKSMAN_DLC_WEAPONS
  755. "MMG_01_hex_F",
  756. "MMG_02_black_F",
  757. #endif
  758.  
  759. #ifdef GIVE_AI_APEX_WEAPONS
  760. "LMG_03_F",
  761. #endif
  762. "LMG_Zafir_F",
  763. "LMG_Mk200_F",
  764. "arifle_MX_SW_Black_F",
  765. "Exile_Weapon_RPK",
  766. "Exile_Weapon_PKP"
  767. ];
  768. DMS_MG_pistols = [ // Pistols for Assault Class (Set to empty array if you don't want to give them any pistols)
  769. "hgun_ACPC2_F",
  770. "hgun_Rook40_F",
  771. "hgun_P07_F",
  772. "hgun_Pistol_heavy_01_F",
  773. "hgun_Pistol_heavy_02_F",
  774. "Exile_Weapon_Colt1911",
  775. "Exile_Weapon_Makarov",
  776. "Exile_Weapon_Taurus",
  777. "Exile_Weapon_TaurusGold"
  778. ];
  779. DMS_MG_optics = [ // Optics for MG Class
  780. #ifdef GIVE_AI_APEX_GEAR
  781. "optic_ERCO_khk_F",
  782. "optic_DMS_ghex_F",
  783. "optic_Arco_blk_F",
  784. #endif
  785. "optic_Hamr",
  786. "optic_Aco",
  787. "optic_Holosight",
  788. "optic_MRCO"
  789. ];
  790. DMS_MG_optic_chance = 50; // Percentage chance that an MG Class AI will get an optic
  791. DMS_MG_bipod_chance = 90; // Percentage chance that an MG Class AI will get a bipod
  792. DMS_MG_suppressor_chance = 10; // Percentage chance that an MG Class AI will get a suppressor
  793.  
  794. DMS_MG_items = [ // Items for MG Class AI (Loot stuff that goes in uniform/vest/backpack)
  795. "Exile_Item_InstaDoc",
  796. "Exile_Item_Catfood_Cooked",
  797. "Exile_Item_PlasticBottleFreshWater",
  798. "Exile_Item_CookingPot"
  799. ];
  800. DMS_MG_equipment = [ // Equipment for MG Class AI (stuff that goes in toolbelt slots)
  801. "Binocular"
  802. ];
  803. DMS_MG_RandItemCount = 3; // How many random items to add to the AI's inventory.
  804. DMS_MG_RandItems = [ // The random items that will be added to the AI's inventory.
  805. "Exile_Item_EMRE",
  806. "Exile_Item_Surstromming_Cooked",
  807. "Exile_Item_PowerDrink",
  808. "Exile_Item_PlasticBottleCoffee",
  809. "Exile_Item_Vishpirin",
  810. "Exile_Item_Instadoc"
  811. ];
  812. DMS_MG_helmets = [ // Helmets for MG Class
  813. #ifdef GIVE_AI_APEX_GEAR
  814. "H_HelmetB_TI_tna_F",
  815. "H_HelmetB_Enh_tna_F",
  816. "H_HelmetSpecO_ghex_F",
  817. "H_HelmetLeaderO_ghex_F",
  818. "H_HelmetCrew_O_ghex_F",
  819. #endif
  820. "H_PilotHelmetHeli_I",
  821. "H_PilotHelmetHeli_O",
  822. "H_PilotHelmetFighter_I",
  823. "H_PilotHelmetFighter_O",
  824. "H_HelmetCrew_O",
  825. "H_CrewHelmetHeli_I",
  826. "H_HelmetSpecB_paint1",
  827. "H_HelmetIA_camo",
  828. "H_HelmetLeaderO_ocamo",
  829. "H_HelmetLeaderO_oucamo"
  830. ];
  831. DMS_MG_clothes = [ // Uniforms for MG Class
  832. #ifdef GIVE_AI_APEX_GEAR
  833. "U_B_T_Soldier_F",
  834. "U_B_T_Soldier_SL_F",
  835. "U_B_CTRG_Soldier_F",
  836. "U_O_V_Soldier_Viper_F",
  837. "U_I_C_Soldier_Bandit_2_F",
  838. "U_I_C_Soldier_Camo_F",
  839. "U_B_CTRG_Soldier_urb_1_F",
  840. #endif
  841. "U_O_CombatUniform_ocamo",
  842. "U_O_PilotCoveralls",
  843. //"U_B_Wetsuit",
  844. "U_BG_Guerilla3_1",
  845. "U_BG_Guerilla2_3",
  846. "U_BG_Guerilla2_2",
  847. "U_BG_Guerilla1_1",
  848. "U_BG_Guerrilla_6_1",
  849. "U_IG_Guerilla3_2",
  850. "U_B_SpecopsUniform_sgg",
  851. "U_I_OfficerUniform",
  852. "U_B_CTRG_3",
  853. "U_I_G_resistanceLeader_F"
  854. ];
  855. DMS_MG_vests = [ // Vests for MG Class
  856. #ifdef GIVE_AI_APEX_GEAR
  857. "V_TacChestrig_grn_F",
  858. "V_PlateCarrier2_tna_F",
  859. "V_PlateCarrierSpec_tna_F",
  860. "V_PlateCarrierGL_tna_F",
  861. "V_TacVest_gen_F",
  862. "V_PlateCarrier1_rgr_noflag_F",
  863. #endif
  864. "V_PlateCarrierH_CTRG",
  865. "V_PlateCarrierSpec_rgr",
  866. "V_PlateCarrierGL_blk",
  867. "V_PlateCarrierGL_mtp",
  868. "V_PlateCarrierGL_rgr",
  869. "V_PlateCarrierSpec_blk",
  870. "V_PlateCarrierSpec_mtp",
  871. "V_PlateCarrierL_CTRG",
  872. "V_TacVest_blk_POLICE",
  873. "V_PlateCarrierIA2_dgtl",
  874. "V_HarnessO_brn",
  875. "V_HarnessO_gry"
  876. ];
  877. DMS_MG_backpacks = [ // Backpacks for MG Class
  878. #ifdef GIVE_AI_APEX_GEAR
  879. "B_Bergen_tna_F",
  880. "B_Carryall_ghex_F",
  881. "B_ViperHarness_ghex_F",
  882. "B_ViperLightHarness_ghex_F",
  883. #endif
  884. "B_Bergen_rgr",
  885. "B_Carryall_oli",
  886. "B_Kitbag_mcamo",
  887. "B_Carryall_cbr",
  888. "B_Bergen_mcamo_F",
  889. "B_Bergen_dgtl_F",
  890. "B_Bergen_hex_F",
  891. "B_Bergen_tna_F",
  892. "B_Bergen_blk"
  893. ];
  894.  
  895. //Sniper Class
  896. DMS_sniper_weps = [ // Sniper Rifles
  897. "srifle_EBR_F",
  898. "srifle_GM6_F",
  899. "srifle_LRR_F",
  900. "arifle_MXM_Black_F",
  901. "srifle_DMR_01_F",
  902. #ifdef GIVE_AI_MARKSMAN_DLC_WEAPONS
  903. "srifle_DMR_02_F",
  904. "srifle_DMR_03_woodland_F",
  905. //"srifle_DMR_04_F", // Does anybody like the ASP-1? :p
  906. "srifle_DMR_05_blk_F",
  907. "srifle_DMR_06_olive_F",
  908. #endif
  909.  
  910. #ifdef GIVE_AI_APEX_WEAPONS
  911. "srifle_DMR_07_ghex_F",
  912. #endif
  913. "Exile_Weapon_DMR",
  914. "Exile_Weapon_SVD",
  915. "Exile_Weapon_VSSVintorez"
  916. ];
  917. DMS_sniper_pistols = [ // Pistols for Assault Class (Set to empty array if you don't want to give them any pistols)
  918. #ifdef GIVE_AI_APEX_WEAPONS
  919. "hgun_Pistol_01_F",
  920. #endif
  921. "hgun_ACPC2_F",
  922. "hgun_Rook40_F",
  923. "hgun_P07_F",
  924. "hgun_Pistol_heavy_01_F",
  925. "hgun_Pistol_heavy_02_F",
  926. "Exile_Weapon_Colt1911",
  927. "Exile_Weapon_Makarov",
  928. "Exile_Weapon_Taurus",
  929. "Exile_Weapon_TaurusGold"
  930. ];
  931. DMS_sniper_optics = [ // Optics for Sniper Class
  932. #ifdef GIVE_AI_APEX_GEAR
  933. "optic_SOS_khk_F",
  934. "optic_DMS_ghex_F",
  935. "optic_LRPS_tna_F",
  936. #endif
  937.  
  938. #ifdef GIVE_AI_MARKSMAN_DLC_WEAPONS
  939. "optic_AMS_khk",
  940. #endif
  941. "optic_SOS",
  942. "optic_DMS",
  943. "optic_LRPS"
  944. ];
  945. DMS_sniper_optic_chance = 100; // Percentage chance that a Sniper Class AI will get an optic
  946. DMS_sniper_bipod_chance = 90; // Percentage chance that a Sniper Class AI will get a bipod
  947. DMS_sniper_suppressor_chance = 15; // Percentage chance that a Sniper Class AI will get a suppressor
  948.  
  949. DMS_sniper_items = [ // Items for Sniper Class AI (Loot stuff that goes in uniform/vest/backpack)
  950. "Exile_Item_InstaDoc",
  951. "Exile_Item_Surstromming_Cooked",
  952. "Exile_Item_PlasticBottleFreshWater",
  953. "Exile_Item_PlasticBottleFreshWater",
  954. "Exile_Item_Matches"
  955. ];
  956. DMS_sniper_equipment = [ // Equipment for Sniper Class AI (stuff that goes in toolbelt slots)
  957. "Rangefinder",
  958. "ItemGPS"
  959. ];
  960. DMS_sniper_RandItemCount = 3; // How many random items to add to the AI's inventory.
  961. DMS_sniper_RandItems = [ // The random items that will be added to the AI's inventory.
  962. "Exile_Item_EMRE",
  963. "Exile_Item_PlasticBottleCoffee",
  964. "Exile_Item_CanOpener",
  965. "Exile_Item_Instadoc",
  966. "Exile_Item_DuctTape"
  967. ];
  968. DMS_sniper_helmets = [ // Helmets for Sniper Class
  969. #ifdef GIVE_AI_APEX_GEAR
  970. //"H_HelmetO_ViperSP_ghex_F", // Special helmet with in-built NVGs and thermal :o
  971. "H_HelmetB_Enh_tna_F",
  972. "H_HelmetSpecO_ghex_F",
  973. "H_HelmetLeaderO_ghex_F",
  974. #endif
  975. "H_HelmetSpecB_paint1",
  976. "H_HelmetIA_camo",
  977. "H_HelmetLeaderO_ocamo",
  978. "H_HelmetLeaderO_oucamo"
  979. ];
  980. DMS_sniper_clothes = [ // Uniforms for Sniper Class
  981. #ifdef GIVE_AI_APEX_GEAR
  982. "U_B_T_Sniper_F",
  983. "U_B_T_FullGhillie_tna_F", // Invisible to thermal? 0_o
  984. "U_O_T_Sniper_F",
  985. "U_O_T_FullGhillie_tna_F",
  986. #endif
  987. "U_O_GhillieSuit",
  988. "U_B_FullGhillie_ard",
  989. "U_B_FullGhillie_lsh",
  990. "U_B_FullGhillie_sard",
  991. "U_B_GhillieSuit",
  992. "U_I_FullGhillie_ard",
  993. "U_I_FullGhillie_lsh",
  994. "U_I_FullGhillie_sard",
  995. "U_I_GhillieSuit",
  996. "U_O_FullGhillie_ard",
  997. "U_O_FullGhillie_lsh",
  998. "U_O_FullGhillie_sard"
  999. ];
  1000. DMS_sniper_vests = [ // Vests for Sniper Class
  1001. #ifdef GIVE_AI_APEX_GEAR
  1002. "V_PlateCarrier2_tna_F",
  1003. "V_PlateCarrierSpec_tna_F",
  1004. "V_PlateCarrierGL_tna_F",
  1005. "V_PlateCarrier2_rgr_noflag_F",
  1006. #endif
  1007. "V_PlateCarrierH_CTRG",
  1008. "V_PlateCarrierSpec_rgr",
  1009. "V_PlateCarrierGL_blk",
  1010. "V_PlateCarrierGL_mtp",
  1011. "V_PlateCarrierGL_rgr",
  1012. "V_PlateCarrierSpec_blk",
  1013. "V_PlateCarrierSpec_mtp",
  1014. "V_PlateCarrierL_CTRG",
  1015. "V_TacVest_blk_POLICE",
  1016. "V_PlateCarrierIA2_dgtl",
  1017. "V_HarnessO_brn",
  1018. "V_HarnessO_gry"
  1019. ];
  1020. DMS_sniper_backpacks = [ // Backpacks for Sniper Class
  1021. #ifdef GIVE_AI_APEX_GEAR
  1022. "B_Bergen_tna_F",
  1023. "B_Bergen_hex_F",
  1024. "B_Carryall_ghex_F",
  1025. "B_ViperHarness_ghex_F",
  1026. "B_ViperHarness_blk_F",
  1027. "B_ViperLightHarness_ghex_F",
  1028. "B_ViperLightHarness_khk_F",
  1029. #endif
  1030. "B_Bergen_rgr",
  1031. "B_Carryall_oli",
  1032. "B_Kitbag_mcamo",
  1033. "B_Carryall_cbr",
  1034. "B_Bergen_Base_F",
  1035. "B_Bergen_blk"
  1036. ];
  1037.  
  1038. 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
  1039. "assault",
  1040. "MG",
  1041. "sniper"
  1042. ];
  1043.  
  1044. DMS_ai_SupportedRandomClasses = [ // Allowed "random" AI presets here if you want to create different random presets.
  1045. "random",
  1046. "random_non_assault",
  1047. "random_non_MG",
  1048. "random_non_sniper"
  1049. ];
  1050.  
  1051. DMS_random_AI = [ // Random AI preset that contains all default classes | DEFAULT: 60% Assault, 20% MG, 20% Sniper
  1052. "assault",
  1053. "assault",
  1054. "assault",
  1055. "MG",
  1056. "sniper"
  1057. ];
  1058.  
  1059. DMS_random_non_assault_AI = [ // Random AI preset that excludes the "assault" class
  1060. "MG",
  1061. "MG",
  1062. "sniper"
  1063. ];
  1064.  
  1065. DMS_random_non_MG_AI = [ // Random AI preset that excludes the "MG" class
  1066. "assault",
  1067. "assault",
  1068. "sniper"
  1069. ];
  1070.  
  1071. DMS_random_non_sniper_AI = [ // Random AI preset that excludes the "sniper" class
  1072. "assault",
  1073. "assault",
  1074. "MG"
  1075. ];
  1076.  
  1077. DMS_ai_use_launchers = true; // Enable/disable spawning an AI in a group with a launcher
  1078. DMS_ai_launchers_per_group = 2; // How many units per AI group can get a launcher.
  1079. 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.
  1080. DMS_AI_launcher_ammo_count = 2; // How many rockets an AI will get with its launcher
  1081. DMS_ai_remove_launchers = false; // Remove rocket launchers on AI death
  1082.  
  1083. DMS_AI_wep_launchers_AT = [ // AT Launchers
  1084. #ifdef GIVE_AI_APEX_WEAPONS
  1085. "launch_RPG7_F",
  1086. #endif
  1087. "launch_NLAW_F",
  1088. "launch_RPG32_F",
  1089. "launch_B_Titan_short_F"
  1090. ];
  1091. DMS_AI_wep_launchers_AA = [ // AA Launchers
  1092. "launch_B_Titan_F"
  1093. ];
  1094.  
  1095. DMS_RHeli_Height = 500; // Altitude of the heli when flying to drop point.
  1096. DMS_RHeli_MinDistFromDrop = 500; // Minimum distance for the reinforcement heli to spawn from drop point.
  1097. DMS_RHeli_MaxDistFromDrop = 5000; // Maximum distance for the reinforcement heli to spawn from drop point.
  1098. DMS_RHeli_MinDistFromPlayers = 1000; // Minimum distance for the reinforcement heli to spawn from players.
  1099.  
  1100. /* AI Settings */
  1101.  
  1102.  
  1103. /* Loot Settings */
  1104. DMS_GodmodeCrates = true; // Whether or not crates will have godmode after being filled with loot.
  1105. DMS_MinimumMagCount = 4; // Minimum number of magazines for weapons.
  1106. DMS_MaximumMagCount = 6; // Maximum number of magazines for weapons.
  1107. DMS_CrateCase_Sniper = [ // If you pass "Sniper" in _lootValues, then it will spawn these weapons/items/backpacks
  1108. [
  1109. ["Rangefinder",1],
  1110. ["srifle_GM6_F",1],
  1111. ["srifle_LRR_F",1],
  1112. ["Desert_Eagle",1],
  1113. ["KA_NTW20",1],
  1114. ["srifle_EBR_F",1],
  1115. ["hgun_Pistol_heavy_01_F",1],
  1116. ["hgun_PDW2000_F",1]
  1117. ],
  1118. [
  1119. ["ItemGPS",1],
  1120. ["U_B_FullGhillie_ard",1],
  1121. ["U_I_FullGhillie_lsh",1],
  1122. ["U_O_FullGhillie_sard",1],
  1123. ["U_O_GhillieSuit",1],
  1124. ["V_PlateCarrierGL_blk",1],
  1125. ["V_HarnessO_brn",1],
  1126. ["Exile_Item_InstaDoc",3],
  1127. ["Exile_Item_Surstromming_Cooked",5],
  1128. ["Exile_Item_PlasticBottleFreshWater",5],
  1129. ["optic_DMS",1],
  1130. ["acc_pointer_IR",1],
  1131. ["muzzle_snds_B",1],
  1132. ["optic_LRPS",1],
  1133. ["optic_MRD",1],
  1134. ["muzzle_snds_acp",1],
  1135. ["optic_Holosight_smg",1],
  1136. ["muzzle_snds_L",1],
  1137. ["5Rnd_127x108_APDS_Mag",3],
  1138. ["7Rnd_408_Mag",3],
  1139. ["20Rnd_762x51_Mag",5],
  1140. ["11Rnd_45ACP_Mag",3],
  1141. ["KA_NTW20_Scope",1],
  1142. ["KA_NTW20_3rnd_MK106_HEI",3],
  1143. ["KA_NTW20_3rnd_MK107_API",2],
  1144. ["7Rnd_50_AE",5],
  1145. ["30Rnd_9x21_Mag",3]
  1146. ],
  1147. [
  1148. ["B_Carryall_cbr",1],
  1149. ["B_Bergen_mcamo_F",1],
  1150. ["B_Kitbag_mcamo",1]
  1151. ]
  1152. ];
  1153. DMS_BoxWeapons = [ // List of weapons that can spawn in a crate
  1154. #ifdef USE_MARKSMAN_DLC_WEAPONS_IN_CRATES
  1155. "srifle_DMR_02_F",
  1156. "srifle_DMR_03_woodland_F",
  1157. //"srifle_DMR_04_F", // ASP-1 Kir
  1158. "srifle_DMR_05_blk_F",
  1159. "srifle_DMR_06_olive_F",
  1160. "MMG_01_hex_F",
  1161. "MMG_02_black_F",
  1162. #endif
  1163.  
  1164. #ifdef USE_APEX_WEAPONS_IN_CRATES
  1165. "arifle_AK12_F",
  1166. "arifle_ARX_ghex_F",
  1167. "arifle_CTAR_blk_F",
  1168. "arifle_SPAR_01_khk_F",
  1169. "arifle_SPAR_03_khk_F",
  1170. //"srifle_DMR_07_ghex_F", // Oh great, a 6.5mm 20 round sniper rifle... because everybody wanted a nerfed MXM :p
  1171. "LMG_03_F",
  1172. #endif
  1173. "Exile_Melee_Axe",
  1174. "Exile_Melee_SledgeHammer",
  1175. //"Exile_Melee_Shovel", // Not really interesting for players...
  1176. "arifle_Katiba_GL_F",
  1177. "arifle_MX_GL_Black_F",
  1178. "arifle_Mk20_GL_F",
  1179. "arifle_TRG21_GL_F",
  1180. "arifle_Katiba_F",
  1181. "arifle_MX_Black_F",
  1182. "arifle_TRG21_F",
  1183. "arifle_TRG20_F",
  1184. "arifle_Mk20_plain_F",
  1185. "arifle_Mk20_F",
  1186. "Exile_Weapon_AK107",
  1187. "Exile_Weapon_AK107_GL",
  1188. "Exile_Weapon_AK74_GL",
  1189. "Exile_Weapon_AK47",
  1190. "Exile_Weapon_AKS_Gold",
  1191. "LMG_Zafir_F",
  1192. "LMG_Mk200_F",
  1193. "arifle_MX_SW_Black_F",
  1194. "Exile_Weapon_RPK",
  1195. "Exile_Weapon_PK",
  1196. "Exile_Weapon_PKP",
  1197. "srifle_EBR_F",
  1198. "srifle_DMR_01_F",
  1199. "srifle_GM6_F",
  1200. "srifle_LRR_F",
  1201. "arifle_MXM_Black_F",
  1202. "Exile_Weapon_DMR",
  1203. "Exile_Weapon_SVD",
  1204. "Exile_Weapon_VSSVintorez",
  1205. "Exile_Weapon_CZ550",
  1206. "KA_SCAR_H_Tan_Hand",
  1207. "KA_SPAS12",
  1208. "AA12",
  1209. "KA_VC1_Flamethrower",
  1210. "Exile_Weapon_SVDCamo"
  1211. ];
  1212. DMS_BoxFood = [ // List of food that can spawn in a crate.
  1213. "Exile_Item_GloriousKnakworst_Cooked",
  1214. "Exile_Item_Surstromming_Cooked",
  1215. "Exile_Item_SausageGravy_Cooked",
  1216. "Exile_Item_ChristmasTinner_Cooked",
  1217. "Exile_Item_BBQSandwich_Cooked",
  1218. "Exile_Item_Catfood_Cooked",
  1219. "Exile_Item_DogFood_Cooked",
  1220. "Exile_Item_EMRE",
  1221. "Exile_Item_BeefParts",
  1222. "Exile_Item_Noodles",
  1223. "Exile_Item_SeedAstics",
  1224. "Exile_Item_Raisins",
  1225. "Exile_Item_Moobar",
  1226. "Exile_Item_InstantCoffee"
  1227. ];
  1228. DMS_BoxDrinks = [
  1229. "Exile_Item_PlasticBottleCoffee",
  1230. "Exile_Item_PowerDrink",
  1231. "Exile_Item_PlasticBottleFreshWater",
  1232. "Exile_Item_EnergyDrink",
  1233. "Exile_Item_MountainDupe",
  1234. "Exile_Item_ChocolateMilk"
  1235. ];
  1236. DMS_BoxMeds = [
  1237. "Exile_Item_InstaDoc",
  1238. "Exile_Item_Vishpirin",
  1239. "Exile_Item_Defibrillator",
  1240. "Exile_Item_Bandage"
  1241. ];
  1242. 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.
  1243. "Exile_Item_Matches",
  1244. "Exile_Item_CookingPot",
  1245. "Exile_Melee_Axe",
  1246. "Exile_Item_CanOpener"
  1247. ] + DMS_BoxFood + DMS_BoxDrinks + DMS_BoxMeds;
  1248. DMS_Box_BaseParts_Wood = [ // List of wooden base parts.
  1249. "Exile_Item_WoodWallKit",
  1250. "Exile_Item_WoodWallHalfKit",
  1251. "Exile_Item_WoodWindowKit",
  1252. "Exile_Item_WoodDoorKit",
  1253. "Exile_Item_WoodDoorwayKit",
  1254. "Exile_Item_WoodGateKit",
  1255. "Exile_Item_WoodFloorKit",
  1256. "Exile_Item_WoodFloorPortKit",
  1257. "Exile_Item_WoodStairsKit"
  1258. ];
  1259. DMS_Box_BaseParts_Concrete = [ // List of concrete base parts
  1260. "Exile_Item_ConcreteWallKit",
  1261. "Exile_Item_ConcreteWindowKit",
  1262. "Exile_Item_ConcreteDoorKit",
  1263. "Exile_Item_ConcreteDoorwayKit",
  1264. "Exile_Item_ConcreteGateKit",
  1265. "Exile_Item_ConcreteFloorKit",
  1266. "Exile_Item_ConcreteFloorPortKit",
  1267. "Exile_Item_ConcreteStairsKit"
  1268. ];
  1269. DMS_BoxBaseParts = [ // List of all base parts to spawn. Weighted towards wood base parts.
  1270. "Exile_Item_FortificationUpgrade",
  1271. "Exile_Item_FortificationUpgrade",
  1272. "Exile_Item_SandBagsKit_Long",
  1273. "Exile_Item_SandBagsKit_Long",
  1274. "Exile_Item_SandBagsKit_Corner",
  1275. "Exile_Item_SandBagsKit_Corner",
  1276. "Exile_Item_HBarrier5Kit"
  1277. ] + DMS_Box_BaseParts_Wood + DMS_Box_BaseParts_Wood + DMS_Box_BaseParts_Wood + DMS_Box_BaseParts_Concrete;
  1278. DMS_BoxCraftingMaterials = [
  1279. "Exile_Item_Cement",
  1280. "Exile_Item_Sand",
  1281. "Exile_Item_Sand",
  1282. "Exile_Item_WaterCanisterDirtyWater",
  1283. "Exile_Item_MetalBoard",
  1284. "Exile_Item_MetalPole",
  1285. "Exile_Item_MetalPole",
  1286. "Exile_Item_JunkMetal",
  1287. "Exile_Item_JunkMetal",
  1288. "Exile_Item_JunkMetal",
  1289. "Exile_Item_WoodPlank",
  1290. "Exile_Item_WoodPlank",
  1291. "Exile_Item_WoodPlank",
  1292. "Exile_Item_WoodPlank"
  1293. ];
  1294. DMS_BoxTools = [
  1295. "Exile_Item_Grinder",
  1296. "Exile_Item_Handsaw",
  1297. "Exile_Item_CanOpener",
  1298. "Exile_Item_Pliers",
  1299. "Exile_Item_Screwdriver",
  1300. "Exile_Item_Hammer",
  1301. "Exile_Item_Knife",
  1302. "Exile_Item_Foolbox"
  1303. ];
  1304. 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.)
  1305. "Exile_Item_DuctTape",
  1306. "Exile_Item_PortableGeneratorKit"
  1307. ] + DMS_BoxBaseParts + DMS_BoxCraftingMaterials + DMS_BoxCraftingMaterials + DMS_BoxTools;
  1308. DMS_BoxOptics = [ // List of optics that can spawn in a crate
  1309. "optic_Arco",
  1310. "optic_Hamr",
  1311. "optic_Aco",
  1312. "optic_Holosight",
  1313. "optic_MRCO",
  1314. "optic_SOS",
  1315. "optic_DMS",
  1316. "optic_LRPS",
  1317. "optic_Nightstalker" // Nightstalker scope lost thermal in Exile v0.9.4
  1318. ];
  1319. DMS_BoxBackpacks = [ //List of backpacks that can spawn in a crate
  1320. "B_Bergen_rgr",
  1321. "B_Carryall_oli",
  1322. "B_Kitbag_mcamo",
  1323. "B_Carryall_cbr",
  1324. "B_Bergen_mcamo_F",
  1325. "B_Bergen_dgtl_F",
  1326. "B_Bergen_tna_F",
  1327. "B_FieldPack_oucamo",
  1328. "B_FieldPack_cbr",
  1329. "B_Bergen_blk"
  1330. ];
  1331. DMS_BoxItems = DMS_BoxSurvivalSupplies+DMS_BoxBuildingSupplies+DMS_BoxOptics; // Random "items" can spawn optics, survival supplies, or building supplies
  1332.  
  1333. DMS_Box_BreachingCharges = [ // List of breaching charges (weighted). Not used (yet).
  1334. "BreachingChargeBigMomma",
  1335. "BreachingChargeMetal",
  1336. "BreachingChargeMetal",
  1337. "BreachingChargeWood",
  1338. "BreachingChargeWood",
  1339. "BreachingChargeWood"
  1340. ];
  1341.  
  1342. DMS_RareLoot = true; // Potential chance to spawn rare loot in any crate.
  1343. DMS_RareLootAmount = 1; // How many rare loot items to add.
  1344. DMS_RareLootList = [ // List of rare loot to spawn
  1345. "Exile_Item_SafeKit",
  1346. "KA_M134",
  1347. "KA_WA2000",
  1348. "Exile_Item_CodeLock"
  1349. ];
  1350. DMS_RareLootChance = 10; // Percentage Chance to spawn rare loot in any crate | Default: 10%
  1351.  
  1352. // Vehicles
  1353. DMS_ArmedVehicles = [ // List of armed vehicles that can spawn
  1354. #ifdef USE_APEX_VEHICLES
  1355. "B_T_LSV_01_armed_F",
  1356. "O_T_LSV_02_armed_F",
  1357. #endif
  1358. "Exile_Car_Offroad_Armed_Guerilla01"
  1359. ];
  1360.  
  1361. DMS_MilitaryVehicles = [ // List of (unarmed) military vehicles that can spawn
  1362. #ifdef USE_APEX_VEHICLES
  1363. "B_T_LSV_01_unarmed_F",
  1364. "O_T_LSV_02_unarmed_F",
  1365. #endif
  1366. "Exile_Car_Strider",
  1367. "Exile_Car_Hunter",
  1368. "Exile_Car_Ifrit"
  1369. ];
  1370.  
  1371. DMS_TransportTrucks = [ // List of transport trucks that can spawn
  1372. "Exile_Car_Van_Guerilla01",
  1373. "Exile_Car_Zamak",
  1374. "Exile_Car_Tempest",
  1375. "Exile_Car_HEMMT",
  1376. "Exile_Car_Ural_Open_Military",
  1377. "Exile_Car_Ural_Covered_Military"
  1378. ];
  1379.  
  1380. DMS_RefuelTrucks = [ // List of refuel trucks that can spawn
  1381. "Exile_Car_Van_Fuel_Black",
  1382. "Exile_Car_Van_Fuel_White",
  1383. "Exile_Car_Van_Fuel_Red",
  1384. "Exile_Car_Van_Fuel_Guerilla01",
  1385. "Exile_Car_Van_Fuel_Guerilla02",
  1386. "Exile_Car_Van_Fuel_Guerilla03"
  1387. ];
  1388.  
  1389. DMS_CivilianVehicles = [ // List of civilian vehicles that can spawn
  1390. #ifdef USE_APEX_VEHICLES
  1391. "C_Offroad_02_unarmed_F",
  1392. "I_C_Van_01_transport_F",
  1393. #endif
  1394. "Exile_Car_SUV_Red",
  1395. "Exile_Car_Hatchback_Rusty1",
  1396. "Exile_Car_Hatchback_Rusty2",
  1397. "Exile_Car_Hatchback_Sport_Red",
  1398. "Exile_Car_SUV_Red",
  1399. "Exile_Car_Offroad_Rusty2",
  1400. "Exile_Bike_QuadBike_Fia"
  1401. ];
  1402.  
  1403. DMS_TransportHelis = [ // List of transport helis that can spawn
  1404. #ifdef USE_APEX_VEHICLES
  1405. "B_T_VTOL_01_infantry_F",
  1406. "O_T_VTOL_02_infantry_F",
  1407. #endif
  1408. "Exile_Chopper_Hummingbird_Green",
  1409. "Exile_Chopper_Orca_BlackCustom",
  1410. "Exile_Chopper_Mohawk_FIA",
  1411. "Exile_Chopper_Huron_Black",
  1412. "Exile_Chopper_Hellcat_Green",
  1413. "Exile_Chopper_Taru_Transport_Black"
  1414. ];
  1415.  
  1416. DMS_ReinforcementHelis = [ // List of helis that can spawn for AI paratrooper reinforcements.
  1417. //"B_Heli_Transport_01_camo_F" // Ghosthawk: You'll have to whitelist this in infistar if you want to use it.
  1418. ] + DMS_TransportHelis;
  1419.  
  1420. DMS_CarThievesVehicles = [ // List of vehicles that can spawn in the "car thieves" mission. By default, it's just "DMS_MilitaryVehicles" and "DMS_TransportTrucks".
  1421. //"Exile_Car_Offroad_Armed_Guerilla01"
  1422. ] + DMS_MilitaryVehicles + DMS_TransportTrucks;
  1423. /* Loot Settings */
  1424.  
  1425.  
  1426. DMS_ConfigLoaded = true;
Add Comment
Please, Sign In to add comment