mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ec9e6c088b
* Only stitch wounds on not bleeding body parts
24 lines
462 B
Plaintext
24 lines
462 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)}
|