mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
56 lines
2.1 KiB
C++
56 lines
2.1 KiB
C++
class CfgVehicles {
|
|
class Man;
|
|
class CAManBase: Man {
|
|
class ACE_SelfActions {
|
|
class ACE_Equipment {
|
|
class GVAR(open) {
|
|
displayName = CSTRING(OpenKestrel);
|
|
condition = QUOTE(call FUNC(canShow) && !GVAR(Kestrel4500));
|
|
statement = QUOTE(call FUNC(createKestrelDialog));
|
|
showDisabled = 0;
|
|
priority = 0.1;
|
|
icon = QPATHTOF(UI\Kestrel4500_Icon.paa);
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
class GVAR(show) {
|
|
displayName = CSTRING(ShowKestrel);
|
|
condition = QUOTE(call FUNC(canShow) && !GVAR(Overlay));
|
|
statement = QUOTE(call FUNC(displayKestrel));
|
|
showDisabled = 0;
|
|
priority = 0.2;
|
|
icon = QPATHTOF(UI\Kestrel4500_Icon.paa);
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
};
|
|
class GVAR(hide) {
|
|
displayName = CSTRING(HideKestrel);
|
|
condition = QUOTE(GVAR(Overlay));
|
|
statement = QUOTE(call FUNC(displayKestrel));
|
|
showDisabled = 0;
|
|
priority = 0.3;
|
|
icon = QPATHTOF(UI\Kestrel4500_Icon.paa);
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
class Item_Base_F;
|
|
class ACE_Item_Kestrel4500: Item_Base_F {
|
|
author = "Ruthberg";
|
|
scope = 2;
|
|
scopeCurator = 2;
|
|
displayName = CSTRING(Name);
|
|
vehicleClass = "Items";
|
|
class TransportItems {
|
|
MACRO_ADDITEM(ACE_Kestrel4500,1);
|
|
};
|
|
};
|
|
|
|
class Box_NATO_Support_F;
|
|
class ACE_Box_Misc: Box_NATO_Support_F {
|
|
class TransportItems {
|
|
MACRO_ADDITEM(ACE_Kestrel4500,6);
|
|
};
|
|
};
|
|
};
|