123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #define COMPONENT DC_15s
- #include "../../RD501_main/config_macros.hpp"
- #include "../_common/common.hpp"
- class CfgPatches
- {
- class RD501_patch_rgl6
- {
- author="RD501";
- addonRootClass = MACRO_QUOTE(RD501_patch_weapons);
- requiredAddons[]=
- {
- RD501_patch_weapons
- };
- requiredVersion=0.1;
- units[]={};
- weapons[]={
- macro_new_weapon_nofam(rgl6),
- };
- };
- };
- class CfgWeapons
- {
- class OPTRE_Rifle_Base;
- class OPTRE_M319:OPTRE_Rifle_Base
- {
- class Single;
- };
- class macro_new_weapon_nofam(rgl6):OPTRE_M319
- {
- displayName="Republic GL-6";
- baseWeapon=MACRO_QUOTE(macro_new_weapon_nofam(rgl6));
- magazines[]=
- {
- macro_new_mag(UGL_EMP,6),
- macro_new_mag(UGL_HE,6),
- macro_new_mag(UGL_AP,6),
- macro_new_mag(UGL_Smoke,6),
- macro_new_mag(UGL_Flare,6)
- };
- class Single : Single
- {
- reloadTime=0.24;
- };
- };
- };
|