mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f214b884a2
* [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
48 lines
1.7 KiB
C++
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);
|
|
};
|
|
};
|