config.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. #define COMPONENT vehicle_weapons
  2. #include "../RD501_main/config_macros.hpp"
  3. #include "_common/common.hpp"
  4. class CfgPatches
  5. {
  6. class macro_patch_name(vehicle_weapons)
  7. {
  8. author=DANKAUTHORS;
  9. requiredAddons[]=
  10. {
  11. macro_lvl1_req
  12. };
  13. requiredVersion=0.1;
  14. units[]={};
  15. weapons[]={
  16. };
  17. };
  18. };
  19. //scopes
  20. class CfgWeapons
  21. {
  22. };
  23. class CfgMagazineWells
  24. {
  25. class macro_new_magwell(generic_aircraft_laser)
  26. {
  27. macro_new_magwell(generic_aircraft_colors)[]=
  28. {
  29. macro_new_mag(generic_aircraft_gun,1000),
  30. macro_new_mag(generic_aircraft_gun_blue,1000),
  31. macro_new_mag(generic_aircraft_gun_green,1000),
  32. macro_new_mag(generic_aircraft_gun_purple,1000),
  33. macro_new_mag(generic_aircraft_gun_preatorian,1000)
  34. };
  35. };
  36. class macro_new_magwell(generic_aircraft_cannon)
  37. {
  38. macro_new_magwell(generic_aircraft_colors)[]=
  39. {
  40. macro_new_mag(generic_aircraft_cannon_red,1000),
  41. macro_new_mag(generic_aircraft_cannon_green,1000),
  42. macro_new_mag(generic_aircraft_cannon_blue,1000),
  43. macro_new_mag(generic_aircraft_cannon_plasma_red,1000),
  44. macro_new_mag(generic_aircraft_cannon_plasma_blue,1000),
  45. macro_new_mag(generic_aircraft_cannon_purple,1000)
  46. };
  47. };
  48. };
  49. class CfgMagazines
  50. {
  51. class 500Rnd_Cannon_30mm_Plane_CAS_02_F;
  52. //laser gun + kannon
  53. #include "_mags/aircraft_laser_gun.hpp"
  54. //laser cannon
  55. #include "_mags/aircraft_laser_cannon.hpp"
  56. class OPTRE_6Rnd_ASGM2_rockets;
  57. class macro_new_mag(MRLS_M80,2): OPTRE_6Rnd_ASGM2_rockets
  58. {
  59. count = 2;
  60. };
  61. class SWOP_e11_Mag;
  62. #include "_mags/super_mg.hpp"
  63. class 100Rnd_TXLaser_Cannon_mag;
  64. #include "_mags/tank_cannons.hpp"
  65. class og9_Laser_Cannon_mag;
  66. class macro_new_mag(homing_spider,10): og9_Laser_Cannon_mag
  67. {
  68. displayNameShort = "Blaster Cannon.";
  69. ammo = macro_new_ammo(homing_spider)
  70. count = 10;
  71. tracersEvery = 1;
  72. initSpeed =800;
  73. maxLeadSpeed = 30000;
  74. nameSound = "cannon";
  75. };
  76. #include "_mags/aa_gun.hpp"
  77. class 4Rnd_AAA_missiles;
  78. class 7Rnd_Rocket_04_AP_F;
  79. class magazine_Missile_rim116_x21;
  80. class magazine_Missile_rim162_x8;
  81. class PylonRack_12Rnd_PG_missiles;
  82. class 4Rnd_LG_Jian;
  83. #include "_mags/missiles.hpp"
  84. class 4Rnd_BombCluster_02_F;
  85. class PylonRack_Bomb_SDB_x4;
  86. class 2Rnd_GBU12_LGB;
  87. class macro_new_mag(cluster_bomb,4) : 4Rnd_BombCluster_02_F
  88. {
  89. ammo = macro_new_ammo(cluster_bomb)
  90. count = 4;
  91. DisplayName = "Thunderstorm CB";
  92. displayNameShort = "Thunderstorm CB";
  93. tracersEvery=1;
  94. };
  95. class macro_new_mag(cluster_bomb,2) : macro_new_mag(cluster_bomb,4)
  96. {
  97. count = 2;
  98. };
  99. class macro_new_mag(cluster_emp,4) : macro_new_mag(cluster_bomb,4)
  100. {
  101. ammo = macro_new_ammo(cluster_emp)
  102. DisplayName = "Lightning EMP CB";
  103. displayNameShort = "Lightning EMP CB";
  104. };
  105. class macro_new_mag(sdb_bomb,4) : PylonRack_Bomb_SDB_x4
  106. {
  107. ammo = macro_new_ammo(sdb_bomb)
  108. count = 4;
  109. DisplayName = "Wrath PGB";
  110. displayNameShort = "Wrath PGB";
  111. tracersEvery=1;
  112. };
  113. class macro_new_mag(lgb_bomb,4) : 2Rnd_GBU12_LGB
  114. {
  115. ammo = macro_new_ammo(lgb_bomb)
  116. count = 4;
  117. DisplayName = "Ruinscape GB";
  118. displayNameShort = "Ruinscape GB";
  119. tracersEvery=1;
  120. };
  121. class 1000Rnd_Laser_Cannon_LAAT;
  122. class macro_new_mag(laat_cannon,100) : 1000Rnd_Laser_Cannon_LAAT
  123. {
  124. displayNameShort = "";
  125. ammo = macro_new_ammo(laat_cannon)
  126. count = 100;
  127. tracersEvery = 1;
  128. initSpeed = 2000;
  129. muzzleImpulseFactor = 0;
  130. brightness = 100;
  131. magazineReloadTime=10;
  132. macro_no_muzzle_impulse
  133. };
  134. class 500Rnd_Cannon_ARCback;
  135. class macro_new_mag(voltic,200):500Rnd_Cannon_ARCback
  136. {
  137. displayNameShort = "";
  138. ammo = macro_new_ammo(voltic)
  139. count = 200;
  140. tracersEvery = 1;
  141. initSpeed = 1036;
  142. maxLeadSpeed = 300;
  143. macro_no_muzzle_impulse
  144. };
  145. class 1000Rnd_Laser_Cannon_EWEBSWBF_REP;
  146. class macro_new_mag(laat_ball_turret,200): 1000Rnd_Laser_Cannon_EWEBSWBF_REP
  147. {
  148. displayName = "Laat Ball Turret Mag";
  149. displayNameShort = "Ball Turret Mag";
  150. ammo =macro_new_ammo(ball_turret)
  151. count = 300;
  152. tracersEvery = 1;
  153. initSpeed = 1036;
  154. maxLeadSpeed = 300;
  155. muzzleImpulseFactor = 0;
  156. scope = 1;
  157. };
  158. class 2Rnd_Bomb_03_F;
  159. class macro_new_mag(carpet_I_bomb_mag,20): 2Rnd_Bomb_03_F
  160. {
  161. dlc = "RD501";
  162. scope = 2;
  163. displayName = "20 Rnd Carpet I Bomb";
  164. displayNameShort = "20 Rnd Bomb";
  165. count = 20;
  166. ammo = macro_new_ammo(carpet_I_bomb);
  167. initSpeed = 0;
  168. maxLeadSpeed = 1000;
  169. };
  170. };
  171. #include "_common/sensor_templates.hpp"
  172. class CfgAmmo
  173. {
  174. class B_35mm_AA_Tracer_Red;
  175. class LaserAmmo_Minigun;
  176. class SWOP_DTL19_BlasterRifle_Ammo;
  177. class TurboLaser_Laserx2;
  178. class ATTE_Laser;
  179. class M_Air_AA;
  180. class Rocket_04_AP_F;
  181. class ammo_Missile_rim162;
  182. class M_PG_AT;
  183. class M_Jian_AT;
  184. class ammo_Missile_rim116;
  185. class TurboLaser_Laserx2;
  186. //laser gun + kannon
  187. #include "_ammo/aircraft_laser_gun.hpp"
  188. //laser cannon
  189. #include "_ammo/aircraft_laser_cannon.hpp"
  190. #include "_ammo/super_mg.hpp"
  191. #include "_ammo/tank_cannons.hpp"
  192. class macro_new_ammo(homing_spider): TurboLaser_Laserx2//og9_Laser
  193. {
  194. hit = 185;
  195. indirectHit = 75;
  196. indirectHitRange = 1;
  197. visibleFire = 32;
  198. audibleFire = 32;
  199. visibleFireTime = 6;
  200. explosionSoundEffect = "DefaultExplosion";
  201. effectFly = "og9_Laser_Effect";
  202. explosive = 0.5;
  203. airLock = 1;
  204. CraterEffects = "ExploAmmoLaserCrater";
  205. explosionEffects = "ExploAmmoLaserCannon";
  206. model = "\SpiderDroid\Laserog9";
  207. caliber = 20;
  208. };
  209. #include "_ammo/missiles.hpp"
  210. class BombCluster_02_Ammo_F;
  211. class ammo_Bomb_SDB;
  212. class Bo_GBU12_LGB;
  213. class macro_new_ammo(cluster_bomb) : BombCluster_02_Ammo_F
  214. {
  215. DisplayName = "Thunderstorm CB";
  216. displayNameShort = "Thunderstorm CB";
  217. //effectFly = "RD501_Effect_Violet";
  218. //effectsFire = "RD501_Effect_Violet";
  219. //effectsMissileInit = "RD501_laat_PylonBackEffectsFFAR";
  220. //effectsMissile = "RD501_FX_Missile_AA";
  221. muzzleEffect = "";
  222. //effectsSmoke = "RD501_Effect_Violet";
  223. tracerColor[] = {"blue"};
  224. brightness = 20000;
  225. lightColor[] = {0, 0, 1, 1};
  226. triggerTime = 0.1;
  227. ExplosionEffects = "ProtonbombAmmoExplosion";
  228. hit = 650;
  229. indirectHit =325;
  230. indirectHitRange = 6;
  231. };
  232. class Mo_cluster_Bomb_02_F;
  233. class macro_new_ammo(cluster_emp_sub): Mo_cluster_Bomb_02_F
  234. {
  235. hit = 0.1;
  236. indirectHit = 0.01;
  237. indirectHitRange=40;
  238. JLTS_isEMPAmmo=1;
  239. explosionEffects="JLTS_fx_exp_EMP";
  240. SoundSetExplosion[]=
  241. {
  242. "JLTS_GrenadeEMP_Exp_SoundSet",
  243. "JLTS_GrenadeEMP_Tail_SoundSet",
  244. "Explosion_Debris_SoundSet"
  245. };
  246. class CamShakeExplode
  247. {
  248. distance=10;
  249. duration=1;
  250. frequency=20;
  251. power=0;
  252. };
  253. };
  254. class macro_new_ammo(cluster_emp) : BombCluster_02_Ammo_F
  255. {
  256. DisplayName = "Lightning EMP CB";
  257. displayNameShort = "Lightning EMP CB";
  258. muzzleEffect = "";
  259. JLTS_isEMPAmmo=1;
  260. tracerColor[] = {"blue"};
  261. brightness = 20000;
  262. lightColor[] = {0, 0, 1, 1};
  263. triggerTime = 0.1;
  264. hit = 0.1;
  265. indirectHit = 0.01;
  266. indirectHitRange = 6;
  267. submunitionAmmo[]=
  268. {
  269. macro_new_ammo(cluster_emp_sub),
  270. 1.0
  271. };
  272. submunitionConeType[]=
  273. {
  274. "randomcenter",
  275. 45
  276. };
  277. };
  278. class macro_new_ammo(sdb_bomb) : ammo_Bomb_SDB
  279. {
  280. DisplayName = "Wrath PGB";
  281. displayNameShort = "Wrath PGB";
  282. // effectFly = "RD501_Effect_Violet";
  283. // effectsFire = "RD501_Effect_Violet";
  284. // effectsMissileInit = "RD501_laat_PylonBackEffectsFFAR";
  285. // effectsMissile = "RD501_FX_Missile_AA";
  286. muzzleEffect = "";
  287. //effectsSmoke = "RD501_Effect_Violet";
  288. tracerColor[] = {"blue"};
  289. brightness = 20000;
  290. lightColor[] = {0, 0, 1, 1};
  291. triggerTime = 0.1;
  292. ExplosionEffects = "ProtonbombAmmoExplosion";
  293. hit = 2000;
  294. indirectHit = 1000;
  295. indirectHitRange = 3;
  296. };
  297. class macro_new_ammo(lgb_bomb) : Bo_GBU12_LGB
  298. {
  299. DisplayName = "Ruin GBU";
  300. displayNameShort = "Ruin GBU";
  301. // effectFly = "RD501_Effect_Violet";
  302. // effectsFire = "RD501_Effect_Violet";
  303. // effectsMissileInit = "RD501_laat_PylonBackEffectsFFAR";
  304. // effectsMissile = "RD501_FX_Missile_AA";
  305. muzzleEffect = "";
  306. // effectsSmoke = "RD501_Effect_Violet";
  307. tracerColor[] = {"blue"};
  308. brightness = 20000;
  309. lightColor[] = {0, 0, 1, 1};
  310. triggerTime = 0.1;
  311. ExplosionEffects = "ProtonbombAmmoExplosion";
  312. hit = 650;
  313. indirectHit =650;
  314. indirectHitRange = 25;
  315. };
  316. class macro_new_ammo(laat_cannon): TurboLaser_Laserx2//TurboLaser_Laserx2//SW_SpeederBikeCanon_Ammo//swop_bywingCannonammo//LAAT_Laser
  317. {
  318. explosive = 0.5;
  319. hit = 1000;
  320. indirectHit =800;
  321. indirectHitRange = 6;
  322. caliber = 1;
  323. timeToLive=9;
  324. ACE_caliber=1;
  325. craterEffects = "ImpactEffectsMedium";
  326. explosionSoundEffect = "DefaultExplosion";
  327. ExplosionEffects = "ExploAmmoExplosion";
  328. model = "\TIE\tracer_green.p3d";
  329. effectFly = "SWOP_greenLaserEffect";
  330. aiAmmoUsageFlags = "64 + 128 + 256 + 512";
  331. allowAgainstInfantry = 1;
  332. cost = 1;
  333. soundSetBulletFly[] = {"SWOP_HEAVYBullet_FlyBy_SoundSet"};
  334. SoundSetExplosion[] = {"Mortar_Exp_SoundSet","Mortar_Tail_SoundSet","Explosion_Debris_SoundSet"};
  335. soundSetSonicCrack[] = {"bulletSonicCrack_SoundSet","bulletSonicCrackTail_SoundSet"};
  336. supersonicCrackFar[] = {"\ca\Weapons\Data\Sound\supersonic_crack_50meters.wss", 1, 50};
  337. supersonicCrackNear[] = {"\ca\Weapons\Data\Sound\supersonic_crack_close.wss", 1, 50};
  338. };
  339. class swop_bywingCannonammo;
  340. class macro_new_ammo(voltic):swop_bywingCannonammo
  341. {
  342. hit = 400;
  343. indirectHit = 150;
  344. indirectHitRange = 6;
  345. explosive = 0.2;
  346. caliber = 9;
  347. aiAmmoUsageFlags = "64 + 128 + 256 + 512";
  348. allowAgainstInfantry = 1;
  349. };
  350. class macro_new_ammo(ball_turret):TurboLaser_Laserx2//SW_SpeederBikeCanon_Ammo//Vwing_ammo
  351. {
  352. hit = 600;
  353. timeToLive = 5;
  354. indirectHit = 400;
  355. indirectHitRange = 1;
  356. explosive = 1;
  357. caliber = 6;
  358. ACE_caliber=0;
  359. tracerScale = 1;
  360. aiAmmoUsageFlags = "64 + 128 + 256 + 512";
  361. allowAgainstInfantry = 1;
  362. model = "\SWOP_Main\Effects\Tracer\Lasergreen";
  363. cost = 1;
  364. CraterEffects = "-";
  365. CraterWaterEffects = "ImpactEffectsWaterHE";
  366. ExplosionEffects ="SWOP_LaserExploSmallblue2";
  367. soundHit1[] = {"SWOP_Main\FlyBy\impactosheavy\impactosheavy1.ogg", 1.2, 1, 50};
  368. soundHit2[] = {"SWOP_Main\FlyBy\impactosheavy\impactosheavy2.ogg", 1.2, 1, 50};
  369. soundHit3[] = {"SWOP_Main\FlyBy\impactosheavy\impactosheavy3.ogg", 1.2, 1, 50};
  370. soundHit4[] = {"SWOP_Main\FlyBy\impactosheavy\impactosheavy4.ogg", 1.2, 1, 50};
  371. multiSoundHit[] = {"soundHit1", 0.25, "soundHit2", 0.25, "soundHit3", 0.25, "soundHit4", 0.25};
  372. };
  373. class Bo_Mk82;
  374. class macro_new_ammo(carpet_I_bomb): Bo_Mk82
  375. {
  376. model = "OPTRE_weapons\Aircraft\500lb_bomb_fly.p3d";
  377. hit = 10000;
  378. indirectHit = 10000;
  379. indirectHitRange = 30;
  380. caliber = 3;
  381. explosive = 1;
  382. timeToLive = 240;
  383. triggerTime=5;
  384. triggerOnImpact=true;
  385. //ExplosionEffects = "ProtonbombAmmoExplosionOrangeRD501";//"ProtonbombAmmoExplosionPurpleRD501";//"ProtonbombAmmoExplosionYellowRD501";//"ProtonbombAmmoExplosion";
  386. //explosionTime = 20;
  387. };
  388. };