ACE3/addons/medical/functions/fnc_isInStableCondition.sqf

24 lines
463 B
Plaintext
Raw Normal View History

/*
* 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"
2015-08-22 14:25:10 +00:00
params ["_unit"];
2016-12-05 20:34:20 +00:00
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 };
2016-12-05 20:34:20 +00:00
true