They all have different formats
|
|
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




tried finding this out the other day too, if you find out please lmk

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(); } }
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.
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.
| « Cache packed interfaces | [REQ] Sprite Cache Editor for Vencillio - [REQ] » |
| Thread Information |
Users Browsing this ThreadThere are currently 1 users browsing this thread. (0 members and 1 guests) |