1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #define COMPONENT DC_15l
- #include "../../../RD501_main/config_macros.hpp"
- #include "../../_common/common.hpp"
- class CfgPatches
- {
- class macro_patch_name(dc_15l)
- {
- author="RD501";
- addonRootClass= macro_patch_name(weapons)
- requiredAddons[]=
- {
- macro_patch_name(weapons)
- };
- requiredVersion=0.1;
- units[]={};
- weapons[]={
- macro_new_weapon(DC,15l),
- };
- };
- };
- class CfgWeapons
- {
- class UnderBarrelSlot;
- class 3AS_DC15L_Base_F;
- class 3AS_DC15L_F:3AS_DC15L_Base_F
- {
- class FullAuto;
- class Single;
- class WeaponSlotsInfo
- {
- class CowsSlot;
- class MuzzleSlot;
- class UnderBarrelSlot;
- };
- };
- class macro_new_weapon(DC,15l):3AS_DC15L_F
- {
- displayName="Republic DC-15L";
- recoil="recoil_mmg_02";
- deployedPivot="bipod";
- dispersion=0.00145;
- ACE_overheating_mrbs = 3000000000;
- magazines[]=
- {
- macro_new_mag(20mw,240)
- };
- class FullAuto:FullAuto
- {
- reloadTime=0.08;
- dispersion=0.00145;
- };
- class Single : Single
- {
- reloadTime=0.08;
- dispersion=0.00145;
- };
- class WeaponSlotsInfo: WeaponSlotsInfo
- {
- mass = 30;
- class CowsSlot: CowsSlot
- {
- access = 1;
- compatibleItems[] =
- {
- macro_new_weapon(scope,dc_15a_acogtcw)
- };
- };
- class UnderBarrelSlot:UnderBarrelSlot
- {
- linkProxy="\A3\Data_F_Mark\Proxies\Weapon_Slots\UNDERBARREL";
- compatibleItems[]=
- {
- "bipod_01_F_blk",
- };
- iconPicture="\A3\Weapons_F_Mark\Data\UI\attachment_under.paa";
- iconPinpoint="Bottom";
- };
- class MuzzleSlot: MuzzleSlot
- {
- linkProxy="\A3\data_f\proxies\weapon_slots\MUZZLE";
- displayName="$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
- compatibleItems[]=
- {
- "RD501_muzzle_flash"
- };
- iconPicture="\A3\Weapons_F\Data\UI\attachment_muzzle.paa";
- iconPinpoint="Center";
- };
- };
- };
- };
|