2015-02-28 10:41:27 +00:00
|
|
|
/*
|
|
|
|
* 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"];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-11-30 16:27:09 +00:00
|
|
|
if (alive _target && {(_target getVariable [QGVAR(inCardiacArrest), false] || _target getVariable [QGVAR(inReviveState), false])}) then {
|
2016-01-17 11:28:37 +00:00
|
|
|
[_target, "activity_view", LSTRING(Activity_cpr), [[_caller, false, true] call EFUNC(common,getName)]] call FUNC(addToLog);
|
|
|
|
|
2016-02-18 01:54:43 +00:00
|
|
|
if (local _target) then {
|
2016-06-03 18:57:21 +00:00
|
|
|
[QGVAR(treatmentAdvanced_CPRLocal), [_caller, _target]] call CBA_fnc_localEvent;
|
2016-02-18 01:54:43 +00:00
|
|
|
} else {
|
2016-06-03 18:57:21 +00:00
|
|
|
[QGVAR(treatmentAdvanced_CPRLocal), [_caller, _target], _target] call CBA_fnc_targetEvent;
|
2016-02-18 01:54:43 +00:00
|
|
|
};
|
2015-06-20 10:46:26 +00:00
|
|
|
};
|
2015-02-28 10:41:27 +00:00
|
|
|
true;
|