mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
722 B
C++
21 lines
722 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_TransmitterItem_406MHz: ACE_ItemCore {
|
|
ACE_attachable = "ACE_transmitter_406MHz"; // the CfgVehicle
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
// displayName = CSTRING(IrStrobe_Name);
|
|
displayName = "[ACE] 406MHz Locator Bacon";
|
|
// descriptionShort = CSTRING(IrStrobe_Description);
|
|
descriptionShort = "Attach to activate";
|
|
// model = QPATHTOF(data\x.p3d);
|
|
model = "\A3\Structures_F\Items\Tools\MultiMeter_F.p3d";
|
|
// picture = QPATHTOF(UI\irstrobe_item.paa);
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 1;
|
|
};
|
|
};
|
|
};
|