ACE3/addons/medical_status/functions/fnc_isInStableCondition.sqf
2018-04-27 16:03:55 +01:00

27 lines
506 B
Plaintext

/*
* Author: Glowbal
* Check if a unit is in a stable condition
*
* Arguments:
* 0: The patient <OBJECT>
*
* Return Value:
* Is in stable condition <BOOL>
*
* Example:
* [player] call ace_medical_fnc_isInStableCondition
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
if (!alive _unit) exitWith { false };
if IS_UNCONSCIOUS(_unit) exitWith { false };
if (GET_BLOOD_LOSS(_unit) > 0) exitWith { false };
if (!(_unit call FUNC(hasStableVitals))) exitWith { false };
true