don't use that use this instead
SCAR Code:
Procedure WalkTo;
Var
I: Integer;
Path: TPointArray;
Begin
if not(LoggedIn) then Exit;//failsafe
Path := LoadPath;//loads the path
for i := 0 to High(Path) do
Begin
WalkToTile(Path[i], 3, 0);//walks the path
end;
Wait(500+Random(300));
end;
and to load the path do
SCAR Code:
function LoadPath2: TPointArray;
begin
SetLength(result, 2);//changes depending on no of tiles
Result[0] := Point(tiles here);
Result[1] := Point(tiles here);
end;
if you need any help just pm me or add my msn sandos1234@hotmail.co.uk