Results 1 to 2 of 2

Thread: Best way to get SPS to walk?

  1. #1
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default Best way to get SPS to walk?

    Sorry for the repost but I didnt mean to post this in the SRL members section
    Simba Code:
    procedure walkToTrees();
    var
      path: TPointArray;
    begin
      path := [[303, 95], [299, 113], [284, 114], [270, 119], [253, 119], [238, 122],
               [224, 127], [212, 141], [200, 153], [181, 162], [168, 164],
               [149, 159], [144, 142], [135, 127], [121, 114], [113, 102]];

      if not sps.walkPath(path) then
      begin
        writeLn('walkPath() failed, trying blindWalk()');
        sps.blindWalk(path[high(path)]);
      end;

    end;

    gives me

    Progress Report:
    -- sps.init()
    ---- Path exists (C:\Simba\Includes\SPS\img\runescape_other\Trees.png)
    ---- Setup area "Trees" in 47ms
    -- sps.init()
    walkPath() failed, trying blindWalk()
    Successfully executed.



    I remember before leaving that SPS wasn't very good but was hoping perhaps something had changed. Is there a current script that has confirmed success with SPS or is there another method better suited to travel? Thinking about DTMs but was hoping SPS was viable. If SPS works maybe some guidance would help but if you use another method for walking please share!

    Thanks

    ~Wu
    You have permission to steal anything I've ever made...

  2. #2
    Join Date
    Dec 2015
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    edit: FML sorry i used reflection. im dumb ignore my post lel
    Last edited by nenci494; 01-15-2017 at 01:51 PM.

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
  •