diff --git a/addons/medical_treatment/functions/fnc_checkResponse.sqf b/addons/medical_treatment/functions/fnc_checkResponse.sqf
index dc76b1dbfb..ca95fcb1d1 100644
--- a/addons/medical_treatment/functions/fnc_checkResponse.sqf
+++ b/addons/medical_treatment/functions/fnc_checkResponse.sqf
@@ -22,6 +22,11 @@ params ["_medic", "_patient"];
private _output = if (_patient call EFUNC(common,isAwake)) then {
LSTRING(Check_Response_Responsive)
} else {
+ if (GVAR(advancedDiagnose) == 3) exitWith {
+ if (IN_CRDC_ARRST(_patient)) exitWith { LSTRING(Check_Response_CardiacArrestDirect) };
+ if (!alive _patient) exitWith { LSTRING(Check_Response_DeadDirect) };
+ LSTRING(Check_Response_UnresponsiveDirect)
+ };
if ((GVAR(advancedDiagnose) == 2) && {IN_CRDC_ARRST(_patient)}) exitWith { LSTRING(Check_Response_CardiacArrest) };
if ((GVAR(advancedDiagnose) == 2) && {!alive _patient}) exitWith { LSTRING(Check_Response_Dead) };
LSTRING(Check_Response_Unresponsive)
diff --git a/addons/medical_treatment/initSettings.inc.sqf b/addons/medical_treatment/initSettings.inc.sqf
index fbb1b170c8..d080965eb9 100644
--- a/addons/medical_treatment/initSettings.inc.sqf
+++ b/addons/medical_treatment/initSettings.inc.sqf
@@ -3,7 +3,7 @@
"LIST",
[LSTRING(AdvancedDiagnose_DisplayName), LSTRING(AdvancedDiagnose_Description)],
[ELSTRING(medical,Category), LSTRING(SubCategory_Treatment)],
- [[0, 1, 2], [ELSTRING(common,Disabled), ELSTRING(common,Enabled), LSTRING(AdvancedDiagnose_DiagnoseCardiacArrest)], 1],
+ [[0, 1, 2, 3], [ELSTRING(common,Disabled), ELSTRING(common,Enabled), LSTRING(AdvancedDiagnose_DiagnoseCardiacArrest), LSTRING(AdvancedDiagnose_DiagnoseCardiacArrestDirect)], 1],
true
] call CBA_fnc_addSetting;
diff --git a/addons/medical_treatment/stringtable.xml b/addons/medical_treatment/stringtable.xml
index ea38c6fbe8..477c18d019 100644
--- a/addons/medical_treatment/stringtable.xml
+++ b/addons/medical_treatment/stringtable.xml
@@ -77,6 +77,9 @@
Habilitado y poder diagnosticar Muerte/Parada cardíaca
Abilitato e può diagnosticare Morte/Arresto Cardiaco
+
+ Enabled & Can Diagnose Death/Cardiac Arrest [Directly]
+
Advanced Medication
Erweiterte Medikation
@@ -4153,6 +4156,9 @@
%1 沒有反應
%1 tepki vermiyor
+
+ %1 is unconscious
+
%1 is not responsive, taking shallow gasps and convulsing
%1 est inconscient, respire par intermittence et convulse.
@@ -4165,6 +4171,9 @@
%1 не реагирует на раздражители, поверхностно дышит, в конвульсиях
%1 no responde, dando pequeñas bocanadas y convulsionando
+
+ %1 is in cardiac arrest
+
%1 is not responsive, motionless and cold
%1 est inconscient, inanimé et froid.
@@ -4177,6 +4186,9 @@
%1 не реагирует на раздражители, не шевелится и холодный
%1 no responde, sin movimiento y frío
+
+ %1 is dead
+
You checked %1
Вы осмотрели раненого %1