ACE3/addons/medical_statemachine/initSettings.sqf
mharis001 b2f4b8ea20 Medical - Cleanup settings (#7057)
* 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
2019-06-28 11:50:11 -05:00

36 lines
1.0 KiB
Plaintext

[
QGVAR(fatalInjuryCondition),
"LIST",
[LSTRING(FatalInjuryCondition_DisplayName), LSTRING(FatalInjuryCondition_Description)],
[ELSTRING(medical,Category), LSTRING(SubCategory)],
[[0, 1, 2], [ELSTRING(common,Always), LSTRING(InCardiacArrest), ELSTRING(common,Never)], 0],
true
] call CBA_settings_fnc_init;
[
QGVAR(fatalInjuryConditionAI),
"CHECKBOX",
[LSTRING(FatalInjuryConditionAI_DisplayName), LSTRING(FatalInjuryConditionAI_Description)],
[ELSTRING(medical,Category), LSTRING(SubCategory)],
true,
true
] call CBA_settings_fnc_init;
[
QGVAR(AIUnconsciousness),
"CHECKBOX",
[LSTRING(AIUnconsciousness_DisplayName), LSTRING(AIUnconsciousness_Description)],
[ELSTRING(medical,Category), LSTRING(SubCategory)],
true,
true
] call CBA_settings_fnc_init;
[
QGVAR(cardiacArrestTime),
"TIME",
[LSTRING(CardiacArrestTime_DisplayName), LSTRING(CardiacArrestTime_Description)],
[ELSTRING(medical,Category), LSTRING(SubCategory)],
[1, 3600, 30],
true
] call CBA_settings_fnc_init;