Thread: Ripping Client Maps (not leeching)

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1 Ripping Client Maps (not leeching) 
    Registered Member
    Join Date
    Dec 2010
    Posts
    87
    Thanks given
    1
    Thanks received
    0
    Rep Power
    1
    hey guys,

    Was wondering if anyone knew how to rip the maps from a client?
    Not looking to leech any sort of maps from any client in general its just I'd like to implement a map or at least have a copy of the map for this server that I'm working on.

    It's a clean server so there's nothing in it, working on spawning NPCs and all that crap but I can't find the exact map from the Wiki of history of maps lol

    I found one that's definitely matching from this date 21 March 2006 but then there's a new release at 28 July 2006 which contains a ton of more map, However, this client / server DOES have some of those features from that map update but it doesn't have them all which means that the first map is out of date for this server but then the new map is also too new for the server. Which means there's no released map from in between those time frames that has the data without being short or too much in terms of maps.

    Which is why I'm wondering how to rip the maps from this client, Because the map is outdated or too new for this server due to map release dates.
    I already have Tom's Cache Suite but haven't figured out how to dump the maps let alone where they are stored in the cache...
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Apr 2015
    Posts
    40
    Thanks given
    2
    Thanks received
    2
    Rep Power
    18
    this is client related so wrong section

    but use a cache editor and look into... i think idx4? for map data

    or if you have source, dump the current map regions in the loadregion section of the client
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Dec 2010
    Posts
    87
    Thanks given
    1
    Thanks received
    0
    Rep Power
    1
    Quote Originally Posted by applesauce View Post
    this is client related so wrong section

    but use a cache editor and look into... i think idx4? for map data

    or if you have source, dump the current map regions in the loadregion section of the client
    What do you mean wrong section? The maps are in the cache... Which is client side.
    But i have the source too obviously.

    Not even sure how to find the map data.. Cause i tried to look at idx4 but i don't see anything... It's just a bunch of numbers.

    IDX4 is simply files 0-1389 and none of which can i find maps... I seriously don't even know what I'm looking for or i would have found it due to other threads wanting the same information yet no actual information on Seriously finding said information...

    I simply want the map, ITSELF, You know.... go into the cache that the client loads and dump the map file that is displayed on the minimap since that's the only map that's actually going to be accurate to the server... Since the only maps i can find are too old or too new, Whys it so hard to get anyone to give me real information on getting the actual file from the server so i can have a world map that's correct to the source...

    Surely it isn't that hard to get.... It's displayed by the minimap, Where's the minimap get the map file from? I simply want to dump that map file to have a viewable map....
    Reply With Quote  
     

  4. #4  
    Retired From RSPS

    iGarrett's Avatar
    Join Date
    Dec 2013
    Posts
    461
    Thanks given
    144
    Thanks received
    110
    Rep Power
    187
    It's a painful process for someone who doesn't know what they're doing.
    You need to Decrypt the Map Data and bullshit long story short there's a few map editors on r-s somewhere and help on unpacking maps.
    Look around.
    Quote Originally Posted by i am here View Post
    I have never messed with Eclipse. Is it a whole new revision or type of code?
    Quote Originally Posted by bibl View Post
    hahaha, good one m9. "deob" is short for "deobfuscated" which is not the same as decompiled.
    I'm GEEGIN' OUT
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Dec 2010
    Posts
    87
    Thanks given
    1
    Thanks received
    0
    Rep Power
    1
    Quote Originally Posted by Mara Sov View Post
    It's a painful process for someone who doesn't know what they're doing.
    You need to Decrypt the Map Data and bullshit long story short there's a few map editors on r-s somewhere and help on unpacking maps.
    Look around.
    Lmao ah ok, Well that makes sense.

    Someone with some real information!, Now we're getting somewhere xD

    EDIT;
    Well, I tried this: https://www.rune-server.ee/runescape...equesting.html but i guess i don't have the actual 317 maps cause the program won't load the cache..
    Reply With Quote  
     

  6. #6  
    Retired From RSPS

    iGarrett's Avatar
    Join Date
    Dec 2013
    Posts
    461
    Thanks given
    144
    Thanks received
    110
    Rep Power
    187
    What did the OP say when you dowloaded the source, the cache version?

    Try OpenRS Map Editor
    Quote Originally Posted by i am here View Post
    I have never messed with Eclipse. Is it a whole new revision or type of code?
    Quote Originally Posted by bibl View Post
    hahaha, good one m9. "deob" is short for "deobfuscated" which is not the same as decompiled.
    I'm GEEGIN' OUT
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Dec 2010
    Posts
    87
    Thanks given
    1
    Thanks received
    0
    Rep Power
    1
    Quote Originally Posted by Mara Sov View Post
    What did the OP say when you dowloaded the source, the cache version?

    Try OpenRS Map Editor
    I'm not sure now lol, It was a clean source / client that i downloaded but i can't remember which one.
    It ended up not being totally 100% clean but it's pretty damn clean, Clean enough for my needs and the odd things out are simply fixable.

    But i can't remember which one, So i can't even double check.


    As for OpenRS Map Editor, do you have a link? I'm having trouble finding it in Google's search results.
    Reply With Quote  
     

  8. #8  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    Quote Originally Posted by alex809 View Post
    IDX4 is simply files 0-1389 and none of which can i find maps...
    Those are the map files.. to find the map file ur looking for:
    1. Get coordinates for the area u want
    2. Convert coordinates into regionId, using simple math..
    Code:
    int regionId = (y >> 6) + ((x >> 6) * 256);
    Note: The position could be at the edge of a region, so should try with a few more nearby positions to see if u also need the maps for some other region.
    3. Open map Index and find the data (objectMapID + floorMapID) used for that regionId u obtained earlier
    4. Now u have the map ids, now simply take those from idx4.

    ^Takes like less than a minute if u know what to do...
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

  9. Thankful user:


  10. #9  
    Banned
    Join Date
    Aug 2016
    Posts
    82
    Thanks given
    34
    Thanks received
    45
    Rep Power
    0
    Quote Originally Posted by mige5 View Post
    Those are the map files.. to find the map file ur looking for:
    1. Get coordinates for the area u want
    2. Convert coordinates into regionId, using simple math.. u can probably find the formula by using search
    3. Open map Index and find the data (objectMapID + floorMapID) used for that regionId u obtained earlier
    4. Now u have the map ids, now simply take those from idx4.

    ^Takes like less than a minute if u know what to do...
    Cant find the formula, mind helping me out?
    Reply With Quote  
     

  11. #10  
    Community Veteran

    mige5's Avatar
    Join Date
    Aug 2008
    Posts
    5,528
    Thanks given
    573
    Thanks received
    1,410
    Rep Power
    2114
    Quote Originally Posted by Falador. View Post
    Cant find the formula, mind helping me out?
    edited earlier post
    Number of page #1 releases with most views & posts: (Updated: 2023)
    RS2 server section: 1
    RS2 client section: 2
    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. 525 Amazing with Source + Client - Not Leeched
    By TiberiumX in forum Downloads
    Replies: 22
    Last Post: 06-03-2012, 02:55 AM
  2. Replies: 2
    Last Post: 11-05-2008, 03:30 PM
  3. releasing silab v8 client really not my work
    By jurre in forum Downloads
    Replies: 15
    Last Post: 06-25-2008, 06:59 PM
  4. client map need good coder !!!!
    By freescapev3 in forum RS2 Client
    Replies: 3
    Last Post: 05-09-2008, 12:54 AM
  5. How to make your own compiler! Not leeched
    By Lachlin in forum Tutorials
    Replies: 8
    Last Post: 04-25-2008, 06:15 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •