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>
21 lines
525 B
C++
21 lines
525 B
C++
|
|
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_DAGR: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(Name);
|
|
model = QPATHTOF(data\DAGR.p3d);
|
|
descriptionShort = CSTRING(Description);
|
|
picture = QPATHTOF(UI\DAGR_Icon.paa);
|
|
icon = "iconObject_circle";
|
|
mapSize = 0.034;
|
|
ACE_isTool = 1;
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 10;
|
|
};
|
|
};
|
|
};
|