1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #define COMPONENT rocket
- #include "../../RD501_main/config_macros.hpp"
- #include "../_common/common.hpp"
- class CfgPatches
- {
- class macro_patch_name(rocket)
- {
- author=DANKAUTHORS;
- addonRootClass= macro_patch_name(weapons)
- requiredAddons[]=
- {
- macro_patch_name(weapons)
- };
- requiredVersion=0.1;
- units[]={};
- weapons[]={
- macro_new_weapon(hh,15),
- macro_new_weapon(rps,6)
- };
- };
- };
- class cfgWeapons
- {
- class launch_RPG32_F;
- class RocketHH15Clone;
- class RocketRPS6_F;
- class macro_new_weapon(hh,15):RocketHH15Clone
- {
- author= "RD501";
- _generalMacro = macro_new_weapon(hh,15)
- scope = 2;
- scopeCurator=2;
- scopeArsenal=2;
- displayName = "Republic HH-15 Rocket Launcher.";
- #include "rocket_scope_fix.hpp"
- magazineWell[] += {macro_new_magwell(rocket_RPS)};
- };
- class macro_new_weapon(rps,6):RocketRPS6_F
- {
- author= "RD501";
- _generalMacro = macro_new_weapon(rps,6)
- scope = 2;
- scopeCurator=2;
- scopeArsenal=2;
- displayName = "Republic RPS 6 Rocket Launcher.";
- recoil = "recoil_single_law";
-
- #include "rocket_scope_fix.hpp"
- magazineWell[] += {macro_new_magwell(rocket_RPS)};
- };
- };
|