ACE3/addons/medical_ai/functions/fnc_isInjured.sqf

25 lines
486 B
Plaintext
Raw Normal View History

/*
* Author: BaerMitUmlaut
* Checks if a unit needs treatment.
*
* Arguments:
* Unit <OBJECT>
*
* Return Value:
* Does unit need treatment <BOOL>
*
* Example:
* player call ACE_medical_ai_fnc_isInjured
*
* Public: No
*/
#include "script_component.hpp"
if !(alive _this) exitWith {false};
2018-04-27 15:03:55 +00:00
private _bloodLoss = GET_BLOOD_LOSS(_this);
private _pain = GET_PAIN_TOTAL(_this);
private _unconscious = IS_UNCONSCIOUS(_this);
(_bloodLoss > 0) || {_pain > 0.2} || _unconscious