mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
437 B
Plaintext
25 lines
437 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* Checks if the given unit is bleeding. Handles both ACE Medical and Vanilla.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Is Bleeding <BOOL>
|
|
*
|
|
* Example:
|
|
* [player] call ace_medical_blood_fnc_isBleeding
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit"];
|
|
|
|
if (GETEGVAR(medical,enabled,false)) exitWith {
|
|
IS_BLEEDING(_unit);
|
|
};
|
|
|
|
alive _unit && {getDammage _unit > 0.3}
|