mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31e1ad0cff
* add tools tab and setting * move to preinit * fix icon, add restart warning * derp Co-authored-by: Dystopian <sddex@ya.ru> * Update addons/arsenal/stringtable.xml Co-authored-by: PabstMirror <pabstmirror@gmail.com> * remove setting * add keepIfOverriden parameter * docs again * documentation whitespace * docs grammar, change parameter name * fix docs * more docs fixes * magazine support * deprecate spare barrel item * more docs, improve condition --------- Co-authored-by: Dystopian <sddex@ya.ru> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
26 lines
678 B
C++
26 lines
678 B
C++
|
|
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_HuntIR_monitor: ACE_ItemCore {
|
|
scope = 2;
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(monitor_displayName);
|
|
picture = QPATHTOF(UI\w_huntir_monitor_ca.paa);
|
|
descriptionShort = CSTRING(monitor_displayName);
|
|
model = QPATHTOF(data\ace_huntir_monitor.p3d);
|
|
ACE_isTool = 1;
|
|
|
|
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
|
|
};
|