mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
172 lines
6.9 KiB
C++
172 lines
6.9 KiB
C++
class CfgVehicles {
|
|
class Man;
|
|
class CAManBase: Man {
|
|
class ACE_SelfActions {
|
|
class ACE_Equipment {
|
|
class GVAR(rangetable) {
|
|
displayName = CSTRING(rangetable_action);
|
|
condition = QUOTE(_this call FUNC(rangeTableCanUse));
|
|
statement = QUOTE(_this call FUNC(rangeTableOpen));
|
|
priority = 0;
|
|
icon = QUOTE(PATHTOF(UI\icon_rangeTable.paa));
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
class LandVehicle;
|
|
class StaticWeapon: LandVehicle {
|
|
class Turrets {
|
|
class MainTurret;
|
|
};
|
|
};
|
|
class StaticMortar: StaticWeapon {
|
|
class Turrets: Turrets {
|
|
class MainTurret: MainTurret {};
|
|
};
|
|
class ACE_Actions;
|
|
};
|
|
class Mortar_01_base_F: StaticMortar {
|
|
class Turrets: Turrets {
|
|
class MainTurret: MainTurret {
|
|
turretInfoType = "ACE_Mk6_RscWeaponRangeArtillery";
|
|
discreteDistance[] = {};
|
|
discreteDistanceInitIndex = 0;
|
|
};
|
|
};
|
|
class ACE_Actions: ACE_Actions {
|
|
class GVAR(unloadMagazine) {
|
|
displayName = CSTRING(unloadMortar);
|
|
distance = 2;
|
|
condition = QUOTE(_this call FUNC(canUnloadMagazine));
|
|
statement = QUOTE([ARR_3(_target,_player,5)] call FUNC(unloadMagazineTimer));
|
|
icon = "";
|
|
selection = "usti hlavne";
|
|
};
|
|
class GVAR(LoadActions) {
|
|
displayName = CSTRING(loadMortar);
|
|
distance = 2;
|
|
condition = QUOTE([ARR_2(_target,_player)] call FUNC(canLoadMagazine));
|
|
statement = "";
|
|
icon = "";
|
|
selection = "usti hlavne";
|
|
class GVAR(loadMagazine_HE_Guided) {
|
|
displayName = CSTRING(loadMagazine_HE_Guided);
|
|
condition = QUOTE([ARR_3(_target,_player,'ACE_1Rnd_82mm_Mo_HE_Guided')] call FUNC(canLoadMagazine));
|
|
statement = QUOTE([ARR_4(_target,_player,8,'ACE_1Rnd_82mm_Mo_HE_Guided')] call FUNC(loadMagazineTimer));
|
|
icon = "";
|
|
};
|
|
class GVAR(loadMagazine_HE_LaserGuided) {
|
|
displayName = CSTRING(loadMagazine_HE_LaserGuided);
|
|
condition = QUOTE([ARR_3(_target,_player,'ACE_1Rnd_82mm_Mo_HE_LaserGuided')] call FUNC(canLoadMagazine));
|
|
statement = QUOTE([ARR_4(_target,_player,8,'ACE_1Rnd_82mm_Mo_HE_LaserGuided')] call FUNC(loadMagazineTimer));
|
|
icon = "";
|
|
};
|
|
class GVAR(loadMagazine_Illum) {
|
|
displayName = CSTRING(loadMagazine_Illum);
|
|
condition = QUOTE([ARR_3(_target,_player,'ACE_1Rnd_82mm_Mo_Illum')] call FUNC(canLoadMagazine));
|
|
statement = QUOTE([ARR_4(_target,_player,5,'ACE_1Rnd_82mm_Mo_Illum')] call FUNC(loadMagazineTimer));
|
|
icon = "";
|
|
};
|
|
class GVAR(loadMagazine_Smoke) {
|
|
displayName = CSTRING(loadMagazine_Smoke);
|
|
condition = QUOTE([ARR_3(_target,_player,'ACE_1Rnd_82mm_Mo_Smoke')] call FUNC(canLoadMagazine));
|
|
statement = QUOTE([ARR_4(_target,_player,2.5,'ACE_1Rnd_82mm_Mo_Smoke')] call FUNC(loadMagazineTimer));
|
|
icon = "";
|
|
};
|
|
class GVAR(loadMagazine_HE) {
|
|
displayName = CSTRING(loadMagazine_HE);
|
|
condition = QUOTE([ARR_3(_target,_player,'ACE_1Rnd_82mm_Mo_HE')] call FUNC(canLoadMagazine));
|
|
statement = QUOTE([ARR_4(_target,_player,2.5,'ACE_1Rnd_82mm_Mo_HE')] call FUNC(loadMagazineTimer));
|
|
icon = "";
|
|
};
|
|
};
|
|
};
|
|
class ACE_SelfActions {
|
|
class GVAR(toggleMils) {
|
|
displayName = "Toggle MILS";
|
|
condition = QUOTE(true);
|
|
statement = QUOTE(_this call FUNC(toggleMils));
|
|
exceptions[] = {};
|
|
};
|
|
};
|
|
};
|
|
|
|
class ACE_Module;
|
|
class GVAR(module): ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
displayName = CSTRING(Module_DisplayName);
|
|
function = QFUNC(moduleInit);
|
|
scope = 2;
|
|
isGlobal = 0;
|
|
isSingular = 1;
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_mk6_ca.paa));
|
|
functionPriority = 0;
|
|
class Arguments {
|
|
class airResistanceEnabled {
|
|
displayName = CSTRING(airResistanceEnabled_DisplayName);
|
|
description = CSTRING(airResistanceEnabled_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class allowComputerRangefinder {
|
|
displayName = CSTRING(allowComputerRangefinder_DisplayName);
|
|
description = CSTRING(allowComputerRangefinder_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class allowCompass {
|
|
displayName = CSTRING(allowCompass_DisplayName);
|
|
description = CSTRING(allowCompass_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
class useAmmoHandling {
|
|
displayName = CSTRING(useAmmoHandling_DisplayName);
|
|
description = CSTRING(useAmmoHandling_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(Module_Description);
|
|
};
|
|
};
|
|
|
|
class Box_NATO_AmmoOrd_F;
|
|
class ACE_Box_82mm_Mo_HE: Box_NATO_AmmoOrd_F {
|
|
displayName = CSTRING(HEBox_DisplayName);
|
|
author = ECSTRING(common,ACETeam);
|
|
transportMaxWeapons = 4;
|
|
transportMaxMagazines = 8;
|
|
class TransportMagazines {
|
|
MACRO_ADDMAGAZINE(ACE_1Rnd_82mm_Mo_HE,8);
|
|
};
|
|
class TransportItems {};
|
|
class TransportWeapons {};
|
|
};
|
|
class ACE_Box_82mm_Mo_Smoke: ACE_Box_82mm_Mo_HE {
|
|
displayName = CSTRING(SmokeBox_DisplayName);
|
|
class TransportMagazines {
|
|
MACRO_ADDMAGAZINE(ACE_1Rnd_82mm_Mo_Smoke,8);
|
|
};
|
|
};
|
|
class ACE_Box_82mm_Mo_Illum: ACE_Box_82mm_Mo_HE {
|
|
displayName = CSTRING(IllumBox_DisplayName);
|
|
class TransportMagazines {
|
|
MACRO_ADDMAGAZINE(ACE_1Rnd_82mm_Mo_Illum,8);
|
|
};
|
|
};
|
|
class ACE_Box_82mm_Mo_Combo: ACE_Box_82mm_Mo_HE {
|
|
displayName = CSTRING(ComboBox_DisplayName);
|
|
transportMaxMagazines = 48;
|
|
class TransportMagazines {
|
|
MACRO_ADDMAGAZINE(ACE_1Rnd_82mm_Mo_HE,32);
|
|
MACRO_ADDMAGAZINE(ACE_1Rnd_82mm_Mo_Smoke,8);
|
|
MACRO_ADDMAGAZINE(ACE_1Rnd_82mm_Mo_Illum,8);
|
|
};
|
|
};
|
|
};
|