config.cpp 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #define COMPONENT DC_15s
  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,15c),
  18. };
  19. };
  20. };
  21. class CfgWeapons
  22. {
  23. class RD501_stun_muzzle;
  24. class 3AS_DC15C_Base_F;
  25. class 3AS_DC15C_F:3AS_DC15C_Base_F
  26. {
  27. class FullAuto;
  28. class Single;
  29. class WeaponSlotsInfo;
  30. };
  31. class macro_new_weapon(DC,15c):3AS_DC15C_F
  32. {
  33. displayName="Republic DC-15C";
  34. dispersion=0.00116;
  35. ACE_Overheating_mrbs = 300000;
  36. recoil="recoil_mxc";
  37. magazines[]=
  38. {
  39. macro_new_mag(10mw,30)
  40. };
  41. muzzles[]=
  42. {
  43. "this",
  44. "Stun"
  45. };
  46. class Stun: RD501_stun_muzzle
  47. {
  48. displayName="High Energy StunMode";
  49. };
  50. class FullAuto:FullAuto
  51. {
  52. reloadTime=0.08;
  53. dispersion=0.00116;
  54. };
  55. class Single : Single
  56. {
  57. reloadTime=0.08;
  58. dispersion=0.00116;
  59. };
  60. class WeaponSlotsInfo: WeaponSlotsInfo
  61. {
  62. mass = 30;
  63. class CowsSlot
  64. {
  65. displayName = "Optics Slot";
  66. iconPicture = "\A3\Weapons_F\Data\UI\attachment_top.paa";
  67. iconPinpoint = "Bottom";
  68. iconPosition[] = {0.5,0.35};
  69. iconScale = 0.2;
  70. linkProxy = "\a3\data_f\proxies\weapon_slots\TOP";
  71. scope = 0;
  72. compatibleItems[] =
  73. {
  74. "RD501_RCO",
  75. "RD501_RCO_2",
  76. "RD501_RCO_3",
  77. "RD501_Holosight",
  78. "RD501_Holosight_2",
  79. "RD501_Holosight_3",
  80. "RD501_DMS",
  81. "RD501_DMS_2",
  82. "RD501_DMS_3",
  83. "RD501_DMS_4",
  84. "RD501_MRCO",
  85. "RD501_MRCO_2",
  86. "RD501_MRCO_3"
  87. };
  88. };
  89. class MuzzleSlot
  90. {
  91. linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
  92. displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
  93. compatibleItems[]=
  94. {
  95. "RD501_muzzle_flash",
  96. "RD501_acc_particle_condenser",
  97. "RD501_acc_particle_accelerator"
  98. };
  99. iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
  100. iconPinpoint="Center";
  101. };
  102. class PointerSlot
  103. {
  104. linkProxy = "\A3\data_f\proxies\weapon_slots\SIDE";
  105. displayName = "Pointer Slot";
  106. compatibleItems[] = {"acc_flashlight","acc_pointer_IR"};
  107. };
  108. };
  109. };
  110. };