/* * Author: Glowbal * Callback for the CPR treatment action on success. * * Arguments: * 0: The medic * 1: The patient * 2: Body part * 3: Treatment class name * * Return Value: * Succesful treatment started * * Public: Yes */ #include "script_component.hpp" params ["_caller", "_target", "_selectionName", "_className", "_items"]; if (alive _target && {(_target getVariable [QEGVAR(medical,inCardiacArrest), false] || _target getVariable [QEGVAR(medical,inReviveState), false])}) then { [_target, "activity_view", ELSTRING(medical,Activity_cpr), [[_caller, false, true] call EFUNC(common,getName)]] call FUNC(addToLog); [QGVAR(treatmentCPRLocal), [_caller, _target], _target] call CBA_fnc_targetEvent; }; true