Results 1 to 6 of 6

Thread: Sps not walking path?

  1. #1
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default Sps not walking path?

    I can't figure out why sps isn't walking the path, it worked once but now it doesn't work. Does not even try to walk the path. I've re made the path several times but it still doesn't work.

    Simba Code:
    program TinderboxPro;
    {$DEFINE SMART}
    {$i srl/srl.simba}
    {$i sps/sps.simba}
    var
    teleport:integer;
    x,y:Integer;
    myPath:TPointArray;

    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      with Players[0] do
      begin
        Name := '';
        Pass := '';
        Nick := '';
        Active := True;
        Pin := '';
        BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
      end;
    end;
     procedure SetDtm;
     begin;
      teleport := DTMFromString('mbQAAAHicY2VgYLBlYmBwBmIzILaCssUYGRj4gVgUiGWgWE/DgMHd3pghK/IAQ2zgUob86dcZsAFGLBgMAN03B7E=');
     end;
     procedure FreeeDtm;
     begin;
      FreeDTM(teleport);
     end;

    procedure ToBank;
     begin;
      FTab(tab_Magic);
      if FindDTM(teleport, x, y, MIX1, MIY1, MIX2, MIY2) then;
      Mouse(x, y, 4, 4, False);
      ChooseOption('revious-des');
      wait(18000+random(200));
      begin;
       SPS_WalkPath(myPath);
       Writeln('Walking to bank');
      begin
       OpenBankFast('clt');
       wait(900+random(200));
       if PinScreen then
        InPin(Players[CurrentPlayer].Pin);
       if BankScreen then
       DepositAll;
      end;
     end;
    end;


    begin;
     SRL_SixHourFix := True;
     SMART_FixSpeed := True;
     SetupSRL;
     DeclarePlayers;
     LoginPlayer;
     SPS_Setup(RUNESCAPE_SURFACE,['6_6','6_7','7_7','7_6']);
     myPath := [Point(2566, 2723), Point(2574, 2725), Point(2579, 2720), Point(2586, 2719), Point(2597, 2719), Point(2609, 2715), Point(2619, 2716), Point(2627, 2716), Point(2635, 2717), Point(2646, 2714), Point(2661, 2713), Point(2674, 2713), Point(2693, 2710), Point(2706, 2711), Point(2719, 2712), Point(2726, 2712), Point(2734, 2710), Point(2740, 2709), Point(2738, 2691), Point(2740, 2680)];
     SetDtm;
     Repeat
      ToBank;
     until(Not (LoggedIn));
     FreeeDtm;
    end.

    This is my first time using a full sps path so any help would be much appreciated

  2. #2
    Join Date
    May 2012
    Location
    Chaaaaiir
    Posts
    376
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    do something like...

    Code:
    Procedure yadayada;
    begin
    Walkthis:= [points go here] -----
    SPS_WalkPath(Walkthis)  //(you can also substitute walkline for walkpath)
    If Not(SPS_WalkPath(Walkthis)) then
    begin
         FindnomalRandoms;
         yadayada;
        end;
    end;

  3. #3
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Still Doesnt walk the path...maybe sps hates seers village..

  4. #4
    Join Date
    May 2012
    Location
    Chaaaaiir
    Posts
    376
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Yeah I'm having problems with it too, but I think custom maps are working (at least from what i've heard)

  5. #5
    Join Date
    Jun 2012
    Posts
    219
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    There is nothing wrong with the way you call your walking. So the problem is not there. That only leaves the map that is outdated. You will have to create a custom map for the area you want to walk. Look at the tutorials by google or JJ, they will show you how to create the custom maps.

  6. #6
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Alright ill try making a custom map, thanks for the help guys. cheers

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •