123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #include "../../RD501_main/config_macros.hpp"
- class CfgPatches
- {
- class macro_patch_name(staticturret)
- {
- addonRootClass=macro_patch_name(vehicles)
- requiredAddons[]=
- {
- macro_patch_name(vehicles)
- };
- requiredVersion=0.1;
- units[]=
- {
- macro_new_vehicle(stat,reweb),
- macro_new_vehicle(stat,ragl40),
- macro_new_vehicle(stat,Striker),
- macro_new_vehicle(stat,Railgun)
- };
- weapons[]=
- {
-
- };
- };
- };
- class CfgVehicles
- {
- class StaticMGWeapon;
- class 3AS_HeavyRepeater_base:StaticMGWeapon
- {
- class Turrets;
- };
- class 3AS_HeavyRepeater_Unarmoured: 3AS_HeavyRepeater_base
- {
- class Turrets: Turrets
- {
- class MainTurret;
- };
- };
- class 3AS_HeavyRepeater_Armoured:3AS_HeavyRepeater_base
- {
- class Turrets: Turrets
- {
- class MainTurret;
- };
- };
- class OPTRE_LAU65D_pod;
- class OPTRE_Static_Gauss;
- class macro_new_vehicle(stat,reweb): 3AS_HeavyRepeater_Unarmoured
- {
- scope = 2;
- author="501st Aux Mod";
- displayName = "Republic Heavy E-Web";
- faction = macro_republic_faction
- editorSubcategory = macro_editor_cat(turrets)
- vehicleClass = macro_editor_vehicle_type(turrets)
- class Turrets: Turrets
- {
- class MainTurret: MainTurret
- {
- weapons[]=
- {
- macro_new_weapon(stat,eweb)
- };
- magazines[]=
- {
- macro_new_mag(eweb,600)
- };
- };
- };
- };
- class macro_new_vehicle(stat,ragl40): 3AS_HeavyRepeater_Armoured
- {
- scope = 2;
- author="501st Aux Mod";
- displayName = "RAGL40 'Boomer'";
- faction = macro_republic_faction
- editorSubcategory = macro_editor_cat(turrets)
- vehicleClass = macro_editor_vehicle_type(turrets)
- class Turrets: Turrets
- {
- class MainTurret: MainTurret
- {
- weapons[]=
- {
- macro_new_weapon(stat,ragl40)
- };
- magazines[]=
- {
- macro_new_mag(ragl40he,40)
- };
- };
- };
- };
- class macro_new_vehicle(stat,Striker): OPTRE_LAU65D_pod
- {
- scope = 2;
- author="501st Aux Mod";
- displayName = "AAP4 'Striker'";
- faction = macro_republic_faction
- editorSubcategory = macro_editor_cat(turrets)
- vehicleClass = macro_editor_vehicle_type(turrets)
- };
- class macro_new_vehicle(stat,Railgun): OPTRE_Static_Gauss
- {
- scope = 2;
- author="501st Aux Mod";
- displayName = "MAR1 'Driver'";
- faction = macro_republic_faction
- editorSubcategory = macro_editor_cat(turrets)
- vehicleClass = macro_editor_vehicle_type(turrets)
- };
- };
|