mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
506 B
Plaintext
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
|