2015-04-27 10:28:56 +00:00
|
|
|
class CfgVehicles {
|
2019-12-12 21:31:51 +00:00
|
|
|
class Man;
|
|
|
|
class CAManBase: Man {
|
|
|
|
class ACE_SelfActions {
|
|
|
|
class ACE_CheckAirTemperature {
|
|
|
|
displayName = CSTRING(CheckAirTemperature);
|
|
|
|
condition = QUOTE(GVAR(enabled) && GVAR(showCheckAirTemperature));
|
|
|
|
exceptions[] = {"isNotInside", "isNotSitting"};
|
|
|
|
statement = QUOTE([ACE_player] call FUNC(getApproximateAirTemp));
|
|
|
|
icon = QPATHTOF(UI\temp_ca.paa);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-04-27 10:28:56 +00:00
|
|
|
class ACE_Module;
|
|
|
|
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(Module_DisplayName);
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_Wind_ca.paa);
|
2015-04-27 10:28:56 +00:00
|
|
|
category = "ACE";
|
|
|
|
function = QUOTE(DFUNC(initModuleSettings));
|
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
2015-10-19 04:34:11 +00:00
|
|
|
isSingular = 1;
|
2015-04-27 10:28:56 +00:00
|
|
|
isTriggerActivated = 0;
|
2015-05-27 20:04:41 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-04-27 10:28:56 +00:00
|
|
|
class Arguments {
|
2017-11-10 14:44:15 +00:00
|
|
|
class enabled {
|
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
|
|
description = CSTRING(enabled_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2017-11-10 14:44:15 +00:00
|
|
|
class updateInterval {
|
|
|
|
displayName = CSTRING(updateInterval_DisplayName);
|
|
|
|
description = CSTRING(updateInterval_Description);
|
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 60;
|
2015-04-27 10:28:56 +00:00
|
|
|
};
|
2017-11-10 14:44:15 +00:00
|
|
|
class windSimulation {
|
|
|
|
displayName = CSTRING(windSimulation_DisplayName);
|
|
|
|
description = CSTRING(windSimulation_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
class ModuleDescription {
|
2015-05-27 17:04:25 +00:00
|
|
|
description = CSTRING(Module_Description);
|
2015-05-11 22:24:12 +00:00
|
|
|
};
|
2015-04-27 10:28:56 +00:00
|
|
|
};
|
2016-01-05 07:39:29 +00:00
|
|
|
};
|