2015-04-07 15:43:54 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class Man;
|
|
|
|
class CAManBase: Man {
|
|
|
|
class ACE_SelfActions {
|
2015-04-07 17:57:42 +00:00
|
|
|
class ACE_Equipment {
|
|
|
|
class GVAR(open) {
|
|
|
|
displayName = "$STR_ACE_Kestrel4500_OpenKestrel";
|
|
|
|
condition = QUOTE(call FUNC(canShow) && !GVAR(Kestrel4500));
|
|
|
|
statement = QUOTE(call FUNC(createKestrelDialog));
|
|
|
|
showDisabled = 0;
|
|
|
|
priority = 0.1;
|
|
|
|
icon = QUOTE(PATHTOF(UI\Kestrel4500_Icon.paa));
|
|
|
|
exceptions[] = {"notOnMap"};
|
|
|
|
};
|
|
|
|
class GVAR(show) {
|
|
|
|
displayName = "$STR_ACE_Kestrel4500_ShowKestrel";
|
2015-04-08 09:25:15 +00:00
|
|
|
condition = QUOTE(call FUNC(canShow) && !GVAR(Overlay));
|
2015-04-07 17:57:42 +00:00
|
|
|
statement = QUOTE(call FUNC(displayKestrel));
|
|
|
|
showDisabled = 0;
|
|
|
|
priority = 0.2;
|
|
|
|
icon = QUOTE(PATHTOF(UI\Kestrel4500_Icon.paa));
|
2015-04-08 09:26:12 +00:00
|
|
|
exceptions[] = {"notOnMap", "isNotInside"};
|
2015-04-07 17:57:42 +00:00
|
|
|
};
|
|
|
|
class GVAR(hide) {
|
|
|
|
displayName = "$STR_ACE_Kestrel4500_HideKestrel";
|
2015-04-08 09:25:15 +00:00
|
|
|
condition = QUOTE(GVAR(Overlay));
|
2015-04-07 17:57:42 +00:00
|
|
|
statement = QUOTE(call FUNC(displayKestrel));
|
|
|
|
showDisabled = 0;
|
|
|
|
priority = 0.3;
|
|
|
|
icon = QUOTE(PATHTOF(UI\Kestrel4500_Icon.paa));
|
2015-04-08 09:26:12 +00:00
|
|
|
exceptions[] = {"notOnMap", "isNotInside"};
|
2015-04-07 17:57:42 +00:00
|
|
|
};
|
2015-04-07 15:43:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_Base_F;
|
|
|
|
class ACE_Item_Kestrel4500: Item_Base_F {
|
|
|
|
author = "Ruthberg";
|
|
|
|
scope = 2;
|
|
|
|
scopeCurator = 2;
|
|
|
|
displayName = "Kestrel 4500";
|
|
|
|
vehicleClass = "Items";
|
|
|
|
class TransportItems {
|
|
|
|
class ACE_Kestrel4500 {
|
|
|
|
name = "ACE_Kestrel4500";
|
|
|
|
count = 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Box_NATO_Support_F;
|
|
|
|
class ACE_Box_Misc: Box_NATO_Support_F {
|
|
|
|
class TransportItems {
|
|
|
|
MACRO_ADDITEM(ACE_Kestrel4500,6);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|