ACE3/addons/medical/functions/fnc_addUnconsciousCondition.sqf
2015-11-30 17:23:48 +01:00

25 lines
551 B
Plaintext

/*
* Author: Glowbal
* Adds new condition for the unconscious state. Conditions are not actively checked for units unless unit is in unconscious state.
*
* Arguments:
* 0-N: Code, should return a boolean <CODE>
*
* ReturnValue:
* None
*
* Public: Yes
*/
#include "script_component.hpp"
if (isnil QGVAR(unconsciousConditions)) then {
GVAR(unconsciousConditions) = [];
};
if (_this isEqualType []) then {
{
if (_x isEqualType {}) then {
GVAR(unconsciousConditions) pushback _x;
};
} foreach _this;
};