mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
b2f4b8ea20
* Cleanup medical settings * Fix extra [ * Allow giving IV/blood to self by default * Medical Blood - Settings improvements and cleanup (#7069) * Add more blood settings and cleanup * Fix include before header * Update addons/medical_blood/functions/fnc_init.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com> * Disable debug * Cleanup moved settings * Fix remaining setting descriptions
31 lines
988 B
Plaintext
31 lines
988 B
Plaintext
[
|
|
QGVAR(limping),
|
|
"LIST",
|
|
[LSTRING(Limping_DisplayName), LSTRING(Limping_Description)],
|
|
LSTRING(Category),
|
|
[[0, 1, 2], [ELSTRING(common,Disabled), LSTRING(Limping_LimpOnOpenWounds), LSTRING(Limping_LimpRequiresStitching)], 1],
|
|
true,
|
|
{[QGVAR(limping), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(fractures),
|
|
"LIST",
|
|
[LSTRING(Fractures_DisplayName), LSTRING(Fractures_Description)],
|
|
LSTRING(Category),
|
|
[[0, 1, 2], [ELSTRING(common,Disabled), LSTRING(Fractures_SplintHealsFully), LSTRING(Fractures_SplintHasEffects)], 1],
|
|
true,
|
|
{[QGVAR(fractures), _this] call EFUNC(common,cbaSettings_settingChanged)},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(spontaneousWakeUpChance),
|
|
"SLIDER",
|
|
[LSTRING(SpontaneousWakeUpChance_DisplayName), LSTRING(SpontaneousWakeUpChance_Description)],
|
|
LSTRING(Category),
|
|
[0, 1, 0.05, 2],
|
|
true
|
|
] call CBA_settings_fnc_init;
|