config.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. #include "../../RD501_main/config_macros.hpp"
  2. class CfgPatches
  3. {
  4. class macro_patch_name(magazines)
  5. {
  6. author=RD501;
  7. addonRootClass= macro_patch_name(weapons)
  8. requiredAddons[]=
  9. {
  10. macro_patch_name(weapons)
  11. };
  12. requiredVersion=0.1;
  13. units[]={};
  14. weapons[]={};
  15. };
  16. };
  17. class CfgMagazines
  18. {
  19. class 3AS_45Rnd_EC50_Mag;
  20. class 1Rnd_HE_Grenade_shell;
  21. class DCStun_Mag;
  22. class 1Rnd_Smoke_Grenade_shell;
  23. class UGL_FlareWhite_F;
  24. class SWOP_DC15SA_Ammo;
  25. class SWOP_termDet_Gm;
  26. class SWOP_BCCKtermimploder_G;
  27. class RPG32_F;
  28. class 2Rnd_12Gauge_Pellets;
  29. ////////////////////////////////////////////////////
  30. /////////////Rifle/Pistol Magazines/////////////////
  31. ////////////////////////////////////////////////////
  32. class macro_new_mag(2mw,30) : 3AS_45Rnd_EC50_Mag
  33. {
  34. displayName="30 Round 2MW Cell";
  35. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc17a.paa";
  36. count = 30;
  37. mass=4;
  38. ammo=macro_new_ammo(2mw)
  39. typicalSpeed=400;
  40. descriptionShort="Low power magazine";
  41. };
  42. class macro_new_mag(5mw,60) : 3AS_45Rnd_EC50_Mag
  43. {
  44. displayName="75 Round 5MW Cell";
  45. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc15s.paa";
  46. count = 75;
  47. ammo=macro_new_ammo(5mw)
  48. typicalSpeed=400;
  49. descriptionShort="Low power magazine";
  50. };
  51. class macro_new_mag(5mw,10) : 3AS_45Rnd_EC50_Mag
  52. {
  53. displayName="15 Round 5MW Cell";
  54. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc17.paa";
  55. count = 15;
  56. mass=4;
  57. ammo=macro_new_ammo(5mw)
  58. typicalSpeed=400;
  59. descriptionShort="Low power magazine";
  60. };
  61. class macro_new_mag(10mw,30) : 3AS_45Rnd_EC50_Mag
  62. {
  63. displayName="40 Round 10MW Cell";
  64. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc15c.paa";
  65. count = 40;
  66. ammo=macro_new_ammo(10mw)
  67. typicalSpeed=450;
  68. descriptionShort="Medium power magazine";
  69. };
  70. class macro_new_mag(10mws,30) : 3AS_45Rnd_EC50_Mag
  71. {
  72. displayName="40 Round 10MW Stealth Cell";
  73. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc15c.paa";
  74. count = 40;
  75. ammo=macro_new_ammo(10mws)
  76. typicalSpeed=450;
  77. descriptionShort="Medium power magazine";
  78. };
  79. class macro_new_mag(10mw,400) : 3AS_45Rnd_EC50_Mag
  80. {
  81. displayName="400 Round 10MW Cell";
  82. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_z6.paa";
  83. count = 400;
  84. ammo=macro_new_ammo(10mw)
  85. typicalSpeed=450;
  86. descriptionShort="Medium power box magazine";
  87. };
  88. class macro_new_mag(20mw,20) : 3AS_45Rnd_EC50_Mag
  89. {
  90. displayName="20 Round 20MW Cell";
  91. count = 20;
  92. ammo=macro_new_ammo(20mw)
  93. typicalSpeed=700;
  94. descriptionShort="Medium power magazine";
  95. };
  96. class macro_new_mag(20mwup,20) : 3AS_45Rnd_EC50_Mag
  97. {
  98. displayName="25 Round 20MW UP Cell";
  99. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc15a_up.paa";
  100. count = 25;
  101. ammo=macro_new_ammo(20mwup)
  102. typicalSpeed=500;
  103. descriptionShort="Medium power unstable plasma magazine";
  104. };
  105. class macro_new_mag(20mwdp,20) : 3AS_45Rnd_EC50_Mag
  106. {
  107. displayName="25 Round 20MW DP Cell";
  108. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc15a_dp.paa";
  109. count = 25;
  110. ammo=macro_new_ammo(20mwdp)
  111. typicalSpeed=700;
  112. descriptionShort="Medium power dense plasma magazine";
  113. };
  114. class macro_new_mag(20mw,240) : 3AS_45Rnd_EC50_Mag
  115. {
  116. displayName="240 Round 20MW Cell";
  117. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_dc15l.paa";
  118. count = 240;
  119. ammo=macro_new_ammo(20mw)
  120. typicalSpeed=800;
  121. descriptionShort="Medium power box magazine";
  122. };
  123. class macro_new_mag(20mw,90) : 3AS_45Rnd_EC50_Mag
  124. {
  125. displayName="90 Round E5C Cell";
  126. count = 90;
  127. ammo=macro_new_ammo(20mw_d)
  128. typicalSpeed=800;
  129. descriptionShort="Medium power box magazine";
  130. };
  131. class macro_new_mag(30mw,10) : 3AS_45Rnd_EC50_Mag
  132. {
  133. displayName="10 Round 30MW Cell";
  134. picture="\RD501_Weapons\_mag\data\rd501_icon_mag_valken38.paa";
  135. count = 10;
  136. ammo=macro_new_ammo(30mw)
  137. typicalSpeed=1000;
  138. descriptionShort="High power magazine";
  139. };
  140. class macro_new_mag(30mw,15) : 3AS_45Rnd_EC50_Mag
  141. {
  142. displayName="15 Round E5S Cell";
  143. count = 15;
  144. ammo=macro_new_ammo(30mw_d)
  145. typicalSpeed=1000;
  146. descriptionShort="High power magazine";
  147. };
  148. class macro_new_mag(30mw,7) : 3AS_45Rnd_EC50_Mag
  149. {
  150. displayName="7 Round 30MW Cell";
  151. count = 7;
  152. ammo=macro_new_ammo(30mw)
  153. typicalSpeed=800;
  154. descriptionShort="High power magazine";
  155. };
  156. class macro_new_mag(40mw,5) : 3AS_45Rnd_EC50_Mag
  157. {
  158. displayName="5 Round 40MW Cell";
  159. count = 5;
  160. ammo=macro_new_ammo(40mw)
  161. typicalSpeed=1100;
  162. descriptionShort="High power magazine";
  163. };
  164. class macro_new_mag(40mwemp,1) : 3AS_45Rnd_EC50_Mag
  165. {
  166. displayName="1 Round 40MW EMP Cell";
  167. count = 1;
  168. ammo=macro_new_ammo(40mwemp)
  169. typicalSpeed=1100;
  170. descriptionShort="EMP Round";
  171. };
  172. class macro_new_mag(50mw,10) : 3AS_45Rnd_EC50_Mag
  173. {
  174. displayName="10 Round 50MW Cell";
  175. count = 10;
  176. ammo=macro_new_ammo(50mw)
  177. typicalSpeed=1100;
  178. descriptionShort="High power magazine";
  179. };
  180. class macro_new_mag(50mw,8) : 3AS_45Rnd_EC50_Mag
  181. {
  182. displayName="8 Round 50MW Cell";
  183. count = 8;
  184. ammo=macro_new_ammo(50mw)
  185. typicalSpeed=1100;
  186. descriptionShort="High power magazine";
  187. };
  188. class macro_new_mag(stun,5):DCStun_Mag
  189. {
  190. displayName="5 Round Stun Cell";
  191. descriptionShort = "5 Round Stun Cell";
  192. displayNameShort = "5 Round Stun Cell";
  193. count=5;
  194. picture="\MRC\JLTS\weapons\Core\data\ui\stun_mag_ui_ca";
  195. };
  196. ////////////////////////////////////////////////////
  197. /////////Grenade Launcher Magazines/////////////////
  198. ////////////////////////////////////////////////////
  199. class macro_new_mag(UGL_HE,3):1Rnd_HE_Grenade_shell
  200. {
  201. displayName = "3 Rnd SR HE DC-15A Grenades";
  202. displayNameShort = "3 Rnd SR HE DC-15A";
  203. count=3;
  204. ammo = macro_new_ammo(UGL_HE)
  205. descriptionShort = "3Rd HE SR DC-15A Grenade";
  206. }
  207. class macro_new_mag(UGL_AP,2):1Rnd_HE_Grenade_shell
  208. {
  209. displayName = "2 Rnd SR AP DC-15A Grenades";
  210. displayNameShort = "2 Rnd SR AP DC-15A";
  211. count=2;
  212. ammo = macro_new_ammo(UGL_AP)
  213. descriptionShort = "2Rd AP DC-15A Grenade";
  214. }
  215. class macro_new_mag(UGL_EMP,1) : 1Rnd_HE_Grenade_shell
  216. {
  217. ammo = "RD501_grenade_emp_ammo";
  218. count = 1;
  219. descriptionShort = "1Rnd EMP DC-15A Grenade";
  220. displayName = "1 Rnd EMP DC-15A Grenades";
  221. displayNameShort = "1Rnd EMP DC-15A";
  222. mass = 50;
  223. maxLeadSpeed = 25;
  224. maxThrowHoldTime = 2;
  225. maxThrowIntensityCoef = 1.4;
  226. minThrowIntensityCoef = 0.3;
  227. model = "\thermalD\EMP_Grenade_ammo.p3d";
  228. modelSpecial = "";
  229. nameSound = "";
  230. picture = "\thermalD\flash_x_ca.paa";
  231. quickReload = 0 ;
  232. reloadAction = "";
  233. scope = 2;
  234. selectionFireAnim = "zasleh";
  235. simulation = "ProxyMagazines";
  236. type = 16;
  237. useAction = 0;
  238. useActionTitle = "";
  239. value = 1;
  240. weaponpoolavailable = 1;
  241. weight = 0;
  242. class InventoryPlacements;
  243. class Library
  244. {
  245. libTextDesc = "";
  246. };
  247. }
  248. class macro_new_mag(UGL_HE,6):1Rnd_HE_Grenade_shell
  249. {
  250. displayName = "6 Rd HE RGL6 Grenades";
  251. displayNameShort = "6 Rnd HE RGL6";
  252. count=6;
  253. ammo = macro_new_ammo(UGL_HE)
  254. descriptionShort = "6Rd HE RGL6 Grenade";
  255. }
  256. class macro_new_mag(UGL_AP,6):1Rnd_HE_Grenade_shell
  257. {
  258. displayName = "6 Rd AP RGL6 Grenades";
  259. displayNameShort = "6 Rd AP RGL6";
  260. count=6;
  261. ammo = macro_new_ammo(UGL_AP)
  262. descriptionShort = "6Rd AP RGL6 Grenade";
  263. }
  264. class macro_new_mag(UGL_EMP,6) : 1Rnd_HE_Grenade_shell
  265. {
  266. ammo = "RD501_grenade_emp_ammo";
  267. count = 6;
  268. descriptionShort = "6Rnd EMP RGL6 Grenade";
  269. displayName = "6 Rnd EMP RGL6 Grenades";
  270. displayNameShort = "6Rnd EMP RGL6";
  271. mass = 50;
  272. maxLeadSpeed = 25;
  273. maxThrowHoldTime = 2;
  274. maxThrowIntensityCoef = 1.4;
  275. minThrowIntensityCoef = 0.3;
  276. model = "\thermalD\EMP_Grenade_ammo.p3d";
  277. modelSpecial = "";
  278. nameSound = "";
  279. picture = "\thermalD\flash_x_ca.paa";
  280. quickReload = 0 ;
  281. reloadAction = "";
  282. scope = 2;
  283. selectionFireAnim = "zasleh";
  284. simulation = "ProxyMagazines";
  285. type = 16;
  286. useAction = 0;
  287. useActionTitle = "";
  288. value = 1;
  289. weaponpoolavailable = 1;
  290. weight = 0;
  291. class InventoryPlacements;
  292. class Library
  293. {
  294. libTextDesc = "";
  295. };
  296. };
  297. class macro_new_mag(UGL_Smoke,6):1Rnd_Smoke_Grenade_shell
  298. {
  299. displayName = "6 Rd White Smoke RGL6 Grenades";
  300. displayNameShort = "6 Rnd White Smoke RGL6";
  301. count=6;
  302. ammo = "G_40mm_Smoke";
  303. descriptionShort = "6Rd White Smoke RGL6 Grenade";
  304. };
  305. class macro_new_mag(UGL_Flare,6):UGL_FlareWhite_F
  306. {
  307. displayName = "6 Rd White Flare RGL6 Grenades";
  308. displayNameShort = "6 Rnd White Flare RGL6";
  309. count=6;
  310. ammo = "F_40mm_White";
  311. descriptionShort = "6Rd White Flare RGL6 Grenade";
  312. };
  313. ////////////////////////////////////////////////////
  314. /////////////Grenades Magazines/////////////////////
  315. ////////////////////////////////////////////////////
  316. class macro_new_mag(imploder,1):SWOP_BCCKtermimploder_G
  317. {
  318. scope=2;
  319. displayName = "Republic Thermal Imploder";
  320. displayNameShort = "Republic Thermal Imploder";
  321. count=1;
  322. ammo = macro_new_ammo(imploder)
  323. descriptionShort = "Republic Thermal Imploder";
  324. };
  325. class macro_new_mag(thermaldet,1):SWOP_termDet_Gm
  326. {
  327. scope=2;
  328. displayName = "Republic Thermal Detonator";
  329. displayNameShort = "Republic Thermal Detonator";
  330. count=1;
  331. ammo = macro_new_ammo(thermaldet)
  332. descriptionShort = "Republic Thermal Detonator";
  333. };
  334. ////////////////////////////////////////////////////
  335. /////////////Missile Magazines/////////////////////
  336. ////////////////////////////////////////////////////
  337. class macro_new_mag(rps1,1):RPG32_F
  338. {
  339. scope=1;
  340. weight=1;
  341. mass=1;
  342. }
  343. ////////////////////////////////////////////////////
  344. /////////////Shotgun Magazines/////////////////////
  345. ////////////////////////////////////////////////////
  346. class macro_new_mag(shotgun_scatter,6):2Rnd_12Gauge_Pellets
  347. {
  348. scope=2;
  349. displayName = "6 Rnd SP Magazine";
  350. displayNameShort = "6 Rnd SP Mag";
  351. count=6;
  352. ammo = macro_new_ammo(shotgun_scatter)
  353. descriptionShort = "6 Rnd SP";
  354. };
  355. class macro_new_mag(shotgun_HE,6):2Rnd_12Gauge_Pellets
  356. {
  357. scope=2;
  358. displayName = "6 Rnd UP Magazine";
  359. displayNameShort = "6 Rnd UP Mag";
  360. count=6;
  361. ammo = macro_new_ammo(shotgun_HE)
  362. descriptionShort = "6 Rnd UP";
  363. };
  364. class macro_new_mag(shotgun_EMP,2):2Rnd_12Gauge_Pellets
  365. {
  366. scope=2;
  367. displayName = "2 Rnd EMP Magazine";
  368. displayNameShort = "2 Rnd EMP Mag";
  369. count=2;
  370. ammo = macro_new_ammo(shotgun_EMP)
  371. descriptionShort = "2 Rnd EMP";
  372. };
  373. };