mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
544 B
Plaintext
19 lines
544 B
Plaintext
/*
|
|
* Author: Zakant
|
|
* Handels the start of the CPR treatment.
|
|
*
|
|
* Return Value:
|
|
* NONE
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
params ["_caller", "_target", "_selectionName", "_className", "_items"];
|
|
|
|
_target setVariable [QGVAR(receiveCPR), true, true]; // Target receives CPR
|
|
if(EGVAR(medical,CPRcreatesPulse)) then {
|
|
_target setVariable [QEGVAR(medical,heartRate), round (30 + random [-5, 0, 5]) , true]; // And we have a (random) pulse
|
|
};
|
|
|
|
_target setVariable [QEGVAR(medical,lastTimeUpdated), CBA_missionTime, true];
|