ACE3/addons/medical_statemachine/functions/fnc_handleStateDefault.sqf

30 lines
649 B
Plaintext
Raw Normal View History

2016-07-07 09:46:55 +00:00
#include "script_component.hpp"
/*
* Author: BaerMitUmlaut
2019-03-30 16:07:54 +00:00
* Handles the default state
*
* Arguments:
* 0: The Unit <OBJECT>
*
* Return Value:
* None
*
2019-03-30 16:07:54 +00:00
* Example:
* [player] call ace_medical_statemachine_fnc_handleStateDefault
*
* Public: No
*/
2016-07-07 09:46:55 +00:00
params ["_unit"];
2016-07-07 09:46:55 +00:00
// If the unit died the loop is finished
if (!alive _unit) exitWith {};
if (!local _unit) exitWith {};
2016-07-07 09:46:55 +00:00
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;
};
2016-07-07 09:46:55 +00:00
};