Thread: req gems models 474

Results 1 to 10 of 10
  1. #1 req gems models 474 
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,167
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    can someone give me 2586 (cut)
    2528 (uncut)models pls

    Wich cache.idx is for item models ,usig cache suite
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Jul 2008
    Posts
    3,532
    Thanks given
    188
    Thanks received
    696
    Rep Power
    0
    How hard is it for you to download a model dump and an item dump and find the models?

    Its not hard at all, youre just lazy, all you do is get people to do things for you.

    Btw you probably wont even remember this anyway but

    IDX0 - Jagex Archives
    IDX1 - Models
    IDX2 - Anims
    IDX3 - Music
    IDX4 - Maps
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,167
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    Quote Originally Posted by Badger View Post
    How hard is it for you to download a model dump and an item dump and find the models?

    Its not hard at all, youre just lazy, all you do is get people to do things for you.

    Btw you probably wont even remember this anyway but

    IDX0 - Jagex Archives
    IDX1 - Models
    IDX2 - Anims
    IDX3 - Music
    IDX4 - Maps
    hey i downloaded 474 item models from [Only registered and activated users can see links. ]
    but all models are in .mdl format and cache read in .dat foramt,how i can convert them?

    tnx for info!
    Reply With Quote  
     

  5. #4  
    Banned

    Join Date
    Jul 2008
    Posts
    3,532
    Thanks given
    188
    Thanks received
    696
    Rep Power
    0
    Quote Originally Posted by dani_gonzales View Post
    hey i downloaded 474 item models from [Only registered and activated users can see links. ]
    but all models are in .mdl format and cache read in .dat foramt,how i can convert them?

    tnx for info!
    .dat and .mdl are the same format
    Reply With Quote  
     

  6. Thankful user:


  7. #5  
    Whatchu talkin bout willis?

    Gary's Avatar
    Join Date
    Sep 2008
    Posts
    4,165
    Thanks given
    690
    Thanks received
    646
    Rep Power
    3462
    Quote Originally Posted by dani_gonzales View Post
    hey i downloaded 474 item models from [Only registered and activated users can see links. ]
    but all models are in .mdl format and cache read in .dat foramt,how i can convert them?

    tnx for info!
    im glad badger answered that or my reply would of been extremely sarcastic
    Ellie
    Sadly lost my beautiful ellie in july 2018 always going to miss you my girl
    Spoiler for sig too big:


    Reply With Quote  
     

  8. Thankful user:


  9. #6  
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,167
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    Code:
    Exception in thread "Thread-4" java.lang.RuntimeException: error unzipping
            at OnDemandFetcher.getNextNode(OnDemandFetcher.java:368)
            at client.processOnDemandQueue(client.java:4225)
            at client.processGameLoop(client.java:3624)
            at RSApplet.run(RSApplet.java:113)
            at client.run(client.java:6023)
            at java.lang.Thread.run(Unknown Source)
    if i replace them in cache.idx1 give me that error
    any help pls?
    Code:
    public OnDemandData getNextNode() {
    		OnDemandData onDemandData;
    		synchronized (aClass19_1358) {
    			onDemandData = (OnDemandData) aClass19_1358.popHead();
    		}
    		if (onDemandData == null)
    			return null;
    		synchronized (nodeSubList) {
    			onDemandData.unlinkSub();
    		}
    		if (onDemandData.buffer == null)
    			return onDemandData;
    		int i = 0;
    		try {
    			GZIPInputStream gzipinputstream = new GZIPInputStream(
    					new ByteArrayInputStream(onDemandData.buffer));
    			// writeFile(onDemandData.buffer, "./maps/" + ++i1 + ".dat");
    			do {
    				if (i == gzipInputBuffer.length)
    					throw new RuntimeException("buffer overflow!");
    				int k = gzipinputstream.read(gzipInputBuffer, i,
    						gzipInputBuffer.length - i);
    				if (k == -1)
    					break;
    				i += k;
    			} while (true);
    		} catch (IOException _ex) {
    line 368			throw new RuntimeException("error unzipping");
    		}
    		onDemandData.buffer = new byte[i];
    		System.arraycopy(gzipInputBuffer, 0, onDemandData.buffer, 0, i);
    		return onDemandData;
    	}
    Code:
    	private void processOnDemandQueue() {
    		do {
    			OnDemandData onDemandData;
    			do {
    line 4225				onDemandData = onDemandFetcher.getNextNode();
    				if (onDemandData == null)
    					return;
    				if (onDemandData.dataType == 0) {
    					Model.method460(onDemandData.buffer, onDemandData.ID);
    					needDrawTabArea = true;
    					if (backDialogID != -1)
    						inputTaken = true;
    				}
    				if (onDemandData.dataType == 1 && onDemandData.buffer != null) {
    					FrameReader.readAnimHeader(onDemandData.buffer,
    							onDemandData.ID);
    				}
    				if (onDemandData.dataType == 2 && onDemandData.ID == nextSong
    						&& onDemandData.buffer != null)
    					saveMidi(songChanging, onDemandData.buffer);
    				if (onDemandData.dataType == 3 && loadingStage == 1) {
    					try {
    						// writeFile(onDemandData.buffer, "./maps/" +
    						// onDemandData.ID + ".dat");
    					} catch (Exception e) {
    					}
    					for (int i = 0; i < aByteArrayArray1183.length; i++) {
    						if (floorMap[i] == onDemandData.ID) {
    							aByteArrayArray1183[i] = onDemandData.buffer;
    							if (onDemandData.buffer == null) {
    								floorMap[i] = -1;
    							}
    							break;
    						}
    						if (objectMap[i] != onDemandData.ID)
    							continue;
    						aByteArrayArray1247[i] = onDemandData.buffer;
    						if (onDemandData.buffer == null) {
    							objectMap[i] = -1;
    						}
    						break;
    					}
    
    				}
    			} while (onDemandData.dataType != 93
    					|| !onDemandFetcher.method564(onDemandData.ID));
    			ObjectManager.method173(new ByteVector(onDemandData.buffer),
    					onDemandFetcher);
    		} while (true);
    	}
    Reply With Quote  
     

  10. #7  
    Banned

    Join Date
    Jul 2008
    Posts
    3,532
    Thanks given
    188
    Thanks received
    696
    Rep Power
    0
    you have to gzip the model for it to work. hence the "error unzipping"
    Reply With Quote  
     

  11. #8  
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,167
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    thank you Badger .
    Gziped them replaced but still bugged




    my modelz gziped
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  12. #9  
    Banned

    Join Date
    Jul 2008
    Posts
    3,532
    Thanks given
    188
    Thanks received
    696
    Rep Power
    0
    Then its something youve done to affect the models in the inventory thats messing them up
    Reply With Quote  
     

  13. #10  
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,167
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    fixed
    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. Replies: 3
    Last Post: 12-21-2010, 03:02 AM
  2. [565] - ItemOnItem - Finishing the Gems - [565]
    By CrazyPanda in forum Snippets
    Replies: 5
    Last Post: 11-01-2009, 09:17 AM
  3. Replies: 1
    Last Post: 10-15-2009, 05:07 AM
  4. Crafting Gems
    By ViperSniper in forum Snippets
    Replies: 0
    Last Post: 07-03-2009, 02:49 PM
  5. 100% Gem Crafting (+shilo gems & 2Chisels)
    By Joery in forum Tutorials
    Replies: 7
    Last Post: 08-04-2007, 09:33 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
  •