Sarge-AI/ModName.MapName/scripts/UPSMON/COMMON/unit/fnc/UPSMON_Disableunitloop.sqf
Teh Dango 65e4453908 2.4.0
Major Update. Now supporting DesolationRedux, Epoch and Exile.
2017-12-31 03:16:37 -05: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];
};
};