Sarge-AI/sarge/UPSMON/COMMON/unit/fnc/UPSMON_Disableunitloop.sqf
Teh Dango c5e98f17e6 Epoch Update
Epoch Update
2017-10-25 21:36:31 -04:00

18 lines
544 B
Plaintext

/****************************************************************
****************************************************************/
private["_unit"];
_unit = _this select 0;
waituntil {IsNull _unit || !alive _unit || !IsNull ((group _unit) getvariable ["UPSMON_target",Objnull]) || _unit getvariable ["UPSMON_SUPSTATUS",""] != "" || _unit getvariable ["UPSMON_Wait",time] <= time};
if (!IsNull _unit) then
{
If (alive _unit) then
{
_unit switchmove "";
_unit enableAI "MOVE";
_unit setvariable ["UPSMON_Civdisable",false];
};
};