2015-05-14 18:59:25 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(EnableCombatDeafness) {
|
|
|
|
value = 1;
|
|
|
|
typeName = "BOOL";
|
2015-08-02 17:15:26 +00:00
|
|
|
displayName = CSTRING(CombatDeafness_DisplayName);
|
|
|
|
description = CSTRING(CombatDeafness_Description);
|
2015-05-14 18:59:25 +00:00
|
|
|
};
|
|
|
|
class GVAR(EarplugsVolume) {
|
|
|
|
value = 0.5;
|
|
|
|
typeName = "SCALAR";
|
|
|
|
};
|
|
|
|
class GVAR(UnconsciousnessVolume) {
|
|
|
|
value = 0.4;
|
|
|
|
typeName = "SCALAR";
|
|
|
|
};
|
|
|
|
class GVAR(DisableEarRinging) {
|
|
|
|
value = 0;
|
|
|
|
typeName = "BOOL";
|
|
|
|
isClientSettable = 1;
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(DisableEarRinging);
|
2015-05-14 18:59:25 +00:00
|
|
|
};
|
2015-08-08 19:40:19 +00:00
|
|
|
class GVAR(enabledForZeusUnits) {
|
|
|
|
value = 1;
|
|
|
|
typeName = "BOOL";
|
|
|
|
displayName = CSTRING(enabledForZeusUnits_DisplayName);
|
|
|
|
description = CSTRING(enabledForZeusUnits_Description);
|
|
|
|
};
|
2015-11-11 02:44:55 +00:00
|
|
|
class GVAR(autoAddEarplugsToUnits) {
|
|
|
|
value = 1;
|
|
|
|
typeName = "BOOL";
|
|
|
|
displayName = CSTRING(autoAddEarplugsToUnits_DisplayName);
|
|
|
|
description = CSTRING(autoAddEarplugsToUnits_Description);
|
|
|
|
};
|
2015-05-14 18:59:25 +00:00
|
|
|
};
|