2023-09-12 18:58:10 +00:00
#include "..\script_component.hpp"
2019-06-03 15:31:46 +00:00
/*
* Author: mharis001
* Checks if CPR can be performed on the patient.
*
* Arguments:
* 0: Medic (not used) <OBJECT>
* 1: Patient <OBJECT>
*
* Return Value:
* Can CPR <BOOL>
*
* Example:
* [player, cursorObject] call ace_medical_treatment_fnc_canCPR
*
* Public: No
*/
params ["", "_patient"];
2019-06-28 00:01:20 +00:00
!(_patient call EFUNC(common,isAwake))
2021-09-03 19:50:54 +00:00
&& {(GVAR(advancedDiagnose) != 0) || {IN_CRDC_ARRST(_patient)}} // if basic diagnose, then only show action if appropriate (they can't tell difference between uncon/ca)
2019-06-28 00:01:20 +00:00
&& {isNull (_patient getVariable [QEGVAR(medical,CPR_provider), objNull])}