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>
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_RangeTable_82mm: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(rangetable_name);
|
|
descriptionShort = CSTRING(rangetable_description);
|
|
picture = QPATHTOF(UI\icon_rangeTable.paa);
|
|
ACE_isTool = 1;
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 0.5;
|
|
};
|
|
};
|
|
|
|
class CannonCore;
|
|
class mortar_82mm: CannonCore {
|
|
class Single1;
|
|
class Burst1;
|
|
};
|
|
class ACE_mortar_82mm: mortar_82mm {
|
|
author = ECSTRING(common,ACETeam);
|
|
magazines[] = {"ACE_1Rnd_82mm_Mo_HE","ACE_1Rnd_82mm_Mo_Smoke","ACE_1Rnd_82mm_Mo_Illum",
|
|
"ACE_1Rnd_82mm_Mo_HE_Guided","ACE_1Rnd_82mm_Mo_HE_LaserGuided"};
|
|
reloadTime = 0.5;
|
|
magazineReloadTime = 0.5;
|
|
class Single1: Single1 {
|
|
reloadTime = 0.5;
|
|
};
|
|
class Burst1: Burst1 {
|
|
reloadTime = 0.5;
|
|
};
|
|
};
|
|
};
|