Is it bad to use? Is it looked down upon?
Edit** As I am using this
Simba Code:
Function ToBankSPS: Boolean;
Var BankPath:TPointArray;
cx, cy: Integer;
Begin
SPS_Setup(RUNESCAPE_SURFACE,['0_0']);
BankPath := [Point(246, 170), Point(237, 170), Point(221, 170), Point(200, 170), Point(190, 162), Point(179, 165)];
If SPS_WalkPath(BankPath) Then
Begin
Writeln('Walking path 2 is fine');
Result := True;
Exit;
End Else
Writeln('Walking 2 failed, using other method!');
If ObjDTM_Find('21:84:2:10:7:35:86:10:7:14:73:4:6:71:22:70:22:85:7:87', cx, cy, True) Then
Begin
Writeln('Using Method 2 and found it');
ObjDTM_Walk('21:84:2:10:7:35:86:10:7:14:73:4:6:71:22:70:22:85:7:87', 2, 100, 5, True);
Wait(500);
Writeln('Using Method 2 and found it');
Result := True;
FFlag(0)
Exit;
End Else
FailSafe('Walking 2 Failed');
Logout;
End;
Procedure ToDock;
Var cx, cy: Integer;
Begin
If(Not(LoggedIn))Then Exit;
If ObjDTM_Find('140:83:5:1:7:65:42:1:7:36:67:1:7:41:105:10:7:69:74:10:7:98:87:4:131:76:146:77:144:96:132:92', cx, cy, True) Then
Begin
Writeln('Using Method 2 and found it');
ObjDTM_Walk('140:83:5:1:7:65:42:1:7:36:67:1:7:41:105:10:7:69:74:10:7:98:87:4:131:76:146:77:144:96:132:92', 2, 100, 5, True);
FFlag(0)
End;
End;
It doesn't even try sps, so if it fails shouldn't it move on to my objdtm? Would it be easier to use blindwalk?