mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
/*
|
|
* 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>
|
|
*
|
|
* Example:
|
|
* [medic, patient] call ace_medical_fnc_treatmentAdvanced_CPRLocal
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_caller","_target"];
|
|
|
|
if (_target getVariable [QGVAR(inReviveState), false]) then {
|
|
private _reviveStartTime = _target getVariable [QGVAR(reviveStartTime),0];
|
|
if (_reviveStartTime > 0) then {
|
|
_target setVariable [QGVAR(reviveStartTime), (_reviveStartTime + random(20)) min CBA_missionTime];
|
|
};
|
|
};
|
|
|
|
if (GVAR(level) > 1 && {(random 1) >= 0.6}) then {
|
|
_target setVariable [QGVAR(inCardiacArrest), nil,true];
|
|
_target setVariable [QGVAR(heartRate), 40];
|
|
_target setVariable [QGVAR(bloodPressure), [50,70]];
|
|
};
|
|
|
|
[_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
|
|
|
|
true;
|