config.cpp 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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 JLTS_DC15A_ugl;
  33. class JLTS_DC15A_ugl_plastic:JLTS_DC15A_ugl
  34. {
  35. class Single;
  36. class EGLM;
  37. class WeaponSlotsInfo
  38. {
  39. class CowsSlot;
  40. class PointerSlot;
  41. class MuzzleSlot;
  42. };
  43. };
  44. class 3AS_GL_F;
  45. class macro_new_weapon(DC,15gl):JLTS_DC15A_ugl_plastic
  46. {
  47. displayName="Republic DC-15A UGL";
  48. JLTS_hasElectronics=0;
  49. ACE_Overheating_mrbs = 300000;
  50. magazines[]=
  51. {
  52. macro_new_mag(10mw,30)
  53. };
  54. modes[] = {"Single", "Burst"};
  55. muzzles[]=
  56. {
  57. "this",
  58. "Stun",
  59. "EGLM"
  60. };
  61. class Stun: RD501_stun_muzzle
  62. {
  63. displayName="High Energy StunMode";
  64. };
  65. class Single:Single
  66. {
  67. reloadTime=0.1;
  68. };
  69. class Burst : Single
  70. {
  71. reloadTime=0.1;
  72. burst=3;
  73. textureType="burst";
  74. };
  75. class EGLM:EGLM
  76. {
  77. magazines[] = {};
  78. magazineWell[] += {macro_new_magwell(GL_Mags)};
  79. };
  80. class WeaponSlotsInfo: WeaponSlotsInfo
  81. {
  82. mass = 30;
  83. class CowsSlot: CowsSlot
  84. {
  85. displayName = "Optics Slot";
  86. iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
  87. iconPinpoint = "Bottom";
  88. iconPosition[] = {0.5,0.35};
  89. iconScale = 0.2;
  90. linkProxy = "\A3\data_f\proxies\weapon_slots\TOP";
  91. scope = 0;
  92. compatibleItems[] =
  93. {
  94. //macro_new_weapon(scope,dc_15a_acog),
  95. //"RD501_RCO",
  96. //"RD501_RCO_2",
  97. //"RD501_RCO_3",
  98. "RD501_MRCO",
  99. "RD501_MRCO_2",
  100. "RD501_MRCO_3"
  101. //"RD501_Holosight",
  102. //"RD501_Holosight_2",
  103. //"RD501_Holosight_3"
  104. };
  105. };
  106. class MuzzleSlot: MuzzleSlot
  107. {
  108. linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
  109. displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
  110. compatibleItems[]=
  111. {
  112. "RD501_muzzle_flash"
  113. };
  114. iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
  115. iconPinpoint="Center";
  116. };
  117. class PointerSlot : PointerSlot
  118. {
  119. linkProxy = "\A3\data_f\proxies\weapon_slots\SIDE";
  120. displayName = "Pointer Slot";
  121. compatibleItems[] = {"acc_flashlight","acc_pointer_IR","ace_acc_pointer_green"};
  122. };
  123. };
  124. };
  125. class macro_new_weapon(DC,r15gl):3AS_DC15A_GL
  126. {
  127. displayName="Republic DC-15A UGL mod0";
  128. JLTS_hasElectronics=0;
  129. ACE_Overheating_mrbs = 300000;
  130. magazines[]=
  131. {
  132. macro_new_mag(10mw,30)
  133. };
  134. modes[] = {"Single", "Burst"};
  135. muzzles[]=
  136. {
  137. "this",
  138. "Stun",
  139. "RD501_15A_UGL_Muzzle"
  140. };
  141. class RD501_15A_UGL_Muzzle:3AS_GL_F
  142. {
  143. magazines[] = {};
  144. magazineWell[] += {macro_new_magwell(GL_Mags)};
  145. };
  146. class Stun: RD501_stun_muzzle
  147. {
  148. displayName="High Energy StunMode";
  149. };
  150. class Single:Single
  151. {
  152. reloadTime=0.1;
  153. };
  154. class Burst : Single
  155. {
  156. reloadTime=0.1;
  157. burst=3;
  158. textureType="burst";
  159. };
  160. class WeaponSlotsInfo: WeaponSlotsInfo
  161. {
  162. mass=80;
  163. };
  164. };
  165. class 3AS_DC15C_Base_GL;
  166. class 3AS_DC15C_GL: 3AS_DC15C_Base_GL
  167. {
  168. class 3AS_15CGL;
  169. class FullAuto;
  170. class Single;
  171. class WeaponSlotsInfo
  172. {
  173. class CowsSlot;
  174. class MuzzleSlot;
  175. class PointerSlot;
  176. };
  177. };
  178. class macro_new_weapon(DC,15cgl):3AS_DC15C_GL
  179. {
  180. displayName="Republic DC-15C US";
  181. dispersion=0.00116;
  182. ACE_Overheating_mrbs = 300000;
  183. recoil="recoil_mxc";
  184. magazines[]=
  185. {
  186. macro_new_mag(10mw,30)
  187. };
  188. muzzles[]=
  189. {
  190. "this",
  191. "Shotgun_Muzzle",
  192. "Stun"
  193. };
  194. class Shotgun_Muzzle: 3AS_15CGL
  195. {
  196. displayName="Shotgun Attachment";
  197. descriptionShort="Shotgun";
  198. magazines[]=
  199. {
  200. macro_new_mag(shotgun_scatter,6),
  201. macro_new_mag(shotgun_HE,6),
  202. macro_new_mag(shotgun_EMP,2)
  203. };
  204. magazineWell[]={};
  205. };
  206. class Stun: RD501_stun_muzzle
  207. {
  208. displayName="High Energy StunMode";
  209. };
  210. class FullAuto:FullAuto
  211. {
  212. reloadTime=0.08;
  213. dispersion=0.00116;
  214. };
  215. class Single : Single
  216. {
  217. reloadTime=0.08;
  218. dispersion=0.00116;
  219. };
  220. class WeaponSlotsInfo: WeaponSlotsInfo
  221. {
  222. mass = 30;
  223. class CowsSlot: CowsSlot
  224. {
  225. displayName = "Optics Slot";
  226. iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
  227. iconPinpoint = "Bottom";
  228. iconPosition[] = {0.5,0.35};
  229. iconScale = 0.2;
  230. linkProxy = "\a3\data_f\proxies\weapon_slots\TOP";
  231. scope = 0;
  232. compatibleItems[] =
  233. {
  234. /*"RD501_RCO",
  235. "RD501_RCO_2",
  236. "RD501_RCO_3"*/
  237. };
  238. };
  239. class MuzzleSlot: MuzzleSlot
  240. {
  241. linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
  242. displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
  243. compatibleItems[]=
  244. {
  245. "RD501_muzzle_flash"
  246. };
  247. iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
  248. iconPinpoint="Center";
  249. };
  250. class PointerSlot : PointerSlot
  251. {
  252. linkProxy = "\A3\data_f\proxies\weapon_slots\SIDE";
  253. displayName = "Pointer Slot";
  254. compatibleItems[] = {"acc_flashlight","acc_pointer_IR"};
  255. };
  256. };
  257. };
  258. };