2015-02-28 10:41:27 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* local Callback for the CPR treatment action on success.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The medic <OBJECT>
|
|
|
|
* 1: The patient <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Succesful treatment started <BOOL>
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [medic, patient] call ace_medical_fnc_treatmentAdvanced_CPRLocal
|
|
|
|
*
|
2015-02-28 10:41:27 +00:00
|
|
|
* Public: Yes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-17 16:34:32 +00:00
|
|
|
params ["_caller","_target"];
|
2015-02-28 10:41:27 +00:00
|
|
|
|
2015-11-30 16:27:09 +00:00
|
|
|
if (_target getVariable [QGVAR(inReviveState), false]) then {
|
2016-06-13 00:34:56 +00:00
|
|
|
private _reviveStartTime = _target getVariable [QGVAR(reviveStartTime),0];
|
2015-06-20 10:44:52 +00:00
|
|
|
if (_reviveStartTime > 0) then {
|
2016-03-02 10:01:39 +00:00
|
|
|
_target setVariable [QGVAR(reviveStartTime), (_reviveStartTime + random(20)) min CBA_missionTime];
|
2015-02-28 10:41:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-09-05 09:07:10 +00:00
|
|
|
if (GVAR(level) > 1 && {(random 1) >= 0.6}) then {
|
2015-11-30 16:27:09 +00:00
|
|
|
_target setVariable [QGVAR(inCardiacArrest), nil,true];
|
|
|
|
_target setVariable [QGVAR(heartRate), 40];
|
|
|
|
_target setVariable [QGVAR(bloodPressure), [50,70]];
|
2015-02-28 10:41:27 +00:00
|
|
|
};
|
|
|
|
|
2015-12-11 18:01:50 +00:00
|
|
|
[_target, "activity", LSTRING(Activity_CPR), [[_caller, false, true] call EFUNC(common,getName)]] call FUNC(addToLog);
|
|
|
|
[_target, "activity_view", LSTRING(Activity_CPR), [[_caller, false, true] call EFUNC(common,getName)]] call FUNC(addToLog); // TODO expand message
|
2015-08-07 17:11:57 +00:00
|
|
|
|
2015-02-28 10:41:27 +00:00
|
|
|
true;
|