2015-04-05 06:57:24 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class LandVehicle;
|
|
|
|
class StaticWeapon: LandVehicle {
|
|
|
|
class Turrets {
|
|
|
|
class MainTurret;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class StaticMortar: StaticWeapon {
|
|
|
|
class Turrets: Turrets {
|
|
|
|
class MainTurret: MainTurret {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class Mortar_01_base_F: StaticMortar {
|
|
|
|
class Turrets: Turrets {
|
|
|
|
class MainTurret: MainTurret {
|
|
|
|
turretInfoType = "ACE_Mk6_RscWeaponRangeArtillery";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-04-05 07:18:51 +00:00
|
|
|
|
|
|
|
class Logic;
|
|
|
|
class Module_F: Logic {
|
|
|
|
class ModuleDescription {};
|
|
|
|
};
|
|
|
|
class GVAR(module): Module_F {
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
|
|
category = "ACE";
|
|
|
|
displayName = "MK6 Settings";
|
|
|
|
function = QFUNC(moduleInit);
|
|
|
|
scope = 2;
|
|
|
|
isGlobal = 0;
|
|
|
|
// icon = QUOTE(PATHTOF(UI\Icon_.paa));
|
|
|
|
functionPriority = 0;
|
|
|
|
class Arguments {
|
2015-04-05 17:40:48 +00:00
|
|
|
class airResistanceEnabled {
|
|
|
|
displayName = "Air Resitance";
|
|
|
|
description = "For Player Shots, Model Air Restiance and Wind Effects";
|
2015-04-05 07:18:51 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-05 19:34:39 +00:00
|
|
|
class allowComputerRangefinder {
|
|
|
|
displayName = "Allow MK6 Computer/Rangefinder";
|
|
|
|
description = "Show the Computer and Rangefinder (these should be removed if you enable air resistance)";
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
class allowCompass {
|
|
|
|
displayName = "Allow MK6 Compass";
|
|
|
|
description = "Show the MK6 Digital Compass";
|
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-05 07:18:51 +00:00
|
|
|
};
|
|
|
|
class ModuleDescription: ModuleDescription {
|
|
|
|
description = "";
|
|
|
|
};
|
|
|
|
};
|
2015-04-05 06:57:24 +00:00
|
|
|
};
|