47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
class CfgPatches
|
|
{
|
|
class Braf_acc
|
|
{
|
|
addonRootClass = "braf_weapons_attach";
|
|
units[] = {};
|
|
weapons[] = {"braf_aglc_pouch"};
|
|
requiredVersion = 0.1;
|
|
requiredAddons[] = {"A3_Data_F"};
|
|
};
|
|
};
|
|
|
|
class SlotInfo;
|
|
class PointerSlot;
|
|
class PointerSlot_Rail : PointerSlot
|
|
{
|
|
linkProxy = "a3\data_f\proxies\weapon_slots\side.p3d";
|
|
displayName = "$STR_A3_PointerSlot0";
|
|
class compatibleItems
|
|
{
|
|
braf_aglc_pouch = 1;
|
|
};
|
|
};
|
|
|
|
class cfgWeapons
|
|
{
|
|
class ItemCore;
|
|
class InventoryFlashLightItem_Base_F;
|
|
class braf_aglc_pouch : ItemCore
|
|
{
|
|
author = "BRAF Team";
|
|
_generalMacro = "braf_aglc_pouch";
|
|
scope = 2;
|
|
inertia = 0.1;
|
|
displayName = "AGLC Buttstock Pouch";
|
|
picture = "braf\braf_weapons_sniper_rifles\308_AGLC\pounch\cartucheira.paa";
|
|
model = "braf\braf_weapons_sniper_rifles\308_AGLC\pounch\aglc_pouch.p3d";
|
|
descriptionShort = "AGLC Buttstocj Pouch for .308 rounds";
|
|
class ItemInfo : InventoryFlashLightItem_Base_F
|
|
{
|
|
mass = 9.9;
|
|
class FlashLight
|
|
{
|
|
};
|
|
};
|
|
};
|
|
}; |