Thread: 718 Runescape Remake

Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1 718 Runescape Remake 
    Supporter of Onyx RSPS
    Atazoth's Avatar
    Join Date
    Dec 2017
    Posts
    84
    Thanks given
    4
    Thanks received
    6
    Rep Power
    15
    I am looking for a 718 source that has most of the shops around the world included etc.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    May 2016
    Posts
    384
    Thanks given
    52
    Thanks received
    35
    Rep Power
    29
    "shops around the world"?
    donald trump approves this message
    Reply With Quote  
     

  3. #3  
    Donator


    Join Date
    Jan 2014
    Posts
    1,652
    Thanks given
    428
    Thanks received
    501
    Rep Power
    221
    Reply With Quote  
     

  4. #4  
    Banned

    Join Date
    Jul 2011
    Posts
    1,767
    Thanks given
    493
    Thanks received
    425
    Rep Power
    0
    thanks jorsi
    Reply With Quote  
     

  5. #5  
    WVWVWVWVWVWVWVW

    _jordan's Avatar
    Join Date
    Nov 2012
    Posts
    3,046
    Thanks given
    111
    Thanks received
    1,848
    Rep Power
    5000
    Quote Originally Posted by Hassan View Post
    thanks jorsi
    they actually are in the cache btw
    Attached image
    Attached image
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Jul 2011
    Posts
    1,767
    Thanks given
    493
    Thanks received
    425
    Rep Power
    0
    Quote Originally Posted by _jordan View Post
    they actually are in the cache btw
    thanks _jordan u always have my back
    Reply With Quote  
     

  7. #7  
    WVWVWVWVWVWVWVW

    _jordan's Avatar
    Join Date
    Nov 2012
    Posts
    3,046
    Thanks given
    111
    Thanks received
    1,848
    Rep Power
    5000
    Quote Originally Posted by Hassan View Post
    thanks _jordan u always have my back
    can’t remember if it was all shops tho, i’d have to check later
    Attached image
    Attached image
    Reply With Quote  
     

  8. #8  
    Registered Member
    Join Date
    May 2016
    Posts
    384
    Thanks given
    52
    Thanks received
    35
    Rep Power
    29
    Quote Originally Posted by _jordan View Post
    can’t remember if it was all shops tho, i’d have to check later
    Quote Originally Posted by Arravs View Post
    Code:
    package com.orinate.cache.parsers;
    
    import java.util.Arrays;
    import java.util.concurrent.ConcurrentHashMap;
    
    import com.alex.io.InputStream;
    import com.orinate.cache.Cache;
    
    public final class ItemsContainerDefinitions {
    
    	@SuppressWarnings("unused")
    	private int length;
    	private int[] ids, amounts;
    
    	private static final ConcurrentHashMap<Integer, ItemsContainerDefinitions> maps = new ConcurrentHashMap<Integer, ItemsContainerDefinitions>();
    
    	public static void main(String... args) {
    		Cache.init();
    		for (int i = 0; i < Integer.MAX_VALUE; i++) {
    			ItemsContainerDefinitions def = getContainer(i);
    			if (def.ids == null || def.ids.length <= 0)
    				continue;
    			System.out.println("Key=" + i + " Items=" + Arrays.toString(def.ids));
    		}
    	}
    
    	public static final ItemsContainerDefinitions getContainer(int id) {
    		ItemsContainerDefinitions def = maps.get(id);
    		if (def != null)
    			return def;
    		byte[] data = Cache.STORE.getIndexes()[2].getFile(5, id);
    		def = new ItemsContainerDefinitions();
    		if (data != null)
    			def.decode(new InputStream(data));
    		maps.put(id, def);
    		return def;
    	}
    
    	private void decode(InputStream stream) {
    		l: while (true) {
    			switch (stream.readUnsignedByte()) {
    			case 2:
    				length = stream.readUnsignedShort();
    				break;
    			case 4:
    				int size = stream.readUnsignedByte();
    				ids = new int[size];
    				amounts = new int[size];
    				for (int i = 0; i < size; i++) {
    					ids[i] = stream.readUnsignedShort();
    					amounts[i] = stream.readUnsignedShort();
    				}
    				break;
    			default:
    				break l;
    			}
    		}
    	}
    
    }
    already posted here
    donald trump approves this message
    Reply With Quote  
     

  9. #9  
    WVWVWVWVWVWVWVW

    _jordan's Avatar
    Join Date
    Nov 2012
    Posts
    3,046
    Thanks given
    111
    Thanks received
    1,848
    Rep Power
    5000
    Quote Originally Posted by Java100 View Post
    already posted here
    nice and by tyler too. even nicer
    Attached image
    Attached image
    Reply With Quote  
     

  10. #10  
    Registered Member

    Join Date
    Dec 2009
    Posts
    774
    Thanks given
    367
    Thanks received
    455
    Rep Power
    927
    That's not all shops, and in lower revs, there barely is any data.
    link removed
    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. [718] [718]Runescape Remake
    By MyMinigame in forum Projects
    Replies: 24
    Last Post: 12-21-2017, 01:39 PM
  2. Replies: 37
    Last Post: 05-27-2015, 03:57 AM
  3. Elyrion 718/742 The Runescape Remake
    By Keiron in forum Advertise
    Replies: 7
    Last Post: 05-09-2014, 08:05 PM
  4. Replies: 12
    Last Post: 04-21-2014, 02:35 PM
  5. looking for a dev team for 718 runescape remake
    By Four Nations in forum Requests
    Replies: 33
    Last Post: 01-08-2014, 04:28 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
  •