ACE3/addons/medical/functions/fnc_leftStateCardiacArrest.sqf
ulteq fa77fb7194 Various fixes:
* Fixed medication (morphine, epinephrine, ...)
* Fixed CPR
* Improved heart rate simulation
* Removed deprecated ace settings
2016-12-06 17:26:11 +01:00

21 lines
431 B
Plaintext

/*
* Author: BaerMitUmlaut
* Handles a unit entering cardiac arrest.
*
* Arguments:
* 0: The Unit <OBJECT>
*
* Return Value:
* None
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
_unit setVariable [QGVAR(inCardiacArrest), false, true];
_unit setVariable [QGVAR(cardiacArrestStart), nil];
_unit setVariable [QGVAR(heartRate), 40, true];
_unit setVariable [QGVAR(lastTimeUpdated), CBA_missionTime];