2015-04-27 10:28:56 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(enableServerController) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(enableServerController_DisplayName);
|
|
|
|
description = CSTRING(enableServerController_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
class GVAR(useACEWeather) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(useACEWeather_DisplayName);
|
|
|
|
description = CSTRING(useACEWeather_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
class GVAR(syncRain) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(syncRain_DisplayName);
|
|
|
|
description = CSTRING(syncRain_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
class GVAR(syncWind) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(syncWind_DisplayName);
|
|
|
|
description = CSTRING(syncWind_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
class GVAR(syncMisc) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(syncMisc_DisplayName);
|
|
|
|
description = CSTRING(syncMisc_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
2015-04-27 10:47:26 +00:00
|
|
|
class GVAR(serverUpdateInterval) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(serverUpdateInterval_DisplayName);
|
|
|
|
description = CSTRING(serverUpdateInterval_Description);
|
2015-04-27 10:47:26 +00:00
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 60;
|
|
|
|
};
|
2015-04-27 10:28:56 +00:00
|
|
|
};
|