Thread: OSRS into 317 format #177 release

Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 38
  1. #11  
    Owner of Ghreborn new and old.


    Join Date
    Nov 2009
    Posts
    916
    Thanks given
    47
    Thanks received
    155
    Rep Power
    273
    Thanks works need those animations though

    Sent from my SM-J337P using Tapatalk
    Im back and working on reborn,
    Reply With Quote  
     

  2. Thankful user:

    Zac

  3. #12  
    Owner of Ghreborn new and old.


    Join Date
    Nov 2009
    Posts
    916
    Thanks given
    47
    Thanks received
    155
    Rep Power
    273
    Coords for the dungeon where the hydras are is 1311 10206 0

    Sent from my SM-J337P using Tapatalk
    Im back and working on reborn,
    Reply With Quote  
     

  4. Thankful user:

    Zac

  5. #13  
    Registered Member
    King Zeus's Avatar
    Join Date
    Jan 2018
    Posts
    205
    Thanks given
    40
    Thanks received
    82
    Rep Power
    178
    Beautiful. Thanks so much for this
    Reply With Quote  
     

  6. Thankful user:

    Zac

  7. #14  
    Banned
    Join Date
    Sep 2017
    Posts
    339
    Thanks given
    24
    Thanks received
    30
    Rep Power
    0
    Quote Originally Posted by Sgsrocks View Post
    Coords for the dungeon where the hydras are is 1311 10206 0

    Sent from my SM-J337P using Tapatalk
    Thanks but you can use runelite to gather these coords nowadays.
    Reply With Quote  
     

  8. Thankful user:

    Zac

  9. #15  
    Owner of Ghreborn new and old.


    Join Date
    Nov 2009
    Posts
    916
    Thanks given
    47
    Thanks received
    155
    Rep Power
    273
    Most dungeons on the y just do y+6400

    Sent from my SM-J337P using Tapatalk
    Im back and working on reborn,
    Reply With Quote  
     

  10. Thankful user:

    Zac

  11. #16  
    Registered Member
    JeztC's Avatar
    Join Date
    Jul 2016
    Age
    24
    Posts
    136
    Thanks given
    212
    Thanks received
    65
    Rep Power
    303
    Thanks so much for this, maybe one will find this useful.
    Reply With Quote  
     

  12. Thankful user:

    Zac

  13. #17  
    Registered Member Equity's Avatar
    Join Date
    Aug 2013
    Posts
    388
    Thanks given
    57
    Thanks received
    15
    Rep Power
    15
    Appreciate the release.

    seq.dat caused errors for me. Anyone encounter the same problem and know a fix?
    Attached image
    Reply With Quote  
     

  14. #18  
    Banned

    Join Date
    Jul 2018
    Posts
    121
    Thanks given
    82
    Thanks received
    55
    Rep Power
    0
    Quote Originally Posted by iBucky View Post
    Appreciate the release.

    seq.dat caused errors for me. Anyone encounter the same problem and know a fix?
    What errors here is my file if you can't fix using that post your errors please

    https://paste.ee/p/4qh3J

    https://paste.ee/p/QxBsl
    Reply With Quote  
     

  15. Thankful user:


  16. #19  
    Registered Member
    Tamatea's Avatar
    Join Date
    Aug 2010
    Posts
    1,317
    Thanks given
    401
    Thanks received
    357
    Rep Power
    2457
    Quote Originally Posted by Zac View Post
    Hey, Here is the 177 data since the tool broke in 177 and people probs don't have the fix or they don't have the source code


    Includes:

    • Models
    • Maps
    • Configs
    • Xteas
    • Config fields and Lists
    • Sprites Transparent and Pink
    • Animations
    • Latest Map Functions


    Map Image:

    Spoiler for Map Image:
    Attached image


    Credits:

    • Polar - Xteas
    • kris - Fix for tool
    • RSPI


    https://www.sendspace.com/file/u8e4gu

    Spoiler for Pics:


    Attached image
    Attached image
    Attached image
    Attached image



    Edit: Trying to fix some things like map functions over 82 and anims up atm but nothing massive to stop you from looking at the maps and using the items
    For the sake of people who don't know how to sort out the definitions decoding. Would you post the ReadValues methods that these definitions are dumped for?
    Spoiler for sig too large:


    Attached image
    Attached image
    Reply With Quote  
     

  17. #20  
    Banned
    Join Date
    Sep 2017
    Posts
    339
    Thanks given
    24
    Thanks received
    30
    Rep Power
    0
    Can you please post your readvalues please?

    Code:
    java.lang.ArrayIndexOutOfBoundsException: 6
    	at com.ares.core.cache.map.ObjectDef.readValues(ObjectDef.java:419)
    	at com.ares.core.cache.map.ObjectDef.getObjectDef(ObjectDef.java:47)
    	at com.vencillio.rs2.entity.object.ObjectConstants.declare(ObjectConstants.java:25)
    	at com.ares.GameDataLoader$1.run(GameDataLoader.java:95)

    Code:
    private void readValues(ByteStreamExt stream) {
    
    		int flag = -1;
    		do {
    			int type = stream.readUnsignedByte();
    			if (type == 0)
    				break;
    			if (type == 1) {
    				int len = stream.readUnsignedByte();
    				if (len > 0) {
    					if (anIntArray773 == null || lowMem) {
    						anIntArray776 = new int[len];
    						anIntArray773 = new int[len];
    						for (int k1 = 0; k1 < len; k1++) {
    							anIntArray773[k1] = stream.readUnsignedWord();
    							anIntArray776[k1] = stream.readUnsignedByte();
    						}
    					} else {
    						stream.currentOffset += len * 3;
    					}
    				}
    			} else if (type == 2)
    				name = stream.readString();
    			else if (type == 3)
    				description = stream.readBytes();
    			else if (type == 5) {
    				int len = stream.readUnsignedByte();
    				if (len > 0) {
    					if (anIntArray773 == null || lowMem) {
    						anIntArray776 = null;
    						anIntArray773 = new int[len];
    						for (int l1 = 0; l1 < len; l1++)
    							anIntArray773[l1] = stream.readUnsignedWord();
    					} else {
    						stream.currentOffset += len * 2;
    					}
    				}
    			} else if (type == 14)
    				objectSizeX = stream.readUnsignedByte();
    			else if (type == 15)
    				objectSizeY = stream.readUnsignedByte();
    			else if (type == 17)
    				aBoolean767 = false;
    			else if (type == 18)
    				aBoolean757 = false;
    			else if (type == 19)
    				hasActions = (stream.readUnsignedByte() == 1);
    			else if (type == 21)
    				aBoolean762 = true;
    			else if (type == 22) {
    			} else if (type == 23)
    				aBoolean764 = true;
    			else if (type == 24) {
    				anInt781 = stream.readUnsignedWord();
    				if (anInt781 == 65535)
    					anInt781 = -1;
    			} else if (type == 28)
    				anInt775 = stream.readUnsignedByte();
    			else if (type == 29)
    				stream.readSignedByte();
    			else if (type == 39)
    				stream.readSignedByte();
    			else if (type >= 30 && type < 39) {
    				if (actions == null)
    					actions = new String[5];
    				actions[type - 30] = stream.readString();
    				if (actions[type - 30].equalsIgnoreCase("hidden"))
    					actions[type - 30] = null;
    			} else if (type == 40) {
    				int i1 = stream.readUnsignedByte();
    				modifiedModelColors = new int[i1];
    				originalModelColors = new int[i1];
    				for (int i2 = 0; i2 < i1; i2++) {
    					modifiedModelColors[i2] = stream.readUnsignedWord();
    					originalModelColors[i2] = stream.readUnsignedWord();
    				}
    
    			} else if (type == 60)
    				anInt746 = stream.readUnsignedWord();
    			else if (type == 62) {
    			} else if (type == 64) {
    			} else if (type == 65)
    				stream.readUnsignedWord();
    			else if (type == 66)
    				stream.readUnsignedWord();
    			else if (type == 67)
    				stream.readUnsignedWord();
    			else if (type == 68)
    				anInt758 = stream.readUnsignedWord();
    			else if (type == 69)
    				anInt768 = stream.readUnsignedByte();
    			else if (type == 70)
    				stream.readSignedWord();
    			else if (type == 71)
    				stream.readSignedWord();
    			else if (type == 72)
    				stream.readSignedWord();
    			else if (type == 73)
    				aBoolean736 = true;
    			else if (type == 74)
    				aBoolean766 = true;
    			else if (type == 75)
    				anInt760 = stream.readUnsignedByte();
    			else if (type == 77) {
    				anInt774 = stream.readUnsignedWord();
    				if (anInt774 == 65535)
    					anInt774 = -1;
    				anInt749 = stream.readUnsignedWord();
    				if (anInt749 == 65535)
    					anInt749 = -1;
    				int j1 = stream.readUnsignedByte();
    				childrenIDs = new int[j1 + 1];
    				for (int j2 = 0; j2 <= j1; j2++) {
    					childrenIDs[j2] = stream.readUnsignedWord();
    					if (childrenIDs[j2] == 65535)
    						childrenIDs[j2] = -1;
    				}
    			}
    		} while (true);
    		if (flag == -1 && name != "null" && name != null) {
    			hasActions = anIntArray773 != null && (anIntArray776 == null || anIntArray776[0] == 10);
    			if (actions != null)
    				hasActions = true;
    		}
    		if (aBoolean766) {
    			aBoolean767 = false;
    			aBoolean757 = false;
    		}
    		if (anInt760 == -1)
    			anInt760 = aBoolean767 ? 1 : 0;
    	}
    Reply With Quote  
     

Page 2 of 4 FirstFirst 1234 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. [OSRS] #171.2 OSRS Cache (317 format) - Theatre of Blood
    By Corey in forum Configuration
    Replies: 47
    Last Post: 10-31-2020, 01:40 AM
  2. Replies: 108
    Last Post: 03-01-2019, 06:01 AM
  3. OSRS into 317 format #176 release
    By _Patrick_ in forum Configuration
    Replies: 29
    Last Post: 01-18-2019, 06:12 AM
  4. Replies: 16
    Last Post: 12-04-2012, 09:23 AM
  5. Packed all 474 items into 317 format
    By Sean in forum Show-off
    Replies: 29
    Last Post: 12-20-2009, 11:47 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
  •