Thread: Is there a different in object data between 317 and 474 caches?

Results 1 to 2 of 2
  1. #1 Is there a different in object data between 317 and 474 caches? 
    Registered Member
    Join Date
    Oct 2009
    Posts
    88
    Thanks given
    8
    Thanks received
    5
    Rep Power
    1
    I couldn't decide on which section to put this in (Client or Server), but I'm planning on loading 474 object definitions into Hyperion, and I was wondering if the format is any different, specifically this part:

    Code:
                          do {
    					configCode = buf.get() & 0xFF;
    					if(configCode == 0) {
    						break outer_loop;
    					}
    					switch(configCode) {
    					case 1:
    						int someCounter = buf.get() & 0xFF;
    						for(int i = 0; i < someCounter; i++) {
    							buf.getShort();
    							buf.get();
    						}
    						break;
    					case 2:
    						name = ByteBufferUtils.getString(buf);
    						break;
    					case 3:
    						desc = ByteBufferUtils.getString(buf);
    						break;
    					case 5:
    						someCounter = buf.get() & 0xFF;
    						for(int i = 0; i < someCounter; i++) {
    							buf.getShort();
    						}
    						break;
    					case 14:
    						sizeY = buf.get() & 0xFF;
    						break;
    					case 15:
    						sizeX = buf.get() & 0xFF;
    						break;
    					case 17:
    						isSolid = false;
    					break;
    					case 18:
    						isWalkable = false;
    Project: RuneLogic
     

  2. #2  
     

    Vastiko's Avatar
    Join Date
    Dec 2006
    Posts
    5,700
    Thanks given
    300
    Thanks received
    663
    Rep Power
    5000
    http://www.rune-server.org/runescape...se-layout.html

    Please use the layout to prevent an infraction.
     


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. Replies: 9
    Last Post: 01-06-2011, 09:09 PM
  2. Replies: 13
    Last Post: 07-14-2010, 09:32 PM
  3. 526-536 caches
    By `505 in forum Requests
    Replies: 6
    Last Post: 08-31-2009, 12:18 PM
  4. Caches?????!!!!?!?!?!?!
    By Payton in forum Help
    Replies: 1
    Last Post: 07-11-2009, 03:08 AM
  5. Question - Object Data
    By ViperSniper in forum Help
    Replies: 5
    Last Post: 03-04-2009, 01:14 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
  •