mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1dc934e1b1
Improves the way medical is storing variables in object space by having a common list of variables names as macros. Makes the code a bit cleaner and ensured consistency across components. Also a handy reference for when working on medical to see what values are all stored.
21 lines
429 B
Plaintext
21 lines
429 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 [VAR_HEART_RATE, 40, true];
|
|
_unit setVariable [QGVAR(lastTimeUpdated), CBA_missionTime];
|