2015-06-02 17:30:50 +00:00
|
|
|
|
|
|
|
class CfgWeapons {
|
|
|
|
class ACE_ItemCore;
|
|
|
|
class InventoryItem_Base_F;
|
|
|
|
|
|
|
|
class ACE_Sandbag_empty: ACE_ItemCore {
|
2015-06-06 02:02:24 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-06-02 17:30:50 +00:00
|
|
|
scope = 2;
|
2015-06-06 02:02:24 +00:00
|
|
|
displayName = CSTRING(sandbagEmpty_displayName);
|
2015-06-02 17:30:50 +00:00
|
|
|
model = PATHTOF(data\ace_sandbag_m.p3d);
|
|
|
|
picture = PATHTOF(data\m_sandbag_ca.paa);
|
|
|
|
|
|
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
|
|
mass = 8;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
/*
|
|
|
|
class ACE_Sandbag: ACE_ItemCore {
|
2015-06-06 02:02:24 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-06-02 17:30:50 +00:00
|
|
|
scope = 2;
|
2015-06-06 02:02:24 +00:00
|
|
|
displayName = CSTRING(sandbag_displayName);
|
2015-06-02 17:30:50 +00:00
|
|
|
model = PATHTOF(data\ace_sandbag_build.p3d);
|
|
|
|
picture = PATHTOF(data\m_sandbag_ca.paa);
|
|
|
|
|
|
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
|
|
mass = 160;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
};
|