2016-09-04 19:33:07 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(enabled) {
|
2017-07-19 18:57:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-09-04 19:33:07 +00:00
|
|
|
displayName = CSTRING(Enabled);
|
|
|
|
description = CSTRING(Enabled_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
class GVAR(enableStaminaBar) {
|
2017-07-19 18:57:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-09-04 19:33:07 +00:00
|
|
|
displayName = CSTRING(EnableStaminaBar);
|
|
|
|
description = CSTRING(EnableStaminaBar_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
isClientSettable = 1;
|
|
|
|
};
|
|
|
|
class GVAR(performanceFactor) {
|
2017-07-19 18:57:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-09-04 19:33:07 +00:00
|
|
|
displayName = CSTRING(PerformanceFactor);
|
|
|
|
description = CSTRING(PerformanceFactor_Description);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 1;
|
2017-12-16 17:51:15 +00:00
|
|
|
sliderSettings[] = {0, 5, 1, 1};
|
2016-09-04 19:33:07 +00:00
|
|
|
};
|
|
|
|
class GVAR(recoveryFactor) {
|
2017-07-19 18:57:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-09-04 19:33:07 +00:00
|
|
|
displayName = CSTRING(RecoveryFactor);
|
|
|
|
description = CSTRING(RecoveryFactor_Description);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 1;
|
2017-12-16 17:51:15 +00:00
|
|
|
sliderSettings[] = {0, 5, 1, 1};
|
2016-09-04 19:33:07 +00:00
|
|
|
};
|
|
|
|
class GVAR(loadFactor) {
|
2017-07-19 18:57:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-09-04 19:33:07 +00:00
|
|
|
displayName = CSTRING(LoadFactor);
|
|
|
|
description = CSTRING(LoadFactor_Description);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 1;
|
2017-12-16 17:51:15 +00:00
|
|
|
sliderSettings[] = {0, 5, 1, 1};
|
2016-09-04 19:33:07 +00:00
|
|
|
};
|
|
|
|
class GVAR(terrainGradientFactor) {
|
2017-07-19 18:57:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-09-04 19:33:07 +00:00
|
|
|
displayName = CSTRING(TerrainGradientFactor);
|
|
|
|
description = CSTRING(TerrainGradientFactor_Description);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 1;
|
2017-12-16 17:51:15 +00:00
|
|
|
sliderSettings[] = {0, 5, 1, 1};
|
2016-09-04 19:33:07 +00:00
|
|
|
};
|
|
|
|
};
|