ACE3/addons/medical_statemachine/functions/fnc_handleStateInjured.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

29 lines
639 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: BaerMitUmlaut
* Handles the injured state
*
* Arguments:
* 0: The Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [player] call ace_medical_statemachine_fnc_handleStateInjured
*
* Public: No
*/
params ["_unit"];
// If the unit died the loop is finished
if (!alive _unit || {!local _unit}) exitWith {};
if ([_unit] call EFUNC(medical_vitals,handleUnitVitals)) then { // returns true when update ran
private _painLevel = GET_PAIN_PERCEIVED(_unit);
if (_painLevel > 0) then {
[QEGVAR(medical,moan), [_unit, _painLevel]] call CBA_fnc_localEvent;
};
};