ACE3/addons/medical/functions/fnc_isInStableCondition.sqf
PabstMirror bec55114fa Add load,unload and radial actions (#5270)
- Add radial actions
- Revert back to using 'ACE_isUnconscious'
2017-06-15 14:35:33 -05:00

27 lines
541 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 (_unit getVariable ["ACE_isUnconscious", false]) exitWith { false };
if (_unit call FUNC(getBloodLoss) > 0) exitWith { false };
if (!(_unit call FUNC(hasStableVitals))) exitWith { false };
true