ACE3/addons/medical_status/functions/fnc_isInStableCondition.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

24 lines
465 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Glowbal
* Check if a unit is in a stable condition, needed for PersonalAidKit treatment
*
* Arguments:
* 0: The patient <OBJECT>
*
* Return Value:
* Is in stable condition <BOOL>
*
* Example:
* [player] call ace_medical_status_fnc_isInStableCondition
*
* Public: No
*/
params ["_unit"];
alive _unit
&& {!IS_UNCONSCIOUS(_unit)}
&& {GET_WOUND_BLEEDING(_unit) == 0}
&& {_unit call FUNC(hasStableVitals)}