beginscript; ExcTargetType(0xffffffff); IncTargetType(0x80); IncTargetType(0x2); SetFollowRange(0); DisableAvoidanceTurn(1); label Block: if (GetGlobalVar(3) == 9) { SetFollowWaypoint(126,0,0); EndFrame(); goto Wait; } EndFrame(); goto Block; label Wait: if (GetFollowMode() == 3) { SetGlobalVar(3, 3); SetVar (1, GetTime()+50); label TimeWait: if (GetVar(1) > GetTime()) { EndFrame(); goto TimeWait; } SetGlobalVar(3, 10); EndFrame(); goto End; } EndFrame(); goto Wait; label End: EndFrame(); goto End; endscript; $