2015-07-15 03:51:13 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class ACE_Module;
|
2016-03-06 14:41:17 +00:00
|
|
|
class GVAR(Module): ACE_Module {
|
2015-07-15 03:51:13 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
category = "ACE";
|
2015-10-28 22:23:02 +00:00
|
|
|
displayName = CSTRING(ModuleName);
|
2015-07-15 03:51:13 +00:00
|
|
|
function = QFUNC(moduleInit);
|
|
|
|
scope = 2;
|
|
|
|
isGlobal = 1;
|
2016-03-14 18:14:52 +00:00
|
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_UI_ca.paa));
|
2015-07-15 03:51:13 +00:00
|
|
|
class Arguments {
|
2016-03-06 14:41:17 +00:00
|
|
|
class allowSelectiveUI {
|
|
|
|
displayName = CSTRING(AllowSelectiveUI);
|
|
|
|
description = CSTRING(AllowSelectiveUI_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2016-04-22 22:29:58 +00:00
|
|
|
|
|
|
|
// BASIC
|
2015-10-28 22:23:02 +00:00
|
|
|
class soldierVehicleWeaponInfo {
|
|
|
|
displayName = CSTRING(SoldierVehicleWeaponInfo);
|
2015-07-15 03:51:13 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-10-28 22:23:02 +00:00
|
|
|
class vehicleRadar {
|
|
|
|
displayName = CSTRING(VehicleRadar);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleCompass {
|
|
|
|
displayName = CSTRING(VehicleCompass);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class commandMenu {
|
|
|
|
displayName = CSTRING(CommandMenu);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class groupBar {
|
|
|
|
displayName = CSTRING(GroupBar);
|
|
|
|
typeName = "BOOL";
|
2016-03-06 14:41:17 +00:00
|
|
|
defaultValue = 0;
|
2015-10-28 22:23:02 +00:00
|
|
|
};
|
|
|
|
|
2016-03-06 14:41:17 +00:00
|
|
|
// ADVANCED
|
2015-10-28 22:23:02 +00:00
|
|
|
// Upper Weapon Info
|
2015-07-15 03:51:13 +00:00
|
|
|
class weaponName {
|
|
|
|
displayName = CSTRING(WeaponName);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-07-15 03:51:13 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-10-28 22:23:02 +00:00
|
|
|
class weaponNameBackground {
|
|
|
|
displayName = CSTRING(WeaponNameBackground);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class firingMode {
|
|
|
|
displayName = CSTRING(FiringMode);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Lower Weapon Info
|
|
|
|
class ammoType {
|
|
|
|
displayName = CSTRING(AmmoType);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class ammoCount {
|
2015-07-15 03:51:13 +00:00
|
|
|
displayName = CSTRING(AmmoCount);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-07-15 03:51:13 +00:00
|
|
|
typeName = "BOOL";
|
2016-03-06 14:41:17 +00:00
|
|
|
defaultValue = 0;
|
2015-10-28 22:23:02 +00:00
|
|
|
};
|
2015-07-15 03:51:13 +00:00
|
|
|
class magCount {
|
|
|
|
displayName = CSTRING(MagCount);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-07-15 03:51:13 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2016-03-06 14:41:17 +00:00
|
|
|
class throwableName {
|
|
|
|
displayName = CSTRING(throwableName);
|
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-07-15 03:51:13 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2016-03-06 14:41:17 +00:00
|
|
|
class throwableCount {
|
|
|
|
displayName = CSTRING(throwableCount);
|
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-07-15 03:51:13 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class zeroing {
|
|
|
|
displayName = CSTRING(Zeroing);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-07-15 03:51:13 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-10-28 22:23:02 +00:00
|
|
|
class weaponLowerInfoBackground {
|
|
|
|
displayName = CSTRING(WeaponLowerInfoBackground);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Stance
|
|
|
|
class stance {
|
|
|
|
displayName = CSTRING(Stance);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
|
2016-03-09 17:58:46 +00:00
|
|
|
// Stamina Bar
|
|
|
|
class staminaBar {
|
|
|
|
displayName = CSTRING(StaminaBar);
|
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
|
2015-10-28 22:23:02 +00:00
|
|
|
// Vehicle
|
|
|
|
class vehicleName {
|
|
|
|
displayName = CSTRING(VehicleName);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleNameBackground {
|
|
|
|
displayName = CSTRING(VehicleNameBackground);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleFuelBar {
|
|
|
|
displayName = CSTRING(VehicleFuelBar);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleSpeed {
|
|
|
|
displayName = CSTRING(VehicleSpeed);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleAltitude {
|
|
|
|
displayName = CSTRING(VehicleAltitude);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleDamage {
|
|
|
|
displayName = CSTRING(VehicleDamage);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleInfoBackground {
|
|
|
|
displayName = CSTRING(VehicleInfoBackground);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class vehicleGunnerWeapon {
|
|
|
|
displayName = CSTRING(VehicleGunnerWeapon);
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(RequiresSoldierVehicleWeaponInfo);
|
2015-10-28 22:23:02 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-07-15 03:51:13 +00:00
|
|
|
};
|
|
|
|
class ModuleDescription {
|
2016-03-06 14:41:17 +00:00
|
|
|
description = CSTRING(ModuleDescription);
|
2015-07-15 03:51:13 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|