Advertisement
Guest User

luna

a guest
Feb 22nd, 2014
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. /*
  2. DZMSAIConfig.sqf
  3. This is a configuration for the AI that spawn at missions.
  4. This includes their skin, weapons, gear, and skills.
  5. You can adjust these to your liking, but it is for advanced users.
  6. */
  7.  
  8. ///////////////////////////////////////////////
  9. // Array of skin classnames for the AI to use
  10. DZMSBanditSkins = ["Bandit1_DZ","BanditW1_DZ","BanditW2_DZ","Bandit2_DZ"];
  11.  
  12. ////////////////////////
  13. // Array of AI Skills
  14. DZMSSkills1 = [
  15. ["aimingAccuracy",0.60],
  16. ["aimingShake",0.60],
  17. ["aimingSpeed",1.00],
  18. ["endurance",1.00],
  19. ["spotDistance",1.00],
  20. ["spotTime",1.00],
  21. ["courage",1.00],
  22. ["reloadSpeed",1.00],
  23. ["commanding",1.00],
  24. ["general",1.00]
  25. ];
  26.  
  27. DZMSSkills2 = [
  28. ["aimingAccuracy",0.15],
  29. ["aimingShake",0.20],
  30. ["aimingSpeed",1.00],
  31. ["endurance",1.00],
  32. ["spotDistance",1.00],
  33. ["spotTime",1.00],
  34. ["courage",1.00],
  35. ["reloadSpeed",1.00],
  36. ["commanding",1.00],
  37. ["general",1.00]
  38. ];
  39.  
  40. DZMSSkills3 = [
  41. ["aimingAccuracy",0.60],
  42. ["aimingShake",0.60],
  43. ["aimingSpeed",1.00],
  44. ["endurance",1.00],
  45. ["spotDistance",1.00],
  46. ["spotTime",1.00],
  47. ["courage",1.00],
  48. ["reloadSpeed",1.00],
  49. ["commanding",1.00],
  50. ["general",1.00]
  51. ];
  52.  
  53. //////////////////////////////////////////////////////////////
  54. // This is the primary weaponlist that can be assigned to AI
  55. // These are assigned based on AI difficulty level
  56. DZMSWeps1 = [
  57. "M4A3_RCO_GL_EP1",
  58. "M16A2GL",
  59. "AK_74",
  60. "M4A1_Aim",
  61. "MAAWS",
  62. "AKS_74_U",
  63. "AK_47_M",
  64. "M24",
  65. "M1014",
  66. "SVD",
  67. "M4A1",
  68. "m16a4_acg",
  69. "Remington870_lamp",
  70. "BAF_L85A2_RIS_SUSAT",
  71. "BAF_L85A2_RIS_SUSAT",
  72. "M4A3_CCO_EP1"
  73. ];
  74.  
  75. DZMSWeps2 = [
  76. "M4A3_RCO_GL_EP1",
  77. "M16A2GL",
  78. "M249_DZ",
  79. "AK_74",
  80. "M4A1_Aim",
  81. "MAAWS",
  82. "MAAWS",
  83. "AK_47_M",
  84. "M24",
  85. "SVD_CAMO",
  86. "M1014",
  87. "SVD",
  88. "M4A1",
  89. "m16a4_acg",
  90. "Remington870_lamp",
  91. "M240_DZ",
  92. "M4A1_AIM_SD_camo",
  93. "M16A4_ACG",
  94. "M4A1_HWS_GL_camo",
  95. "m240_scoped_EP1",
  96. "M4A3_CCO_EP1",
  97. "Sa58V_RCO_EP1",
  98. "Sa58V_CCO_EP1",
  99. "Huntingrifle",
  100. "Sa58P_EP1",
  101. "Sa58V_EP1"
  102. ];
  103.  
  104. DZMSWeps3 = [
  105. "FN_FAL",
  106. "FN_FAL_ANPVS4",
  107. "m240_scoped_EP1",
  108. "M249_DZ",
  109. "BAF_L85A2_RIS_Holo",
  110. "G36C",
  111. "G36C_camo",
  112. "G36A_camo",
  113. "G36K_camo",
  114. "AK_47_M",
  115. "MAAWS",
  116. "m16a4_acg",
  117. "bizon_silenced",
  118. "SVD",
  119. "RPK_74"
  120. ];
  121.  
  122. /////////////////////////////////////////////////////////////
  123. // These are gear sets that will be randomly given to the AI
  124. // They are all the same, but can be customized.
  125. DZMSGear0 = [
  126. ["ItemBandage","ItemBandage","ItemPainkiller"],
  127. ["ItemKnife","ItemFlashlight"]
  128. ];
  129.  
  130. DZMSGear1 = [
  131. ["ItemBandage","ItemBandage","ItemPainkiller"],
  132. ["ItemKnife","ItemFlashlight"]
  133. ];
  134.  
  135. DZMSGear2 = [
  136. ["ItemBandage","ItemBandage","ItemPainkiller"],
  137. ["ItemKnife","ItemFlashlight"]
  138. ];
  139.  
  140. DZMSGear3 = [
  141. ["ItemBandage","ItemBandage","ItemPainkiller"],
  142. ["ItemKnife","ItemFlashlight"]
  143. ];
  144.  
  145. DZMSGear4 = [
  146. ["ItemBandage","ItemBandage","ItemPainkiller"],
  147. ["ItemKnife","ItemFlashlight"]
  148. ];
  149.  
  150. ////////////////////////////////////////////////////////////
  151. // These are the backpacks that can be assigned to AI units.
  152. DZMSPacklist = [
  153. "DZ_Patrol_Pack_EP1",
  154. "DZ_Assault_Pack_EP1",
  155. "DZ_Czech_Vest_Puch",
  156. "DZ_ALICE_Pack_EP1",
  157. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement