ACE3/addons/mk6mortar/CfgVehicles.hpp

82 lines
2.7 KiB
C++
Raw Normal View History

2015-04-05 06:57:24 +00:00
class CfgVehicles {
2015-04-05 20:48:56 +00:00
class Man;
class CAManBase: Man {
class ACE_SelfActions {
class ACE_Equipment {
class GVAR(rangetable) {
displayName = CSTRING(rangetable_action);
2015-04-05 23:05:23 +00:00
condition = QUOTE(_this call FUNC(rangeTableCanUse));
statement = QUOTE(_this call FUNC(rangeTableOpen));
2015-04-05 20:48:56 +00:00
priority = 0;
icon = QUOTE(PATHTOF(UI\icon_rangeTable.paa));
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
2015-04-05 20:48:56 +00:00
};
};
};
};
2015-04-05 06:57:24 +00:00
class LandVehicle;
class StaticWeapon: LandVehicle {
class Turrets {
class MainTurret;
};
};
class StaticMortar: StaticWeapon {
class Turrets: Turrets {
2015-07-26 21:45:29 +00:00
class MainTurret: MainTurret {};
2015-04-05 06:57:24 +00:00
};
};
class Mortar_01_base_F: StaticMortar {
class Turrets: Turrets {
class MainTurret: MainTurret {
turretInfoType = "ACE_Mk6_RscWeaponRangeArtillery";
2015-07-08 06:00:43 +00:00
discreteDistance[] = {};
discreteDistanceInitIndex = 0;
2015-04-05 06:57:24 +00:00
};
};
2015-04-05 20:00:59 +00:00
class ACE_SelfActions {
class GVAR(toggleMils) {
displayName = "Toggle MILS";
condition = QUOTE(true);
statement = QUOTE(_this call FUNC(toggleMils));
exceptions[] = {};
};
};
2015-04-05 06:57:24 +00:00
};
2015-04-05 07:18:51 +00:00
class ACE_Module;
class GVAR(module): ACE_Module {
author = ECSTRING(common,ACETeam);
2015-04-05 07:18:51 +00:00
category = "ACE";
displayName = CSTRING(Module_DisplayName);
2015-04-05 07:18:51 +00:00
function = QFUNC(moduleInit);
scope = 2;
isGlobal = 0;
2015-04-08 00:37:46 +00:00
icon = QUOTE(PATHTOF(UI\Icon_Module_mk6_ca.paa));
2015-04-05 07:18:51 +00:00
functionPriority = 0;
class Arguments {
class airResistanceEnabled {
displayName = CSTRING(airResistanceEnabled_DisplayName);
description = CSTRING(airResistanceEnabled_Description);
2015-04-05 07:18:51 +00:00
typeName = "BOOL";
2015-07-26 21:45:29 +00:00
defaultValue = 0;
2015-04-05 07:18:51 +00:00
};
2015-04-05 19:34:39 +00:00
class allowComputerRangefinder {
displayName = CSTRING(allowComputerRangefinder_DisplayName);
description = CSTRING(allowComputerRangefinder_Description);
2015-04-05 19:34:39 +00:00
typeName = "BOOL";
defaultValue = 0;
2015-04-05 20:00:59 +00:00
};
2015-04-05 19:34:39 +00:00
class allowCompass {
displayName = CSTRING(allowCompass_DisplayName);
description = CSTRING(allowCompass_Description);
2015-04-05 19:34:39 +00:00
typeName = "BOOL";
defaultValue = 1;
};
2015-04-05 07:18:51 +00:00
};
class ModuleDescription {
description = CSTRING(Module_Description);
2015-04-05 07:18:51 +00:00
};
};
};