mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
78c307196d
* medical: show triage in interaction * rename * clean up comments * Update addons/medical_gui/functions/fnc_modifyActionTriageLevel.sqf Co-authored-by: jonpas <jonpas33@gmail.com> * Update addons/medical_gui/functions/fnc_modifyActionTriageLevel.sqf Co-authored-by: jonpas <jonpas33@gmail.com> * Add setting (disabled, enabled, medicsOnly) * Apply suggestions from code review Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com> Co-authored-by: jonpas <jonpas33@gmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
54 lines
1.7 KiB
Plaintext
54 lines
1.7 KiB
Plaintext
[
|
|
QGVAR(enableActions),
|
|
"LIST",
|
|
[LSTRING(EnableActions_DisplayName), LSTRING(EnableActions_Description)],
|
|
[ELSTRING(medical,Category), LSTRING(SubCategory)],
|
|
[[0, 1, 2], [LSTRING(Selections3D), LSTRING(Radial), ELSTRING(common,Disabled)], 0],
|
|
false
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(enableSelfActions),
|
|
"CHECKBOX",
|
|
[LSTRING(EnableSelfActions_DisplayName), LSTRING(EnableSelfActions_Description)],
|
|
[ELSTRING(medical,Category), LSTRING(SubCategory)],
|
|
true,
|
|
false
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(enableMedicalMenu),
|
|
"LIST",
|
|
[LSTRING(EnableMedicalMenu_DisplayName), LSTRING(EnableMedicalMenu_Description)],
|
|
[ELSTRING(medical,Category), LSTRING(SubCategory)],
|
|
[[0, 1, 2], [ELSTRING(common,Disabled), ELSTRING(common,Enabled), ELSTRING(common,VehiclesOnly)], 1],
|
|
false
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(openAfterTreatment),
|
|
"CHECKBOX",
|
|
[LSTRING(OpenAfterTreatment_DisplayName), LSTRING(OpenAfterTreatment_Description)],
|
|
[ELSTRING(medical,Category), LSTRING(SubCategory)],
|
|
true,
|
|
false
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(maxDistance),
|
|
"SLIDER",
|
|
[LSTRING(MaxDistance_DisplayName), LSTRING(MaxDistance_Description)],
|
|
[ELSTRING(medical,Category), LSTRING(SubCategory)],
|
|
[0, 10, 3, 1],
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(interactionMenuShowTriage),
|
|
"LIST",
|
|
[LSTRING(InteractionMenuShowTriage_DisplayName), LSTRING(InteractionMenuShowTriage_Description)],
|
|
[ELSTRING(medical,Category), LSTRING(SubCategory)],
|
|
[[0, 1, 2], [ELSTRING(common,Disabled), ELSTRING(Medical_Treatment,Anyone), ELSTRING(Medical_Treatment,Medics)], 1],
|
|
false
|
|
] call CBA_settings_fnc_init;
|