mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
7a0a00ea09
* Use private * Fix wrong spacing * Fix wrong variable being used * Cleanup empty line after header * ace_common_fnc_getCountOfItem * Remove useless _return variable * Naming
33 lines
801 B
Plaintext
33 lines
801 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: BaerMitUmlaut
|
|
*
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit"];
|
|
|
|
// If the unit died the loop is finished
|
|
if (!alive _unit) exitWith {};
|
|
|
|
// If locality changed, broadcast the last medical state and finish the local loop
|
|
if (!local _unit) exitWith {
|
|
_unit setVariable [VAR_HEART_RATE, GET_HEART_RATE(_unit), true];
|
|
_unit setVariable [VAR_BLOOD_PRESS, _unit getVariable [VAR_BLOOD_PRESS, [80, 120]], true];
|
|
_unit setVariable [VAR_BLOOD_VOL, GET_BLOOD_VOLUME(_unit), true];
|
|
};
|
|
|
|
[_unit] call EFUNC(medical_vitals,handleUnitVitals);
|
|
|
|
private _painLevel = GET_PAIN_PERCEIVED(_unit);
|
|
if (_painLevel > 0) then {
|
|
[QEGVAR(medical,moan), [_unit, _painLevel]] call CBA_fnc_localEvent;
|
|
};
|