config.cpp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. };
  19. };
  20. };
  21. class CfgWeapons
  22. {
  23. class RD501_stun_muzzle;
  24. class JLTS_DC15A_ugl;
  25. class JLTS_DC15A_ugl_plastic:JLTS_DC15A_ugl
  26. {
  27. class Single;
  28. class EGLM;
  29. class WeaponSlotsInfo
  30. {
  31. class CowsSlot;
  32. class PointerSlot;
  33. class MuzzleSlot;
  34. };
  35. };
  36. class macro_new_weapon(DC,15gl):JLTS_DC15A_ugl_plastic
  37. {
  38. displayName="Republic DC-15A UGL";
  39. JLTS_hasElectronics=0;
  40. ACE_Overheating_mrbs = 300000;
  41. magazines[]=
  42. {
  43. macro_new_mag(10mw,30)
  44. };
  45. modes[] = {"Single", "Burst"};
  46. muzzles[]=
  47. {
  48. "this",
  49. "Stun",
  50. "EGLM"
  51. };
  52. class Stun: RD501_stun_muzzle
  53. {
  54. displayName="High Energy StunMode";
  55. };
  56. class Single:Single
  57. {
  58. reloadTime=0.1;
  59. };
  60. class Burst : Single
  61. {
  62. reloadTime=0.1;
  63. burst=3;
  64. textureType="burst";
  65. };
  66. class EGLM:EGLM
  67. {
  68. magazines[] = {};
  69. magazineWell[] += {macro_new_magwell(GL_Mags)};
  70. };
  71. class WeaponSlotsInfo: WeaponSlotsInfo
  72. {
  73. mass = 30;
  74. class CowsSlot: CowsSlot
  75. {
  76. displayName = "Optics Slot";
  77. iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
  78. iconPinpoint = "Bottom";
  79. iconPosition[] = {0.5,0.35};
  80. iconScale = 0.2;
  81. linkProxy = "\A3\data_f\proxies\weapon_slots\TOP";
  82. scope = 0;
  83. compatibleItems[] =
  84. {
  85. //macro_new_weapon(scope,dc_15a_acog),
  86. //"RD501_RCO",
  87. //"RD501_RCO_2",
  88. //"RD501_RCO_3",
  89. "RD501_MRCO",
  90. "RD501_MRCO_2",
  91. "RD501_MRCO_3"
  92. //"RD501_Holosight",
  93. //"RD501_Holosight_2",
  94. //"RD501_Holosight_3"
  95. };
  96. };
  97. class MuzzleSlot: MuzzleSlot
  98. {
  99. linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
  100. displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
  101. compatibleItems[]=
  102. {
  103. "RD501_muzzle_flash"
  104. };
  105. iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
  106. iconPinpoint="Center";
  107. };
  108. class PointerSlot : PointerSlot
  109. {
  110. linkProxy = "\A3\data_f\proxies\weapon_slots\SIDE";
  111. displayName = "Pointer Slot";
  112. compatibleItems[] = {"acc_flashlight","acc_pointer_IR","ace_acc_pointer_green"};
  113. };
  114. };
  115. };
  116. };