1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #include "../../../RD501_main/config_macros.hpp"
- #include "../../_common/common.hpp"
- class CfgPatches
- {
- class RD501_patch_MRLS
- {
- author=DANKAUTHORS;
- addonRootClass= MACRO_QUOTE(RD501_patch_vehicle_weapons);
- requiredAddons[]=
- {
- RD501_patch_vehicle_weapons
- };
- requiredVersion=0.1;
- units[]={};
- weapons[]={
- macro_new_weapon(MLRS,M80)
- };
- };
- };
- class CfgWeapons
- {
- //Not Used
- class OPTRE_M79_MLRS;
- class macro_new_weapon(MLRS,M80) : OPTRE_M79_MLRS
- {
- magazines[] = {
- macro_new_mag(MRLS_M80,2)
- };
- };
-
-
- };
|