mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
240b26b9ac
Add M57 Clacker to explosives Add New LowPoly Earplug to Hearing Add WireCutter to logistics_wirecutter Reduce UAVBattery Texture Size in logistics_uavbattery Add MapTools to maptools
18 lines
530 B
C++
18 lines
530 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class InventoryItem_Base_F;
|
|
|
|
class ACE_IR_Strobe_Item: ACE_ItemCore {
|
|
ACE_attachable = "ACE_IR_Strobe_Effect";
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(IrStrobe_Name);
|
|
descriptionShort = CSTRING(IrStrobe_Description);
|
|
model = QUOTE(PATHTOF(data\ace_IRStrobe.p3d));
|
|
picture = PATHTOF(UI\irstrobe_item.paa);
|
|
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
mass = 1;
|
|
};
|
|
};
|
|
}; |