beginscript; label Start: SetAnimID(10); ExcTargetType (0xffff); SetVar (0, GetTime()+10); label TimeWait: if (GetVar(0) > GetTime()) { EndFrame(); goto TimeWait; } SetFollowWaypoint(73,0,0); SetVar (0, GetTime()+200); label TimeWait: if (GetVar(0) > GetTime()) { EndFrame(); goto TimeWait; } ExcTargetType (0x2); label End: EndFrame(); goto End; endscript; $