2015-04-27 10:28:56 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class ACE_Module;
|
|
|
|
class GVAR(ModuleSettings): ACE_Module {
|
|
|
|
scope = 2;
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_Weather_Module_DisplayName";
|
2015-04-27 10:28:56 +00:00
|
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_Wind_ca.paa));
|
|
|
|
category = "ACE";
|
|
|
|
function = QUOTE(DFUNC(initModuleSettings));
|
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
|
|
class Arguments {
|
|
|
|
class enableServerController {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_Weather_enableServerController_DisplayName";
|
|
|
|
description = "$STR_ACE_Weather_enableServerController_Description";
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class useACEWeather {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_Weather_useACEWeather_DisplayName";
|
|
|
|
description = "$STR_ACE_Weather_useACEWeather_Description";
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class syncRain {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_Weather_syncRain_DisplayName";
|
|
|
|
description = "$STR_ACE_Weather_syncRain_Description";
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class syncWind {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_Weather_syncWind_DisplayName";
|
|
|
|
description = "$STR_ACE_Weather_syncWind_Description";
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
class syncMisc {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_Weather_syncMisc_DisplayName";
|
|
|
|
description = "$STR_ACE_Weather_syncMisc_Description";
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
2015-04-27 10:47:26 +00:00
|
|
|
class serverUpdateInterval {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_Weather_serverUpdateInterval_DisplayName";
|
|
|
|
description = "$STR_ACE_Weather_serverUpdateInterval_Description";
|
2015-04-27 10:47:26 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 60;
|
|
|
|
};
|
2015-04-27 10:28:56 +00:00
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
class ModuleDescription {
|
|
|
|
description = "$STR_ACE_Weather_Module_Description";
|
|
|
|
};
|
2015-04-27 10:28:56 +00:00
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
};
|