1
0

config.cpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. #define COMPONENT z6_patch
  2. #include "../../RD501_main/config_macros.hpp"
  3. #include "../_common/common.hpp"
  4. class CfgPatches
  5. {
  6. class macro_patch_name(z6)
  7. {
  8. author=DANKAUTHORS;
  9. addonRootClass= macro_patch_name(weapons)
  10. requiredAddons[]=
  11. {
  12. macro_patch_name(weapons),
  13. "3AS_Weapons"
  14. };
  15. requiredVersion=0.1;
  16. units[]={};
  17. weapons[]={
  18. macro_new_weapon_nofam(Z6),
  19. macro_new_weapon_nofam(rZ6),
  20. "SWOP_Valken38XAuto_XD",
  21. macro_new_weapon_nofam(Z1000)
  22. };
  23. };
  24. };
  25. class Mode_SemiAuto;
  26. class cfgWeapons
  27. {
  28. class LMG_Mk200_F;
  29. class JLTS_Z6:LMG_Mk200_F
  30. {
  31. class manual;
  32. class WeaponSlotsInfo
  33. {
  34. class MuzzleSlot;
  35. };
  36. };
  37. class macro_new_weapon_nofam(rZ6):JLTS_Z6
  38. {
  39. scope=2;
  40. scopeArsenal=2;
  41. JLTS_hasElectronics=0;
  42. recoil="recoil_lim"
  43. baseWeapon=macro_new_weapon_nofam(rZ6)
  44. displayName="Republic Z6 Chaingun";
  45. ACE_Overheating_mrbs = 450000;
  46. magazines[]=
  47. {
  48. macro_new_mag(10mw,400)
  49. };
  50. modes[] = {"manual", "Overcharge"};
  51. class manual:manual
  52. {
  53. reloadTime=0.059;
  54. };
  55. class Overcharge:manual
  56. {
  57. dispersion = Z6_accuracy_burst
  58. displayName = "Over Charge Auto";
  59. reloadTime = Z6_burst_reload
  60. burst = 25;
  61. textureType = "fastAuto";
  62. };
  63. class WeaponSlotsInfo: WeaponSlotsInfo
  64. {
  65. mass = 30;
  66. class MuzzleSlot: MuzzleSlot
  67. {
  68. linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
  69. displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
  70. compatibleItems[]=
  71. {
  72. "RD501_muzzle_flash",
  73. "RD501_acc_particle_condenser",
  74. "RD501_acc_particle_accelerator"
  75. };
  76. iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
  77. iconPinpoint="Center";
  78. };
  79. };
  80. class HitEffects
  81. {
  82. Hit_Foliage_green="";
  83. Hit_Foliage_Dead="";
  84. Hit_Foliage_Green_big="";
  85. Hit_Foliage_Palm="";
  86. Hit_Foliage_Pine="";
  87. hitFoliage="";
  88. hitGlass="";
  89. hitGlassArmored="";
  90. hitWood="";
  91. hitHay="";
  92. hitMetal="";
  93. hitMetalPlate="";
  94. hitBuilding="";
  95. hitPlastic="";
  96. hitRubber="";
  97. hitConcrete="";
  98. hitMan="ImpactEffectsBlood";
  99. hitGroundSoft="";
  100. hitGroundRed="";
  101. hitGroundHard="";
  102. hitWater="";
  103. hitVirtual="";
  104. };
  105. };
  106. class 3AS_Chaingun;
  107. class macro_new_weapon_nofam(z1000): 3AS_Chaingun
  108. {
  109. scope=2;
  110. scopeArsenal=2;
  111. recoil="recoil_mmg_02";
  112. displayName="Republic Z1000 Chaingun";
  113. picture = "\RD501_Weapons\Z6\chaingun_icon.paa";
  114. RD501_Empty_Weapon = macro_quote(macro_new_weapon_nofam(z1000u));
  115. magazines[]=
  116. {
  117. macro_new_mag(z1000,3000)
  118. };
  119. class EventHandlers {
  120. fired = macro_quote(_this call macro_fnc_name(onWeaponFiredSwapToEmpty));
  121. };
  122. class HitEffects
  123. {
  124. Hit_Foliage_green="";
  125. Hit_Foliage_Dead="";
  126. Hit_Foliage_Green_big="";
  127. Hit_Foliage_Palm="";
  128. Hit_Foliage_Pine="";
  129. hitFoliage="";
  130. hitGlass="";
  131. hitGlassArmored="";
  132. hitWood="";
  133. hitHay="";
  134. hitMetal="";
  135. hitMetalPlate="";
  136. hitBuilding="";
  137. hitPlastic="";
  138. hitRubber="";
  139. hitConcrete="";
  140. hitMan="ImpactEffectsBlood";
  141. hitGroundSoft="";
  142. hitGroundRed="";
  143. hitGroundHard="";
  144. hitWater="";
  145. hitVirtual="";
  146. };
  147. };
  148. class macro_new_weapon_nofam(z1000u): 3AS_Chaingun
  149. {
  150. scope=1;
  151. scopeArsenal=1;
  152. displayName="Z1000 Chaingun (Used)";
  153. picture = "\RD501_Weapons\Z6\chaingun_icon.paa";
  154. _generalMacro="launch_RPG32_F";
  155. magazines[]=
  156. {
  157. "none"
  158. };
  159. };
  160. };