config.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. #define COMPONENT DC_15gl
  2. #include "../../../RD501_main/config_macros.hpp"
  3. #include "../../_common/common.hpp"
  4. class CfgPatches
  5. {
  6. class macro_patch_name(dc_15c)
  7. {
  8. author="RD501";
  9. addonRootClass= macro_patch_name(weapons)
  10. requiredAddons[]=
  11. {
  12. macro_patch_name(weapons)
  13. };
  14. requiredVersion=0.1;
  15. units[]={};
  16. weapons[]={
  17. macro_new_weapon(DC,15gl),
  18. macro_new_weapon(DC,r15gl)
  19. };
  20. };
  21. };
  22. class CfgWeapons
  23. {
  24. class 3AS_DC15A_Base_F;
  25. class 3AS_DC15A_GL: 3AS_DC15A_Base_F
  26. {
  27. class WeaponSlotsInfo;
  28. class Single;
  29. class Burst;
  30. };
  31. class RD501_stun_muzzle;
  32. class 3AS_GL_F;
  33. class macro_new_weapon(DC,r15gl):3AS_DC15A_GL
  34. {
  35. displayName="Republic DC-15A UGL";
  36. JLTS_hasElectronics=0;
  37. ACE_Overheating_mrbs = 300000;
  38. magazines[]=
  39. {
  40. macro_new_mag(10mw,30)
  41. };
  42. modes[] = {"Single", "Burst"};
  43. muzzles[]=
  44. {
  45. "this",
  46. "Stun",
  47. "RD501_15A_UGL_Muzzle"
  48. };
  49. class RD501_15A_UGL_Muzzle:3AS_GL_F
  50. {
  51. magazines[] = {};
  52. magazineWell[] += {macro_new_magwell(GL_Mags)};
  53. };
  54. class Stun: RD501_stun_muzzle
  55. {
  56. displayName="High Energy StunMode";
  57. };
  58. class Single:Single
  59. {
  60. reloadTime=0.1;
  61. };
  62. class Burst : Single
  63. {
  64. reloadTime=0.1;
  65. burst=3;
  66. textureType="burst";
  67. };
  68. class WeaponSlotsInfo: WeaponSlotsInfo
  69. {
  70. mass=80;
  71. class CowsSlot
  72. {
  73. displayName = "Optics Slot";
  74. iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
  75. iconPinpoint = "Bottom";
  76. iconPosition[] = {0.5,0.35};
  77. iconScale = 0.2;
  78. linkProxy = "\a3\data_f\proxies\weapon_slots\TOP";
  79. scope = 0;
  80. compatibleItems[] =
  81. {
  82. "RD501_RCO",
  83. "RD501_RCO_2",
  84. "RD501_RCO_3",
  85. "RD501_Holosight",
  86. "RD501_Holosight_2",
  87. "RD501_Holosight_3",
  88. "RD501_DMS",
  89. "RD501_DMS_2",
  90. "RD501_DMS_3",
  91. "RD501_DMS_4",
  92. "RD501_MRCO",
  93. "RD501_MRCO_2",
  94. "RD501_MRCO_3"
  95. };
  96. };
  97. class MuzzleSlot
  98. {
  99. linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
  100. displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
  101. compatibleItems[]=
  102. {
  103. "RD501_muzzle_flash",
  104. "RD501_acc_particle_condenser",
  105. "RD501_acc_particle_accelerator"
  106. };
  107. iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
  108. iconPinpoint="Center";
  109. };
  110. class PointerSlot
  111. {
  112. linkProxy = "\A3\data_f\proxies\weapon_slots\SIDE";
  113. displayName = "Pointer Slot";
  114. compatibleItems[] = {"acc_flashlight","acc_pointer_IR"};
  115. };
  116. };
  117. };
  118. class 3AS_DC15C_Base_F;
  119. class 3AS_DC15C_GL: 3AS_DC15C_Base_F
  120. {
  121. class 3AS_15CGL;
  122. class FullAuto;
  123. class Single;
  124. class WeaponSlotsInfo;
  125. };
  126. class macro_new_weapon(DC,15cgl):3AS_DC15C_GL
  127. {
  128. displayName="Republic DC-15C US";
  129. dispersion=0.00116;
  130. ACE_Overheating_mrbs = 300000;
  131. recoil="recoil_mxc";
  132. scope = 2;
  133. magazines[]=
  134. {
  135. macro_new_mag(10mw,30)
  136. };
  137. muzzles[]=
  138. {
  139. "this",
  140. "Shotgun_Muzzle",
  141. "Stun"
  142. };
  143. class Shotgun_Muzzle: 3AS_15CGL
  144. {
  145. displayName="Shotgun Attachment";
  146. descriptionShort="Shotgun";
  147. magazines[]=
  148. {
  149. macro_new_mag(shotgun_scatter,6),
  150. macro_new_mag(shotgun_HE,6),
  151. macro_new_mag(shotgun_EMP,2)
  152. };
  153. magazineWell[]={};
  154. };
  155. class Stun: RD501_stun_muzzle
  156. {
  157. displayName="High Energy StunMode";
  158. };
  159. class FullAuto:FullAuto
  160. {
  161. reloadTime=0.08;
  162. dispersion=0.00116;
  163. };
  164. class Single : Single
  165. {
  166. reloadTime=0.08;
  167. dispersion=0.00116;
  168. };
  169. class WeaponSlotsInfo: WeaponSlotsInfo
  170. {
  171. mass = 30;
  172. class CowsSlot
  173. {
  174. displayName = "Optics Slot";
  175. iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
  176. iconPinpoint = "Bottom";
  177. iconPosition[] = {0.5,0.35};
  178. iconScale = 0.2;
  179. linkProxy = "\a3\data_f\proxies\weapon_slots\TOP";
  180. scope = 0;
  181. compatibleItems[] =
  182. {
  183. "RD501_RCO",
  184. "RD501_RCO_2",
  185. "RD501_RCO_3",
  186. "RD501_Holosight",
  187. "RD501_Holosight_2",
  188. "RD501_Holosight_3",
  189. "RD501_DMS",
  190. "RD501_DMS_2",
  191. "RD501_DMS_3",
  192. "RD501_DMS_4",
  193. "RD501_MRCO",
  194. "RD501_MRCO_2",
  195. "RD501_MRCO_3"
  196. };
  197. };
  198. class MuzzleSlot
  199. {
  200. linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
  201. displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
  202. compatibleItems[]=
  203. {
  204. "RD501_muzzle_flash",
  205. "RD501_acc_particle_condenser",
  206. "RD501_acc_particle_accelerator"
  207. };
  208. iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
  209. iconPinpoint="Center";
  210. };
  211. class PointerSlot
  212. {
  213. linkProxy = "\A3\data_f\proxies\weapon_slots\SIDE";
  214. displayName = "Pointer Slot";
  215. compatibleItems[] = {"acc_flashlight","acc_pointer_IR"};
  216. };
  217. };
  218. };
  219. };