I'm working on a script, and the walking path is not working... the character doesn't walk to the bank OR the trees.
If you want to test it start your guy in the falador east bank and you will get the "out of bounds" message...
My theory is that the runescape surface.png file is wrong, but my file wont work and I can't get a new one for some reason.
Simba Code:Procedure WalkToTrees; // Gets you to the trees from the bank
Var
myPath:TPointArray;
begin
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE, [ '9_7' ]);
myPath:= [Point(265, 410), Point(266, 397), Point(250, 396), Point(223, 403)];
SPS_WalkPath(myPath) ;
end;
Procedure WalkToBank; // Gets you to the bank from the trees
Var
myPath:TPointArray;
begin
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE, [ '9_7' ]);
myPath := [Point(225, 405), Point(239, 401), Point(254, 396), Point(267, 395), Point(267, 416)];
SPS_WalkPath(myPath);
end;
If you can fix it please post the solution. PLEASE.
~Joe


Reply With Quote





