config.cpp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #include "../../RD501_main/config_macros.hpp"
  2. class CfgPatches
  3. {
  4. class macro_patch_name(staticturret)
  5. {
  6. addonRootClass=macro_patch_name(vehicles)
  7. requiredAddons[]=
  8. {
  9. macro_patch_name(vehicles)
  10. };
  11. requiredVersion=0.1;
  12. units[]=
  13. {
  14. macro_new_vehicle(stat,reweb),
  15. macro_new_vehicle(stat,ragl40),
  16. macro_new_vehicle(stat,Striker),
  17. macro_new_vehicle(stat,Railgun)
  18. };
  19. weapons[]=
  20. {
  21. };
  22. };
  23. };
  24. class CfgVehicles
  25. {
  26. class StaticMGWeapon;
  27. class 3AS_HeavyRepeater_base:StaticMGWeapon
  28. {
  29. class Turrets;
  30. };
  31. class 3AS_HeavyRepeater_Unarmoured: 3AS_HeavyRepeater_base
  32. {
  33. class Turrets: Turrets
  34. {
  35. class MainTurret;
  36. };
  37. };
  38. class 3AS_HeavyRepeater_Armoured:3AS_HeavyRepeater_base
  39. {
  40. class Turrets: Turrets
  41. {
  42. class MainTurret;
  43. };
  44. };
  45. class OPTRE_LAU65D_pod;
  46. class OPTRE_Static_Gauss;
  47. class macro_new_vehicle(stat,reweb): 3AS_HeavyRepeater_Unarmoured
  48. {
  49. scope = 2;
  50. author="501st Aux Mod";
  51. displayName = "Republic Heavy E-Web";
  52. faction = macro_republic_faction
  53. editorSubcategory = macro_editor_cat(turrets)
  54. vehicleClass = macro_editor_vehicle_type(turrets)
  55. class Turrets: Turrets
  56. {
  57. class MainTurret: MainTurret
  58. {
  59. weapons[]=
  60. {
  61. macro_new_weapon(stat,eweb)
  62. };
  63. magazines[]=
  64. {
  65. macro_new_mag(eweb,600)
  66. };
  67. };
  68. };
  69. };
  70. class macro_new_vehicle(stat,ragl40): 3AS_HeavyRepeater_Armoured
  71. {
  72. scope = 2;
  73. author="501st Aux Mod";
  74. displayName = "RAGL40 'Boomer'";
  75. faction = macro_republic_faction
  76. editorSubcategory = macro_editor_cat(turrets)
  77. vehicleClass = macro_editor_vehicle_type(turrets)
  78. class Turrets: Turrets
  79. {
  80. class MainTurret: MainTurret
  81. {
  82. weapons[]=
  83. {
  84. macro_new_weapon(stat,ragl40)
  85. };
  86. magazines[]=
  87. {
  88. macro_new_mag(ragl40he,40)
  89. };
  90. };
  91. };
  92. };
  93. class macro_new_vehicle(stat,Striker): OPTRE_LAU65D_pod
  94. {
  95. scope = 2;
  96. author="501st Aux Mod";
  97. displayName = "AAP4 'Striker'";
  98. faction = macro_republic_faction
  99. editorSubcategory = macro_editor_cat(turrets)
  100. vehicleClass = macro_editor_vehicle_type(turrets)
  101. };
  102. class macro_new_vehicle(stat,Railgun): OPTRE_Static_Gauss
  103. {
  104. scope = 2;
  105. author="501st Aux Mod";
  106. displayName = "MAR1 'Driver'";
  107. faction = macro_republic_faction
  108. editorSubcategory = macro_editor_cat(turrets)
  109. vehicleClass = macro_editor_vehicle_type(turrets)
  110. };
  111. };