Sarge-AI/ModName.MapName/scripts/UPSMON/COMMON/unit/fnc/UPSMON_Disableunitloop.sqf

18 lines
544 B
Plaintext
Raw Normal View History

/****************************************************************
****************************************************************/
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];
};
};