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>
19 lines
538 B
C++
19 lines
538 B
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_wirecutter: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
displayName = CSTRING(wirecutterName);
|
|
descriptionShort = CSTRING(wirecutterDescription);
|
|
model = QPATHTOF(data\ace_wirecutter.p3d);
|
|
picture = QPATHTOF(ui\item_wirecutter_ca.paa);
|
|
ACE_isWirecutter = 1;
|
|
ACE_isTool = 1;
|
|
scope = 2;
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 25;
|
|
};
|
|
};
|
|
};
|