beginscript; label Start: if (GetState() != 0 && UnitDead() != 1) { SetFollowRange(0); EndFrame(); goto Wait; } EndFrame(); goto Start; label Wait: if (GetFollowMode() == 3 && UnitDead() != 1) { SetFollowWaypoint(200,0,0); SetFollowRange(0); EndFrame(); goto End; } EndFrame(); goto Wait; label End: EndFrame(); goto End; endscript; $