mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30a8d2db7b
* Use CBA Misc Items * Set required CBA to 3.4.1
24 lines
611 B
C++
24 lines
611 B
C++
|
|
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_HuntIR_monitor: ACE_ItemCore {
|
|
scope = 2;
|
|
displayName = CSTRING(monitor_displayName);
|
|
picture = QPATHTOF(UI\w_huntir_monitor_ca.paa);
|
|
descriptionShort = CSTRING(monitor_displayName);
|
|
model = QPATHTOF(data\ace_huntir_monitor.p3d);
|
|
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 20;
|
|
};
|
|
};
|
|
|
|
class GrenadeLauncher;
|
|
class UGL_F: GrenadeLauncher {
|
|
magazines[] += {"ACE_HuntIR_M203"};
|
|
};
|
|
// Added to the GL_3GL_F in subconfig
|
|
};
|