Code: Select all
Program New;
const
  questCoordsX = 7040;
  questCoordsY = 376;
  
  actionDelay = 575;
  
begin
 //Body of Script 
   while ((GetX(self()) <> questCoordsX) or (GetY(self()) <> questCoordsY)) do
  begin
    while IsGump do CloseSimpleGump(0);
    NewMoveXY(questCoordsX, questCoordsY, True, 0, True);
    Wait(actionDelay);
  end;
end.
help~~!
is there any method to ignore somebody standing Coords? so i can go to the Coords.



