2015-04-05 19:08:55 +00:00
|
|
|
class CfgVehicles {
|
2015-04-12 09:59:02 +00:00
|
|
|
class ACE_Module;
|
2015-04-12 10:33:09 +00:00
|
|
|
class GVAR(ModuleSettings): ACE_Module {
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(DisplayName);
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_Wind_ca.paa);
|
2015-04-12 09:48:21 +00:00
|
|
|
category = "ACE";
|
|
|
|
function = QUOTE(DFUNC(initModuleSettings));
|
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
author = "Ruthberg";
|
2015-04-11 20:34:19 +00:00
|
|
|
class Arguments {
|
|
|
|
class enabled {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
|
|
description = CSTRING(enabled_Description);
|
2015-04-12 09:48:21 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-13 19:20:07 +00:00
|
|
|
defaultValue = 0;
|
2015-04-12 09:48:21 +00:00
|
|
|
};
|
2017-11-19 17:48:26 +00:00
|
|
|
class muzzleVelocityVariationEnabled {
|
2017-11-29 20:07:44 +00:00
|
|
|
displayName = CSTRING(muzzleVelocityVariationEnabled_DisplayName);
|
|
|
|
description = CSTRING(muzzleVelocityVariationEnabled_Description);
|
2017-11-19 17:48:26 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-12 09:48:21 +00:00
|
|
|
class ammoTemperatureEnabled {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(ammoTemperatureEnabled_DisplayName);
|
|
|
|
description = CSTRING(ammoTemperatureEnabled_Description);
|
2015-04-11 20:34:19 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-12 09:48:21 +00:00
|
|
|
class barrelLengthInfluenceEnabled {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(barrelLengthInfluenceEnabled_DisplayName);
|
|
|
|
description = CSTRING(barrelLengthInfluenceEnabled_Description);
|
2015-04-11 20:34:19 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-12 09:48:21 +00:00
|
|
|
class bulletTraceEnabled {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(bulletTraceEnabled_DisplayName);
|
|
|
|
description = CSTRING(bulletTraceEnabled_Description);
|
2015-04-11 20:34:19 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-12 14:25:01 +00:00
|
|
|
class simulationInterval {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(simulationInterval_DisplayName);
|
|
|
|
description = CSTRING(simulationInterval_Description);
|
2015-04-12 14:25:01 +00:00
|
|
|
typeName = "NUMBER";
|
2016-11-24 23:15:41 +00:00
|
|
|
defaultValue = 0.05;
|
2015-04-12 14:25:01 +00:00
|
|
|
};
|
2015-04-11 20:34:19 +00:00
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
class ModuleDescription {
|
2015-05-27 17:04:25 +00:00
|
|
|
description = CSTRING(Description);
|
2015-05-11 22:24:12 +00:00
|
|
|
};
|
2015-04-05 19:08:55 +00:00
|
|
|
};
|
2017-11-11 19:21:55 +00:00
|
|
|
};
|