ACE3/addons/medical/functions/fnc_isInStableCondition.sqf
2016-12-05 21:34:20 +01:00

24 lines
463 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>
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit"];
if (!alive _unit) exitWith { false };
if (_unit call FUNC(getBloodLoss) > 0) exitWith { false };
if (!(_unit call FUNC(hasStableVitals))) exitWith { false };
if (_unit getVariable [QGVAR(isUnconscious), false]) exitWith { false };
true