config.cpp 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. //get generlized macros
  2. #include "../../../RD501_main/config_macros.hpp"
  3. //General name of the vehicle
  4. #define vehicle_addon nuclass
  5. class CfgPatches
  6. {
  7. class macro_patch_name(nuclass)
  8. {
  9. addonRootClass=macro_patch_name(vehicles)
  10. requiredAddons[]=
  11. {
  12. macro_patch_name(vehicles)
  13. };
  14. requiredVersion=0.1;
  15. units[]=
  16. {
  17. macro_new_vehicle(nuclass,mk1)
  18. };
  19. weapons[]=
  20. {
  21. };
  22. };
  23. };
  24. class CfgVehicles
  25. {
  26. class 3as_nuclass_base;
  27. class 3as_nuclass_f: 3as_nuclass_base
  28. {
  29. class UserActions;
  30. };
  31. class 3AS_Nuclass : 3as_nuclass_f
  32. {
  33. class UserActions: UserActions
  34. {
  35. class rampOpen;
  36. class rampClose;
  37. class frontrampOpen;
  38. class frontrampClose;
  39. };
  40. };
  41. class macro_new_vehicle(nuclass,mk1) : 3AS_Nuclass
  42. {
  43. scope=2;
  44. displayName="Republic NuClass Mk.I"
  45. armor=2300;
  46. faction = macro_republic_faction
  47. editorSubcategory = macro_editor_cat_air(Republic_heli)
  48. vehicleClass = macro_editor_vehicle_type_air(Republic)
  49. transportSoldier=35;
  50. #include "../../common/common_pilotCamera.hpp"
  51. RD501_magclamp_large[] = {0.0,1.5,-0.5};
  52. RD501_magclamp_small_forbidden=1;
  53. RD501_magclamp_large_offset[]={0.0,0.0,-10.0};
  54. weapons[]=
  55. {
  56. "ParticleBeamCannon_Nu",
  57. "CMFlareLauncher",
  58. "missiles_DAR",
  59. macro_new_weapon(generic,kannon),
  60. "Laserdesignator_pilotCamera"
  61. };
  62. magazines[]=
  63. {
  64. "240Rnd_CMFlare_Chaff_Magazine",
  65. "240Rnd_CMFlare_Chaff_Magazine",
  66. "240Rnd_CMFlare_Chaff_Magazine",
  67. "240Rnd_CMFlare_Chaff_Magazine",
  68. "Laser_Battery_F",
  69. "Laser_Battery_F",
  70. "Laser_Battery_F",
  71. "24Rnd_missiles",
  72. "24Rnd_missiles",
  73. "24Rnd_missiles",
  74. "24Rnd_missiles",
  75. macro_new_mag(Kannon,100),
  76. macro_new_mag(Kannon,100),
  77. "Laserbatteries"
  78. };
  79. class UserActions:UserActions
  80. {
  81. class ThrusterEngage
  82. {
  83. displayName = "";
  84. displayNameDefault = "";
  85. textToolTip = "";
  86. position = "pilotview";
  87. radius = 20;
  88. priority = 0;
  89. onlyForPlayer = 1;
  90. condition = "((player == driver this) AND (alive this))";
  91. statement = "this execVM ""\RD501_Main\functions\impulse\fnc_impulseIncrease.sqf""";
  92. shortcut="User19"
  93. };
  94. class ThrusterDisengage: ThrusterEngage
  95. {
  96. priority = 0;
  97. displayName = "";
  98. displayNameDefault = "";
  99. textToolTip = "";
  100. condition = "((player == driver this) AND (alive this))";
  101. statement = "this execVM ""\RD501_Main\functions\impulse\fnc_impulseDecrease.sqf""";
  102. shortcut="User20"
  103. };
  104. class rampOpen: rampOpen
  105. {
  106. condition="(this animationSourcePhase 'ramp' == 0) AND (alive this) AND (player in [gunner this, driver this])";
  107. };
  108. class rampClose: rampClose
  109. {
  110. condition="(this animationSourcePhase 'ramp' == 1) AND (alive this) AND (player in [gunner this, driver this])";
  111. };
  112. class frontrampOpen: frontrampOpen
  113. {
  114. condition="(this animationSourcePhase 'rampfront' == 0) AND (alive this) AND (player in [gunner this, driver this])";
  115. };
  116. class frontrampClose: frontrampClose
  117. {
  118. condition="(this animationSourcePhase 'rampfront' == 1) AND (alive this) AND (player in [gunner this, driver this])";
  119. };
  120. };
  121. class ACE_SelfActions
  122. {
  123. class ACE_Passengers
  124. {
  125. condition = "alive _target";
  126. displayName = "Passengers";
  127. insertChildren = "_this call ace_interaction_fnc_addPassengersActions";
  128. statement = "";
  129. };
  130. };
  131. class TransportWeapons
  132. {
  133. class _transport_dc15a
  134. {
  135. weapon = macro_new_weapon(DC,15a)
  136. count = 5;
  137. };
  138. class _transport_dc15s
  139. {
  140. weapon = macro_new_weapon(DC,r15s)
  141. count = 5;
  142. };
  143. class _transport_dc15c
  144. {
  145. weapon = macro_new_weapon(DC,15c)
  146. count = 5;
  147. };
  148. class _transport_dc15l
  149. {
  150. weapon = macro_new_weapon(DC,15l)
  151. count = 2;
  152. };
  153. class _transport_z6
  154. {
  155. weapon = macro_new_weapon_nofam(rz6)
  156. count = 2;
  157. };
  158. class _transport_dc15gl
  159. {
  160. weapon = macro_new_weapon(DC,15cgl)
  161. count = 2;
  162. };
  163. class _transport_valken38x
  164. {
  165. weapon = macro_new_weapon_nofam(valken38x)
  166. count = 2;
  167. };
  168. class _transport_rps6
  169. {
  170. weapon = macro_new_weapon(launcher,rps6)
  171. count = 2;
  172. };
  173. class _transport_rps1
  174. {
  175. weapon = macro_new_weapon(launcher,rps1)
  176. count = 2;
  177. };
  178. class _transport_rps4
  179. {
  180. weapon = macro_new_weapon(launcher,RPS4)
  181. count = 2;
  182. };
  183. class _transport_plx
  184. {
  185. weapon = macro_new_weapon(Launcher,PLX1)
  186. count = 1;
  187. };
  188. class _transport_z1000
  189. {
  190. weapon = macro_new_weapon_nofam(z1000)
  191. count = 1;
  192. };
  193. class _transport_dc15x
  194. {
  195. weapon = macro_new_weapon(DC,r15x)
  196. count = 1;
  197. };
  198. class _transport_rgl6
  199. {
  200. weapon = macro_new_weapon_nofam(rgl6)
  201. count = 1;
  202. };
  203. };
  204. class TransportMagazines
  205. {
  206. class transport_2mw30
  207. {
  208. magazine = macro_new_mag(2mw,30);
  209. count = 15;
  210. };
  211. class transport_5mw15
  212. {
  213. magazine = macro_new_mag(5mw,10);
  214. count = 15;
  215. };
  216. class transport_5mw60
  217. {
  218. magazine = macro_new_mag(5mw,60)
  219. count = 60;
  220. };
  221. class transport_10mw30
  222. {
  223. magazine = macro_new_mag(10mw,30);
  224. count = 60;
  225. };
  226. class transport_10mw400
  227. {
  228. magazine = macro_new_mag(10mw,400);
  229. count = 15;
  230. };
  231. class _transport_20mw20
  232. {
  233. magazine = macro_new_mag(20mw,20);
  234. count = 20;
  235. };
  236. class _transport_20mwup20
  237. {
  238. magazine = macro_new_mag(20mwup,20);
  239. count = 40;
  240. };
  241. class _transport_20mwdp20
  242. {
  243. magazine = macro_new_mag(20mwdp,20);
  244. count = 40;
  245. };
  246. class _transport_20mw240
  247. {
  248. magazine = macro_new_mag(20mw,240);
  249. count = 20;
  250. };
  251. class _transport_30mw10
  252. {
  253. magazine = macro_new_mag(30mw,10);
  254. count = 15;
  255. }
  256. class _transport_30mw7
  257. {
  258. magazine = macro_new_mag(30mw,7)
  259. count = 15;
  260. };
  261. class _transport_40mw5
  262. {
  263. magazine = macro_new_mag(40mw,5)
  264. count = 10;
  265. };
  266. class _transport_stun5
  267. {
  268. magazine = macro_new_mag(stun,5)
  269. count = 20;
  270. };
  271. class _transport_launcher_AT_mags
  272. {
  273. magazine = macro_new_mag(RPS_AT,1)
  274. count = 20;
  275. };
  276. class _transport_launcher_AA_mags
  277. {
  278. magazine = macro_new_mag(RPS_AA,1)
  279. count = 20;
  280. };
  281. class _transport_launcher_RPS4AT_mags
  282. {
  283. magazine = macro_new_mag(rps4heat,1)
  284. count = 20;
  285. };
  286. class _transport_launcher_ARPS4HE_mags
  287. {
  288. magazine = macro_new_mag(rps4he,1)
  289. count = 20;
  290. };
  291. class _transport_launcher_PLXAT_mags
  292. {
  293. magazine = "JLTS_PLX1_AT_mag"
  294. count = 10;
  295. };
  296. class _transport_launcher_PLXAP_mags
  297. {
  298. magazine = "JLTS_PLX1_AP_mag"
  299. count = 10;
  300. };
  301. class _transport_he3
  302. {
  303. magazine = macro_new_mag(UGL_HE,3);
  304. count = 15;
  305. };
  306. class _transport_ap2
  307. {
  308. magazine = macro_new_mag(UGL_AP,2);
  309. count = 15;
  310. };
  311. class _transport_emp1
  312. {
  313. magazine = macro_new_mag(UGL_EMP,1);
  314. count = 3;
  315. };
  316. class _transport_HuntIR_M203
  317. {
  318. magazine = "ACE_HuntIR_M203";
  319. count = 15;
  320. };
  321. class _transport_C12_Remote_Mag
  322. {
  323. magazine = "C12_Remote_Mag";
  324. count = 2;
  325. };
  326. class _transport_RGLHE
  327. {
  328. magazine = macro_new_mag(UGL_HE,6)
  329. count = 10;
  330. };
  331. class _transport_RGLAP
  332. {
  333. magazine = macro_new_mag(UGL_AP,6)
  334. count = 10;
  335. };
  336. class _transport_RGPEMP
  337. {
  338. magazine = macro_new_mag(UGL_EMP,6)
  339. count = 5;
  340. };
  341. class _transport_ShotgunSP
  342. {
  343. magazine = macro_new_mag(shotgun_scatter,6)
  344. count = 20;
  345. };
  346. class _transport_ShotgunUO
  347. {
  348. magazine = macro_new_mag(shotgun_HE,6)
  349. count = 20;
  350. };
  351. class _transport_ShotgunEMP
  352. {
  353. magazine = macro_new_mag(shotgun_EMP,2)
  354. count = 10;
  355. };
  356. class _transport_StaticEweb
  357. {
  358. magazine = macro_new_mag(eweb,1000)
  359. count = 10;
  360. };
  361. class _transport_StaticStriker
  362. {
  363. magazine = macro_new_mag(ragl40he,40)
  364. count = 10;
  365. };
  366. class _transport_StaticBoomer
  367. {
  368. magazine = macro_new_mag(aap,4)
  369. count = 10;
  370. };
  371. class _transport_StaticDriver
  372. {
  373. magazine = macro_new_mag(mar,1)
  374. count = 10;
  375. };
  376. };
  377. class TransportItems
  378. {
  379. class _xx_RD_SquadShield_Mag
  380. {
  381. name = macro_new_mag(squad_shield_sigma,1)
  382. count = 2;
  383. };
  384. class _xx_ACE_HuntIR_monitor
  385. {
  386. name = "ACE_HuntIR_monitor";
  387. count = 1;
  388. };
  389. class _xx_ACE_tourniquet
  390. {
  391. name = "ACE_tourniquet";
  392. count = 15;
  393. };
  394. class _xx_ACE_splint
  395. {
  396. name = "ACE_splint";
  397. count = 15;
  398. };
  399. class _xx_ACE_plasmaIV_250
  400. {
  401. name = "ACE_plasmaIV_250";
  402. count = 15;
  403. };
  404. class _xx_ACE_plasmaIV_500
  405. {
  406. name = "ACE_plasmaIV_500";
  407. count = 15;
  408. };
  409. class _xx_ACE_plasmaIV
  410. {
  411. name = "ACE_plasmaIV";
  412. count = 15;
  413. };
  414. class _xx_ACE_elasticBandage
  415. {
  416. name = "ACE_elasticBandage";
  417. count = 80;
  418. };
  419. class _xx_ACE_quikclot
  420. {
  421. name = "ACE_quikclot";
  422. count = 80;
  423. };
  424. class _xx_ACE_packingBandage
  425. {
  426. name = "ACE_packingBandage";
  427. count = 80;
  428. };
  429. class _xx_ACE_morphine
  430. {
  431. name = "ACE_morphine";
  432. count = 30;
  433. };
  434. class _xx_ACE_painkiller
  435. {
  436. name = "RD501_Painkiller";
  437. count = 30;
  438. };
  439. class _xx_ACE_epinephrine
  440. {
  441. name = "ACE_epinephrine";
  442. count = 20;
  443. };
  444. class _xx_SmokeShellPurple
  445. {
  446. name = "SmokeShellPurple";
  447. count = 5;
  448. };
  449. };
  450. };
  451. };