mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
758 B
Plaintext
30 lines
758 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: BaerMitUmlaut
|
|
* Handles a unit entering cardiac arrest (calls for a status update).
|
|
* Sets required variables for countdown timer until death.
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player] call ace_medical_statemachine_fnc_enteredStateCardiacArrest
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit"];
|
|
|
|
// 10% possible variance in cardiac arrest time
|
|
private _time = GVAR(cardiacArrestTime);
|
|
_time = _time + random [_time*-0.1, 0, _time*0.1];
|
|
|
|
_unit setVariable [QGVAR(cardiacArrestTime), _time];
|
|
_unit setVariable [QGVAR(cardiacArrestStart), CBA_missionTime];
|
|
|
|
// Update the unit status to reflect cardiac arrest
|
|
[_unit, true] call EFUNC(medical_status,setCardiacArrest);
|