Thread: grabbing individual osrs/718 anims

Results 1 to 8 of 8
  1. #1 grabbing individual osrs/718 anims 
    Registered Member
    Join Date
    Mar 2016
    Posts
    347
    Thanks given
    82
    Thanks received
    24
    Rep Power
    60
    i have a cache, but how would i grab anims and ints from it? (note : I do not want to add full osrs cache so pls don't suggest that)
    trying to mix 634/667+/osrs

    same goes for 667/718 as I want to grab a few of those too
    Reply With Quote  
     

  2. #2  
    Registered Member
    Tamatea's Avatar
    Join Date
    Aug 2010
    Posts
    1,283
    Thanks given
    379
    Thanks received
    334
    Rep Power
    2318
    They all have different formats

    [Only registered and activated users can see links. ]



    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Mar 2016
    Posts
    347
    Thanks given
    82
    Thanks received
    24
    Rep Power
    60
    Quote Originally Posted by Squxx View Post
    They all have different formats
    well yeah I guessed, but I want to learn how to individually extract them
    Reply With Quote  
     

  4. #4  
    what the dog doin

    mikan's Avatar
    Join Date
    Aug 2017
    Posts
    917
    Thanks given
    698
    Thanks received
    731
    Discord
    View profile
    Rep Power
    4898
    tried finding this out the other day too, if you find out please lmk
    Reply With Quote  
     

  5. #5  
    Banned

    Join Date
    Apr 2013
    Posts
    1,620
    Thanks given
    410
    Thanks received
    474
    Rep Power
    0
    Dump them via client, this method from professor oak will dump any index.

    Code:
    	public static void dumpCacheIndex(Client client, Store cacheIndex) { 
    		try {
    			for (int i = 0;; i++) {
    				try {
    					byte[] indexByteArray = client.indices[cacheIndex.getIndex()].decompress(i);
    					if (indexByteArray == null) {
    						System.out.println("Finished dumping index " + cacheIndex.getIndex()
    						+ ", exiting dump operation.");
    						break;
    					}
    
    					if (indexByteArray.length == 0) {
    						continue;
    					}
    					
    					  Path file = Paths.get(SignLink.findcachedir() + "dump" + cacheIndex.getIndex() + "/" + i +".dat");
                                  Files.write(file, indexByteArray);
    					
    				} catch (IOException ex) {
    					ex.printStackTrace();
    					throw new IOException(
    							"Error writing to folder. Ensure you have this directory created: '"
    									+ SignLink.findcachedir() + "dump" + cacheIndex.getIndex() + "/");
    				}
    			}
    		} catch (Exception e) {
    			e.printStackTrace();
    		}
    	}
    Reply With Quote  
     

  6. #6  
    Registered Member Stevenhax's Avatar
    Join Date
    Jul 2014
    Posts
    389
    Thanks given
    53
    Thanks received
    64
    Rep Power
    42
    For dumping anything OSRS related: Poesy's cache tool / write the bytes with an OSRS client or just download a release cache.
    For anything higher rev you probably want to use RSDataSuite or the method posted above me.
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Mar 2016
    Posts
    347
    Thanks given
    82
    Thanks received
    24
    Rep Power
    60
    Quote Originally Posted by Stevenhax View Post
    For dumping anything OSRS related: Poesy's cache tool / write the bytes with an OSRS client or just download a release cache.
    For anything higher rev you probably want to use RSDataSuite or the method posted above me.
    i get this for files, but how would i grab the ints>?
    Reply With Quote  
     

  8. #8  
    Registered Member Stevenhax's Avatar
    Join Date
    Jul 2014
    Posts
    389
    Thanks given
    53
    Thanks received
    64
    Rep Power
    42
    Quote Originally Posted by ventusX View Post
    i get this for files, but how would i grab the ints>?
    It's a bitch to do (aside from anims/map index), usually I just take the released ones but you can dump them yourself doing
    something similar to this [Only registered and activated users can see links. ]
    Should be able to dump from any rev if you add the missing opcodes.
    If you're looking to dump files with an idx&dat file you could also look at the released NPC packer and modify that.
    Reply With Quote  
     


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+ Anims (Idk if it's been posted)
    By dorsett45 in forum Configuration
    Replies: 7
    Last Post: 08-17-2013, 11:54 PM
  2. 718 animation request
    By matt442 in forum Requests
    Replies: 3
    Last Post: 01-02-2013, 10:40 PM
  3. 718 Animation Request
    By Chaz in forum Requests
    Replies: 3
    Last Post: 08-19-2012, 04:00 PM
  4. 718 Animations
    By #Kyle in forum Requests
    Replies: 4
    Last Post: 08-10-2012, 06:31 AM
  5. Selling 718 Animations for 317
    By Azir in forum Selling
    Replies: 6
    Last Post: 06-16-2012, 04:40 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •