here is what i have so far after 100's of trial and error runs. what do you think? haha
still seems a bit buggy to me but oh well. next is to actually select the furnace LOL
Simba Code:
program Script;
{$DEFINE SMART}
{$i SRL/SRL.simba}
{$i sps/sps.simba}
{$i ObjectDTM\ObjDTMInclude.simba}
Procedure Walk;
Var
myPath:TPointArray;
begin
SetAngle(SRL_ANGLE_HIGH);
SPS_Setup (RUNESCAPE_SURFACE,['fally1']);
myPath := [Point(514, 511), Point(500, 496), Point(478, 486),
Point(454, 478), Point(436, 473), Point(419, 466),
Point(392, 457), Point(377, 446)];
SPS_WalkPath(myPath);
wait(5000);
//SPS_WalkToPos(Point(351, 443));
SPS_WalkToPos(Point(355, 455));
end;
begin
SetupSRL;
//DeclarePlayers;
//LoginPlayer;
ActivateClient;
ClickNorth(SRL_ANGLE_HIGH);
Walk;
//findfurance;
//walkbacktobank;
//selectlace;
end.