ACE3/addons/hearing/ACE_Settings.hpp
Whigital f214b884a2 Settings strings (#6136)
* [hearing] Update strings

* [medical] Update strings

* [medical_ai] Update strings

* [medical_menu] Update strings

* [nametags] Update strings

* [nametags] Use existing DisplayName entries

* [medical_menu] Correct spelling

* [medical] Disable unreferenced setting

* [medical] Overdosing strings

* [medical_menu] Correct key IDs

* [repair] Update strings

* [medical] Correct spelling
2018-02-13 13:30:38 -06:00

48 lines
1.7 KiB
C++

class ACE_Settings {
class GVAR(enableCombatDeafness) {
category = CSTRING(Module_DisplayName);
value = 1;
typeName = "BOOL";
displayName = CSTRING(EnableCombatDeafness_DisplayName);
description = CSTRING(EnableCombatDeafness_Description);
};
class GVAR(earplugsVolume) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(earplugsVolume_DisplayName);
description = CSTRING(earplugsVolume_Description);
value = 0.5;
typeName = "SCALAR";
sliderSettings[] = {0, 1, 0.5, 1};
};
class GVAR(unconsciousnessVolume) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(unconsciousnessVolume_DisplayName);
description = CSTRING(unconsciousnessVolume_Description);
value = 0.4;
typeName = "SCALAR";
sliderSettings[] = {0, 1, 0.4, 1};
};
class GVAR(disableEarRinging) {
category = CSTRING(Module_DisplayName);
value = 0;
typeName = "BOOL";
isClientSettable = 1;
displayName = CSTRING(DisableEarRinging_DisplayName);
description = CSTRING(DisableEarRinging_Description);
};
class GVAR(enabledForZeusUnits) {
category = CSTRING(Module_DisplayName);
value = 1;
typeName = "BOOL";
displayName = CSTRING(enabledForZeusUnits_DisplayName);
description = CSTRING(enabledForZeusUnits_Description);
};
class GVAR(autoAddEarplugsToUnits) {
category = CSTRING(Module_DisplayName);
value = 1;
typeName = "BOOL";
displayName = CSTRING(autoAddEarplugsToUnits_DisplayName);
description = CSTRING(autoAddEarplugsToUnits_Description);
};
};