mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a7954368f4
* Fix missing string with stringtable Fix Advanced Fatigue & QuickMount * Fix Chinese content & missing string * Fix Gestures & DAGR missing string * Fix quickmount string with vanilla string * Remove adr97 unnecessary string
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
class ACE_Settings {
|
|
class GVAR(enabled) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(Enabled);
|
|
description = CSTRING(Enabled_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(enableStaminaBar) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(EnableStaminaBar);
|
|
description = CSTRING(EnableStaminaBar_Description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
isClientSettable = 1;
|
|
};
|
|
class GVAR(performanceFactor) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(PerformanceFactor);
|
|
description = CSTRING(PerformanceFactor_Description);
|
|
typeName = "SCALAR";
|
|
value = 1;
|
|
};
|
|
class GVAR(recoveryFactor) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(RecoveryFactor);
|
|
description = CSTRING(RecoveryFactor_Description);
|
|
typeName = "SCALAR";
|
|
value = 1;
|
|
};
|
|
class GVAR(loadFactor) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(LoadFactor);
|
|
description = CSTRING(LoadFactor_Description);
|
|
typeName = "SCALAR";
|
|
value = 1;
|
|
};
|
|
class GVAR(terrainGradientFactor) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(TerrainGradientFactor);
|
|
description = CSTRING(TerrainGradientFactor_Description);
|
|
typeName = "SCALAR";
|
|
value = 1;
|
|
};
|
|
};
|