I'm Making a script that cuts maples behind seers, then banks, but I cant figure out how to get my script to walk to the bank. I've tried SPS, that didnt work
Simba Code:
program MapleChopper;
//{$DEFINE SMART}
{$i srl/srl.simba}
{$i sps/sps.simba}
Procedure Walkwherever;
Var
WalkW: TPointarray; //declares that path is a TPA
Begin
SetAngle(SRL_ANGLE_HIGH); //Sets the angle high, not necessary though
MakeCompass('N'); //makes compass 'North'
WalkW := [Point(2738, 2677)]; //this is where your points would go ex: Point[234, 238] , Point[]
Sps_WalkPath(WalkW); //this tells it to walk the path WalkW
End;
begin
SetupSRL
SPS_Setup(RUNESCAPE_SURFACE,['6_6']);
Walkwherever
end.
I've tried a DTM of the bank symbol and of the bank building, neither of those worked. Whats the easiest way to get it to work? Its only a one click path, not that complex.