Results 1 to 3 of 3

Thread: SPS walking help

  1. #1
    Join Date
    Mar 2013
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default SPS walking help

    Hi.

    Im trying to make my first script and im trying to make a little test with some walking, but i got an error.

    My script:

    Code:
    program AutoShrimp;
    
    {$Define SMART8}
    {$i SRL/SRL.simba}
    {$i SPS/SPS.simba}
    {$i P07Include.simba}
    
    procedure Start;
    begin
      P07_makeCompassWest;
      Wait(1000);
      P07_makeCameraAngleHigh;
      Wait(1500);
    end;
    
    Var
      mypath:TPointArray;
    procedure WalkToFish;
    begin
      SPS_Setup(RUNESCAPE_SURFACE,['10_9']);
      myPath := [Point(168, 30), Point(165, 12), Point(160, 10), Point(152, 11),
      Point(144, 9), Point(141, 16), Point(141, 25), Point(141, 40), Point(144, 49),
      Point(140, 67), Point(139, 81), Point(143, 84)];
      SPS_WalkPath(mypath);
    end;
    
    begin
      P07_PlayerName := 'xx'; // Username
      P07_PlayerPass := 'xx'; // Password
      ClearDebug;
      SetupSRL;
      SetupP07Include;
      repeat
      P07_loginPlayer;
      Start;
      WalkToFish;
      until(false);
    end.
    Log

    Code:
    SRL Compiled in 0 msec
    Loading SMART: http://oldschool33.runescape.com/j1
    Checking P07Include VersionNumber
    Local : 1.7 / Latest : 1.7
    You Have The Latest Version of P07Include
    Welcome to Project RS06
    Enter your username & password
    Click To Play
    SPS_GetArea ERROR: Exception: Error while reading stream: Unable to open file "C:\Simba\Includes\SPS\img\runescape_surface\10_9.png"
    SPS_GetArea ERROR: Exception: Error while reading stream: Unable to open file "C:\Simba\Includes\SPS\img\runescape_surface\10_9.png"
    SPS_GetArea ERROR: Exception: Error while reading stream: Unable to open file "C:\Simba\Includes\SPS\img\runescape_surface\10_9.png"
    SPS_GetArea ERROR: Exception: Error while reading stream: Unable to open file "C:\Simba\Includes\SPS\img\runescape_surface\10_9.png"
    SPS_GetArea ERROR: Exception: Error while reading stream: Unable to open file "C:\Simba\Includes\SPS\img\runescape_surface\10_9.png"
    SPS_GetArea ERROR: Exception: Error while reading stream: Unable to open file "C:\Simba\Includes\SPS\img\runescape_surface\10_9.png"
    or im maybe stupid and this is for EOC and not oldschool?
    Last edited by Zarqua; 03-26-2013 at 05:19 PM.

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

    Default

    It's pretty obvious, do u even have the sps plugin installed?

  3. #3
    Join Date
    Sep 2012
    Location
    Australia.
    Posts
    839
    Mentioned
    16 Post(s)
    Quoted
    225 Post(s)

    Default

    If you're trying to use this for Oldschool then you need SRL-OSR and SPS-OSR. Search for them and you'll find them!

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
  •