ACE3/addons/medical_treatment/functions/fnc_treatmentCPR.sqf

31 lines
843 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: Glowbal
* Callback for the CPR treatment action on success.
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
* 2: Body part <STRING>
* 3: Treatment class name <STRING>
*
* Return Value:
* Succesful treatment started <BOOL>
*
2019-03-30 16:07:54 +00:00
* Public: No
*/
params ["_caller", "_target", "_selectionName", "_className", "_items"];
_target setVariable [VAR_HEART_RATE, 0, true];
_target setVariable [QGVAR(receiveCPR), false, true]; // CPR finished
[_target] call FUNC(calculateBlood);
2018-05-22 17:06:28 +00:00
if (alive _target && {IN_CRDC_ARRST(_target)}) then {
2018-07-18 21:19:27 +00:00
[_target, "activity_view", ELSTRING(medical_treatment,Activity_cpr), [[_caller, false, true] call EFUNC(common,getName)]] call FUNC(addToLog);
[QGVAR(treatmentCPRLocal), [_caller, _target], _target] call CBA_fnc_targetEvent;
};
true