Page 3 of 4 FirstFirst 1234 LastLast
Results 51 to 75 of 79

Thread: Creating Custom SPS MiniMap Maps Using Photoshop + Using Them

  1. #51
    Join Date
    Jan 2012
    Posts
    713
    Mentioned
    3 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by [J]ustin View Post
    Depends on how much the colors have changed since the map, also SPS only works if the compass is north, no it, it wont work if the camera shifts away from north (angle can be any)
    I'm pretty sure the area of the mini map is different now with the nav-bar so it would not even be able to get a position on a rsps. My best guess would be to edit the variables for the mmx1-y to have it work.
    ^ If this makes sense to you.

    Edit: updated snippet for current update.

  2. #52
    Join Date
    Dec 2012
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    I am also trying to use this for a private server and all it did was try to set compass North then stopped. Obviously it couldn't do that as it is rs from 2006 and once I removed that action it simply does nothing at all just like previous user. I can't find any methods of walking and it sucks.

    Code:
    Program TestPath;
    {$i srl/srl.Simba}
    {$i sps/sps.simba}
    
    var //{path name}
        //{delcare the sps variable}
      mypath: tpointarray;
    
      status: string;
    
    procedure paths;
    begin
      myPath := [Point(185, 72), Point(164, 134), Point(162, 198), Point(128, 255), Point(82, 284), Point(82, 309)];
      end;
    procedure testpath;
    begin
      if sps_walkpath(mypath) then
        status := 'walking to the garden'
      else begin
        status :='failed walking to the garden';
        writeln(status + ' + time running:' +timerunning);
     end;
      writeln(status + ' + time running:' +timerunning);
    end;
    begin
      setupsrl;
      paths; //{call path variables here}
      //{Mistake I see a lot only call the map once, Not in the procedure}
      //{If using multiple accounts it will always give an error when trying to pull the map}
      sps_setup(runescape_other,['walkpath']);
    
      testpath;
    
      repeat
      until(false)
    end.

    So something is going wrong in this part here. I would imagine it could be changed to the new minimap location but I'm really not sure how.

    Code:
    // Walks the path "Path"; always walks to the furthest point possible
    function SPS_WalkPath(Path: TPointArray): boolean;
    var
      I, H, T, D: integer;
      P, MM: TPoint;
    begin
      H := High(Path);
      T := GetSystemTime + 20000 + Random(5000);
    
      while (not Result) and (GetSystemTime < T) do
      begin
        RunEnergy(20);
    
        P := SPS_GetMyPos;
        for I := H downto 0 do
        begin
          MM.X := MMCX + Path[I].X - P.X;
          MM.Y := MMCY + Path[I].Y - P.Y;
    
          D := Distance(MM.X, MM.Y, MMCX, MMCY);
    
          if (D < 10) then
            break
          else
            if (D < 70) then
            begin
              if (SPS_MultiMouse) then
                MultiMouse(MM.X, MM.Y, 25, 3, false)
              else
                Mouse(MM.X, MM.Y, 5, 5, mouse_Left);
    
              FFlag(Integer(I <> H) * 15);
    
              T := getSystemTime + 20000 + Random(1000);
     	        Break;
            end;
        end;
    
        Result := (I = H);
      end;
    end;
    Last edited by Pew; 12-24-2012 at 04:11 PM.

  3. #53
    Join Date
    Nov 2011
    Location
    England
    Posts
    3,072
    Mentioned
    296 Post(s)
    Quoted
    1094 Post(s)

    Default

    Lol ^ sps isn't designed to work with private servers..

  4. #54
    Join Date
    Dec 2012
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    Quote Originally Posted by Ollybest View Post
    Lol ^ sps isn't designed to work with private servers..
    Lol^ I didn't know that I'm only starting out..

    Can anyone suggest any walking methods that might work?

  5. #55
    Join Date
    Nov 2012
    Posts
    2,351
    Mentioned
    55 Post(s)
    Quoted
    603 Post(s)

    Default

    Quote Originally Posted by Pew View Post
    Lol^ I didn't know that I'm only starting out..

    Can anyone suggest any walking methods that might work?
    DTMs, TPA's, ATPA's, radialwalk, colorclicking, blind clicking, pretty much anything besides sps


    Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling

  6. #56
    Join Date
    Apr 2007
    Location
    Estonia
    Posts
    156
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    Yeah nice Tut, replaced walking in my 2 scripts works like a charm, btw didn't get edgeville to work, I think because there are so many symbols? It clicks outside bank not inside

    And btw Pew, you can make it work with private server if you downgrade some SPS procedures/functions to RS 2006 :P Just look into what SPS uses for walking and change it in srl.
    ROCK IS NOT A DEVILS WORK, ITS MAGICAL AND RAD!

  7. #57
    Join Date
    Jan 2012
    Posts
    713
    Mentioned
    3 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by neeger View Post
    Yeah nice Tut, replaced walking in my 2 scripts works like a charm, btw didn't get edgeville to work, I think because there are so many symbols? It clicks outside bank not inside

    And btw Pew, you can make it work with private server if you downgrade some SPS procedures/functions to RS 2006 :P Just look into what SPS uses for walking and change it in srl.
    You can try adjusting the tolerance usually fixes the problem if the map is still off, sorry for the late response.

  8. #58
    Join Date
    Apr 2012
    Location
    Vancouver, BC
    Posts
    291
    Mentioned
    1 Post(s)
    Quoted
    84 Post(s)

    Default

    Hey Google ... I tried following this script and for my 1st round made a few mistakes ... with the marquee tool I made the circles too big so when I was trying to line them up there was a small "border" around the images. My bad! Learned from that mistake. I had a few followup questions:

    1). Is it best to use the same graphic settings as simba requires?

    2). How perfect does the alignment need to be ... this was easily the hardest part (although I am also BRAND new to photoshop)

    Thanks!

    DN

  9. #59
    Join Date
    Apr 2012
    Location
    Vancouver, BC
    Posts
    291
    Mentioned
    1 Post(s)
    Quoted
    84 Post(s)

    Default

    Hey Google ... couple more questions ... I cant get my sps to work

    I get a compile failed for both these:

    srl_sixhourfix := true;
    smart_fixspeed := true;

    I also dont understand the code and what I am supposed to be entering? Do I need to enter stuff at these points?

    var //{path name}
    //{delcare the sps variable}

    paths; //{call path variables here}
    //{Mistake I see a lot only call the map once, Not in the procedure}
    //{If using multiple accounts it will always give an error when trying to pull the map}

    Thanks!

    DN

  10. #60
    Join Date
    Mar 2007
    Posts
    393
    Mentioned
    1 Post(s)
    Quoted
    98 Post(s)

    Default

    thank you, I finally understand SPS walking

  11. #61
    Join Date
    Mar 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Amazing job Google!
    Very clear and easy to understand, this will definetly help alot of people with walking in their scripts!

  12. #62
    Join Date
    Feb 2012
    Location
    Canada
    Posts
    1,164
    Mentioned
    26 Post(s)
    Quoted
    433 Post(s)

  13. #63
    Join Date
    Jan 2012
    Posts
    468
    Mentioned
    3 Post(s)
    Quoted
    200 Post(s)

    Default

    Thanks for the TUT! Its hard as Fk to make a Custom Map! Photoshop sucks with Alignment!

  14. #64
    Join Date
    Mar 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Rules of Joe View Post
    Thanks for the TUT! Its hard as Fk to make a Custom Map! Photoshop sucks with Alignment!
    Second this, photoshop is one of the most painful proggies to use properly

  15. #65
    Join Date
    Sep 2007
    Location
    BitLeak
    Posts
    175
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    This is a great tutorial. I will definitely be using this.

  16. #66
    Join Date
    Mar 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    I'm getting this error:

    [Error] (1:1): Unexpected end of file at line 0
    Compiling failed.

    Not entirely sure why, but here's my code so far:

    program CatherbyLobbies;
    {$DEFINE SMART8} //< Edit this out if using Rs Client
    {$i srl/srl.Simba}
    {$i sps/sps.simba}

    var Catherby: tpointarray;

    status: string;

    procedure paths;
    begin
    Catherby := [Point(109, 125), Point(111, 131), Point(110, 134), Point(110, 139), Point(115, 143), Point(122, 143), Point(128, 142), Point(137, 142), Point(146, 142), Point(151, 140), Point(155, 139), Point(164, 139), Point(174, 140), Point(179, 141), Point(184, 140), Point(192, 140), Point(195, 140), Point(201, 141), Point(209, 144), Point(211, 148), Point(213, 154), Point(216, 158), Point(219, 159), Point(228, 159), Point(232, 159), Point(240, 159), Point(245, 161), Point(251, 164), Point(256, 168), Point(258, 169), Point(263, 175), Point(268, 178), Point(273, 182), Point(279, 185), Point(280, 187), Point(292, 191), Point(300, 191), Point(306, 187), Point(310, 182), Point(317, 179), Point(321, 179)]
    end;
    procedure testpath;
    begin
    if sps_walkpath(Catherby) then
    status := 'walking to the shore'
    else begin
    status :='failed walking to the shore';
    writeln(status + ' + time running:' +timerunning);
    end;
    writeln(status + ' + time running:' +timerunning);
    end;
    begin
    srl_sixhourfix := true;
    smart_fixspeed := true;

    setupsrl;
    paths;
    sps_setup(runescape_other,['MMap']);

    clicknorth(srl_angle_high);

    testpath;

    repeat
    until(false)

  17. #67
    Join Date
    Mar 2013
    Posts
    94
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Do I need to download any SPS thing to make SPS stuff work? Or is Simba and SRL all I need. BAsically following YOHOJO's video guide to installing Simba and SPS all I need?

  18. #68
    Join Date
    Jul 2012
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by kwp4peter View Post
    I'm getting this error:

    [Error] (1:1): Unexpected end of file at line 0
    Compiling failed.

    Not entirely sure why, but here's my code so far:
    You forgot an "end." at the very end of the script

  19. #69
    Join Date
    Jun 2013
    Location
    unfortunately US
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I noticed in your testing script that it says
    Code:
    {Mistake I see a lot only call the map once, Not in the procedure}
    are you saying that I cant use Runescape_Surface and RuneScape_Other in the same script? I'm trying to do that but it will only move if there is one or the other, not both.

    yes both paths do work, I've tested them separately.

  20. #70
    Join Date
    Oct 2012
    Posts
    84
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    thanks for this google great tutorial. Will be using

  21. #71
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    just used this guide to create a great custom map.

    Thanks a ton for the in-depth guide!!! xD

    now that SPS is working with srl-6 and rs3, xD

  22. #72
    Join Date
    Oct 2015
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    bro, i hope this tut will help me!

  23. #73
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by footballjds View Post
    just used this guide to create a great custom map.

    Thanks a ton for the in-depth guide!!! xD

    now that SPS is working with srl-6 and rs3, xD
    7 years later...

    I used the default paint app to create this:

    https://i.imgur.com/Xw4BGCc.png

    Tips to improve it?

  24. #74
    Join Date
    Apr 2007
    Location
    In My Secret Lair of Secretness...
    Posts
    112
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    Rswalkers map grabber works great
    Jesus loves you

  25. #75
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by Emarian View Post
    Rswalkers map grabber works great
    ended up using RuneLite's "instance map"

Page 3 of 4 FirstFirst 1234 LastLast

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
  •