ACE3/addons/medical_treatment/functions/fnc_cprProgress.sqf
PabstMirror cdd7b6d81b
Medical Treatment - Allow diagnosing death/CA (invalidates old setting) (#8162)
* Medical Treatment - Allow diagnosing death/CA

* Update addons/medical_treatment/stringtable.xml

Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>

* Update addons/medical_treatment/stringtable.xml

Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
2021-09-03 14:50:54 -05:00

28 lines
716 B
Plaintext

#include "script_component.hpp"
/*
* Author: Zakant
* Handles the progress of the CPR treatment.
*
* Arguments:
* 0: Arguments <ARRAY>
* 0: Medic <OBJECT>
* 1: Patient <OBJECT>
*
* Return Value:
* Continue CPR <BOOL>
*
* Example:
* [[player, cursorObject]] call ace_medical_treatment_fnc_cprProgress
*
* Public: No
*/
params ["_args"];
_args params ["_medic", "_patient"];
// Cancel CPR if patient wakes up
!(_patient call EFUNC(common,isAwake))
&& {(GVAR(advancedDiagnose) != 0) || {IN_CRDC_ARRST(_patient)}} // if basic diagnose, then only show action if appropriate (they can't tell difference between uncon/ca)
&& {_medic == (_patient getVariable [QEGVAR(medical,CPR_provider), objNull])}