#include "script_component.hpp" /* * Author: Glowbal * Get whatever or not a unit should be or stay unconscious. * * Arguments: * 0: The Unit * * Return Value: * Should the unit stay unconscious? * * Example: * [bob] call ace_medical_fnc_getUnconsciousCondition * * Public: Yes */ params ["_unit"]; if (isnil QGVAR(unconsciousConditions)) then { GVAR(unconsciousConditions) = []; }; private _return = false; { if ((_x isEqualType {}) && {([_unit] call _x)}) exitwith { _return = true; }; } foreach GVAR(unconsciousConditions); _return