beginscript; ExcTargetType (0); IncludeGTarget (2); label Start: if (GetFollowMode() != 3) {EndFrame(); goto Start;} SetFollowWaypoint (101, 0, 0); label InPosition: if (GetFollowMode() != 3) {EndFrame(); goto InPosition;} SetVar (0, GetTime()+600); label TimeWait: if (GetVar(0) > GetTime()) {EndFrame(); goto TimeWait;} SetFollowWaypoint(45, 0, 0); label End: EndFrame(); goto End; endscript; $