Page 2 of 2 FirstFirst 12
Results 26 to 31 of 31

Thread: Walking On Entrana

  1. #26
    Join Date
    Dec 2011
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    Had problems making my own map. Any tuts with gimp for making your own?
    @dzpliu Heres my minimaps:Entrana3.png
    If you want them 1 by one just let me know.
    Attached Images Attached Images
    Last edited by mafia miles; 04-08-2013 at 02:57 PM.

  2. #27
    Join Date
    Dec 2011
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    New coding and new minimap placed in other07 folder. renamed other runescape surfaces to runescape_other07.
    Its running a bit and then returning (-1,-1) for position. Is my map not dead north? colors off? Ideas?

    Code:
    program RunToAlter5;
    {$DEFINE SMART8}
    {$I SRL-OSR/SRL.Simba}
    {$I SPS/sps-osr.simba}
    
    
    
    var
    mypath:TPointArray;
    DegreeFix: TIntegerArray;
      FindPoint: Boolean;
      z:integer;
    
    
    const
      AccountLogin = '';
      AccountPass = '';
      CharacterName = '';
      version = '1.1';               
                                     
    
    //Declare your username and password
    procedure DeclarePlayer;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
          Players[0].Name := AccountLogin;
          Players[0].Pass := AccountPass;
          Players[0].Nick := CharacterName; //Important for antirandoms
          Players[0].Active := True;
      end;
    
    
    procedure paths;
    begin
     SPS_Setup(runescape_other, ['16_14']);
     myPath := [Point(326, 353), Point(352, 383), Point(392, 389), Point(392, 423), Point(420, 427), Point(488, 418), Point(524, 408), Point(529, 371), Point(522, 342), Point(539, 275)];
     end;
    
    
    
    
    procedure Mainland1;
    begin
    
      SPS_Setup(runescape_other, ['16_14']); 
    
    
    
        Wait(600);
       (SPS_Blindwalk(Point(6712, 5940))); //
    
        Wait(600);
      (SPS_Blindwalk(Point(6745, 5988))); //
    
        Wait(600);
       (SPS_Blindwalk(Point(6793, 6015))); //
    
        Wait(600);
       (SPS_Blindwalk(Point(6616, 5396))); //
    
        Wait(600);
      (SPS_Blindwalk(Point(6847, 6033))); //
    
        Wait(600);
      (SPS_Blindwalk(Point(6922, 6018))); //
    
        Wait(600);
       (SPS_Blindwalk(Point(6928, 5955))); //
    
        Wait(600);
       (SPS_Blindwalk(Point(6934, 5895))); //
    
        Wait(600);
       (SPS_Blindwalk(Point(6943, 5862))); //
    end;
    
    
       begin
    
      SetupSRL;
      activateclient;
      DeclarePlayer;
      LoginPlayer;
      SMART_FIXSPEED := TRUE;
      SPS_AnyAngle := true;  //I want to use this map with a different angle, so I set it true
      SPS_Debug := True;
      wait(500);
        MakeCompass('E');
    repeat
    
    
    
     SPS_Setup(runescape_other, ['16_14']);
    
    
      SPS_GetMyPos;
    
    
    
      mainland1;
    
    
        until(false)
    end.
    16_14.png

  3. #28
    Join Date
    Jan 2013
    Posts
    294
    Mentioned
    1 Post(s)
    Quoted
    121 Post(s)

    Default

    using custom maps has different coordinates from the vanilla ones.
    coordinates >1000 = something wrong.

  4. #29
    Join Date
    Dec 2011
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    Well I get cordinates from 100s to 300s but when i call sps get my pos there always in the thousandsa or -1 -1. any ideas? should I resize the map no black and add water color?

  5. #30
    Join Date
    Jan 2013
    Posts
    294
    Mentioned
    1 Post(s)
    Quoted
    121 Post(s)

    Default

    Quote Originally Posted by mafia miles View Post
    Well I get cordinates from 100s to 300s but when i call sps get my pos there always in the thousandsa or -1 -1. any ideas? should I resize the map no black and add water color?
    im having problems with custom maps too, what i did is using POS:=SPS_GetMyPos; and Writeln('POS coordinates: '+ToStr(POS)); and manually find my coordinates

  6. #31
    Join Date
    Dec 2011
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    MyLoc:=SPS_GetMyPos;
    Writeln('POS coordinates: '+ToStr(MyLoc));

    Does ^ work? still gives me -1 -1

Page 2 of 2 FirstFirst 12

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
  •