Thread: Full 131 Data with Maps

Page 2 of 12 FirstFirst 1234 ... LastLast
Results 11 to 20 of 112
  1. #11  
    Developer


    Join Date
    Oct 2013
    Age
    29
    Posts
    1,038
    Thanks given
    689
    Thanks received
    321
    Rep Power
    260
    thanks for the share man

    Attached image
    Spoiler for vouches(20+):

    Reply With Quote  
     

  2. #12  
    Extreme Donator


    Join Date
    Oct 2010
    Posts
    2,853
    Thanks given
    1,213
    Thanks received
    1,622
    Rep Power
    5000
    Got it working, epic!

    Just one question, does this not contain Dragon claws? Because they have model 32784 but that model isn't included.
    Reply With Quote  
     

  3. #13  
    'Slutty McFur'

    Owain's Avatar
    Join Date
    Sep 2014
    Age
    26
    Posts
    2,894
    Thanks given
    2,360
    Thanks received
    2,200
    Rep Power
    5000
    Thanks for the release.


    Spoiler for wat:
    Attached image
    Attached image

    Attached image


    Reply With Quote  
     

  4. #14  
    Registered Member

    Join Date
    Feb 2013
    Posts
    1,682
    Thanks given
    401
    Thanks received
    402
    Rep Power
    446
    Quote Originally Posted by Professor Oak View Post
    Got it working, epic!

    Just one question, does this not contain Dragon claws? Because they have model 32784 but that model isn't included.
    13652

    Nice release.
    Reply With Quote  
     

  5. Thankful user:


  6. #15  
    Banned

    Join Date
    Oct 2012
    Posts
    4,710
    Thanks given
    1,679
    Thanks received
    1,105
    Rep Power
    0
    Quote Originally Posted by Professor Oak View Post
    That's weird. I packed index1 and obj.idx/obj.dat, results:

    Attached image
    Thats because you cache packed the obj files. Load them from your cache root.

    Incase someone needs the item readvals cuz they're leazy.

    Code:
    private void readValues(Buffer stream) {
    		do {
    			int opcode = stream.readUnsignedByte();
    			if (opcode == 0)
    				return;
    			if (opcode == 1)
    				inventoryModel = stream.readUShort();
    			else if (opcode == 2)
    				name = stream.readString();
    			else if (opcode == 3)
    				description = stream.readString();
    			else if (opcode == 4)
    				modelZoom = stream.readUShort();
    			else if (opcode == 5)
    				rotationX = stream.readUShort();
    			else if (opcode == 6)
    				rotationY = stream.readUShort();
    			else if (opcode == 7) {
    				offsetX = stream.readUShort();
    				if (offsetX > 32767)
    					offsetX -= 0x10000;
    			} else if (opcode == 8) {
    				offsetY = stream.readUShort();
    				if (offsetY > 32767)
    					offsetY -= 0x10000;
    			} else if (opcode == 11)
    				stackable = true;
    			else if (opcode == 12)
    				value = stream.readInt();
    			else if (opcode == 16)
    				membersObject = true;
    			else if (opcode == 23) {
    				maleModel0 = stream.readUShort();
    				maleOffset = stream.readSignedByte();
    			} else if (opcode == 24)
    				maleModel1 = stream.readUShort();
    			else if (opcode == 25) {
    				femaleModel0 = stream.readUShort();
    				femaleOffset = stream.readSignedByte();
    			} else if (opcode == 26)
    				femaleModel1 = stream.readUShort();
    			else if (opcode >= 30 && opcode < 35) {
    				if (groundOptions == null)
    					groundOptions = new String[5];
    				groundOptions[opcode - 30] = stream.readString();
    				if (groundOptions[opcode - 30].equalsIgnoreCase("hidden"))
    					groundOptions[opcode - 30] = null;
    			} else if (opcode >= 35 && opcode < 40) {
    				if (inventoryOptions == null)
    					inventoryOptions = new String[5];
    				inventoryOptions[opcode - 35] = stream.readString();
    			} else if (opcode == 40) {
    				int j = stream.readUnsignedByte();
    				originalModelColors = new int[j];
    				modifiedModelColors = new int[j];
    				for (int k = 0; k < j; k++) {
    					originalModelColors[k] = stream.readUShort();
    					modifiedModelColors[k] = stream.readUShort();
    				}
    			} else if (opcode == 41) {
    				int j = stream.readUnsignedByte();
    				textureFind = new int[j];
    				textureReplace = new int[j];
    				for (int k = 0; k < j; k++) {
    					textureFind[k] = stream.readUShort();
    					textureReplace[k] = stream.readUShort();
    				}
    			} else if (opcode == 65) {
    				stockMarket = true;
    			} else if (opcode == 78)
    				maleModel2 = stream.readUShort();
    			else if (opcode == 79)
    				femaleModel2 = stream.readUShort();
    			else if (opcode == 90)
    				maleHead0 = stream.readUShort();
    			else if (opcode == 91)
    				femaleHead0 = stream.readUShort();
    			else if (opcode == 92)
    				maleHead1 = stream.readUShort();
    			else if (opcode == 93)
    				femaleHead1 = stream.readUShort();
    			else if (opcode == 95)
    				iconRoll = stream.readUShort();
    			else if (opcode == 97)
    				notedId = stream.readUShort();
    			else if (opcode == 98)
    				notedTemplate = stream.readUShort();
    			else if (opcode >= 100 && opcode < 110) {
    				if (countObj == null) {
    					countObj = new int[10];
    					countCo = new int[10];
    				}
    				countObj[opcode - 100] = stream.readUShort();
    				countCo[opcode - 100] = stream.readUShort();
    			} else if (opcode == 110)
    				scaleX = stream.readUShort();
    			else if (opcode == 111)
    				scaleY = stream.readUShort();
    			else if (opcode == 112)
    				scaleZ = stream.readUShort();
    			else if (opcode == 113)
    				ambient = stream.readSignedByte();
    			else if (opcode == 114)
    				contrast = stream.readSignedByte();
    			else if (opcode == 115)
    				team = stream.readUnsignedByte();
    			else if (opcode == 139)
    				boughtLink = stream.readUShort();
    			else if (opcode == 140)
    				boughtTemplate = stream.readUShort();
    			/*
    			 * else if (opcode == 148) opcode148 = stream.readUShort(); else if
    			 * (opcode == 149) opcode149 = stream.readUShort();
    			 */
    		} while (true);
    	}
    Reply With Quote  
     

  7. Thankful users:


  8. #16  
    Registered Member
    Zivik's Avatar
    Join Date
    Oct 2007
    Age
    28
    Posts
    4,421
    Thanks given
    891
    Thanks received
    1,527
    Rep Power
    3285
    Thanks for the share man.
    Reply With Quote  
     

  9. #17  
    Extreme Donator


    Join Date
    Oct 2010
    Posts
    2,853
    Thanks given
    1,213
    Thanks received
    1,622
    Rep Power
    5000
    Quote Originally Posted by _Patrick_ View Post
    Thats because you cache packed the obj files. Load them from your cache root.
    Yeah worked fine after I preloaded them. How come though?
    Reply With Quote  
     

  10. #18  
    Respected Member


    George's Avatar
    Join Date
    Mar 2009
    Posts
    7,099
    Thanks given
    2,226
    Thanks received
    3,146
    Rep Power
    5000
    Whats new in this batch.
    Attached image

    Spoiler for Spoilers!:
    Attached image
    Attached image
    Attached image
    Attached image
    Reply With Quote  
     

  11. #19  
    Extreme Donator


    Join Date
    Oct 2010
    Posts
    2,853
    Thanks given
    1,213
    Thanks received
    1,622
    Rep Power
    5000
    Quote Originally Posted by Delinquent View Post
    13652
    Pretty much all items are working but Dragon claws. I can't even find the model in the index1 folder either, so I guess that's the problem.

    Attached image

    Could you maybe send me the model?
    Reply With Quote  
     

  12. #20  
    🎶 As you're falling down 🎶


    uint32_t's Avatar
    Join Date
    Feb 2015
    Posts
    1,396
    Thanks given
    6,177
    Thanks received
    776
    Rep Power
    5000
    Quote Originally Posted by Professor Oak View Post
    Pretty much all items are working but Dragon claws. I can't even find the model in the index1 folder either, so I guess that's the problem.

    Attached image

    Could you maybe send me the model?
    I see it just fine:
    and

    Perhaps try redownloading it or something?
    Quote Originally Posted by Idiot Bird View Post
    Quote Originally Posted by Velocity View Post
    lol np mate looks like the community brought ur rep down to ur IQ
    Not too sure about that, it's at 0 . It would have to go minus to even be remotely close to his IQ.
    Reply With Quote  
     

Page 2 of 12 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. Replies: 4
    Last Post: 09-15-2016, 05:31 PM
  2. Someone with map data knowledge
    By TheCrazy in forum Buying
    Replies: 4
    Last Post: 06-10-2014, 12:56 AM
  3. Replies: 1
    Last Post: 04-15-2011, 04:08 PM
  4. Help With Map Data
    By xsuperx in forum Help
    Replies: 0
    Last Post: 12-28-2010, 10:38 PM
  5. Replies: 25
    Last Post: 08-17-2010, 05:11 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
  •