ACE3/addons/medical/functions/fnc_treatmentAdvanced_CPR.sqf

29 lines
783 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Callback for the CPR treatment action on success.
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
* 2: SelectionName <STRING>
* 3: Treatment classname <STRING>
*
* Return Value:
* Succesful treatment started <BOOL>
*
* Public: Yes
*/
#include "script_component.hpp"
2015-08-22 17:47:23 +00:00
params ["_caller", "_target", "_selectionName", "_className", "_items"];
if (alive _target && {(_target getVariable [QGVAR(inCardiacArrest), false] || _target getVariable [QGVAR(inReviveState), false])}) then {
2016-02-18 01:54:43 +00:00
if (local _target) then {
["treatmentAdvanced_CPRLocal", [_caller, _target]] call EFUNC(common,localEvent);
} else {
["treatmentAdvanced_CPRLocal", _target, [_caller, _target]] call EFUNC(common,targetEvent);
};
};
true;