Spoiler:
Latest News Article
Minecraft Video Trailer: "Relapse"
Looking for a sci-fi adventure set inside Minecraft? fngnation is, and can't wait to release this awesome space-opera thriller, called "Relapse"! While this is just a trailer of the upcoming movie, it's definitely worth a watch, so ...
Minecraft Parody: "Grieferman"
Most of you have seen Psy's recent new song, "Gentleman". It's not too often that I run across a parody that's better than the original, but StageFiveTV's parody, "Grieferman", definitely nailed it! Clever lyrics, ...
Minecraft Clips - Videos of the Week
This week, Jess shines a spotlight on some of the best Minecraft videos of the last week, with GassyMexican, SethBling, and more. Enjoy!...
I have no clue where to post this, but maybe you guys can help
Started by
Matakor
, Mar 29 2012 05:41 AM
8 replies to this topic
#1
Posted 29 March 2012 - 05:41 AM
I've loaded a new mod (currently only available at planet minecraft, but that's currently under maintenance so I can't post there), and it's giving me an error. I'm not going to even give my two pence, because I can't read this at all, so maybe you guys can understand it and help me to fix it. This is not my mod, btw. I just want it to work with the mods I have installed.
#2
Posted 29 March 2012 - 05:46 AM
You have too many items loaded. Each item/block has an individual indice for their texture. This is why Notch uses his terrain.png and his items.png, because that takes up one for hundreds of items, not hundreds of indices. That's the modder's issue. The only way this can be fixed is either
1. You somehow get a mod to increase sprite indices
2. The creator(s) make the mod(s) use Forge's one-file-texture system, just like Notch uses
3. You use less mods; some with not as many items
Hopefully the creators switch to Forge
Just to clarify, this is not your fault. You're not installing it wrong or anything, it's the system's fault.
1. You somehow get a mod to increase sprite indices
2. The creator(s) make the mod(s) use Forge's one-file-texture system, just like Notch uses
3. You use less mods; some with not as many items
Hopefully the creators switch to Forge
Just to clarify, this is not your fault. You're not installing it wrong or anything, it's the system's fault.
#3
Posted 29 March 2012 - 05:50 AM
Hmm...know of any mod that'll add to the indices? I know of a 4096ID mod, but I don't know if that's what I'd be looking for...it's not updated to 1.2.4 yet I don't think so it wouldn't matter.
#4
Posted 29 March 2012 - 05:51 AM
Matakor, on 29 March 2012 - 05:50 AM, said:
Hmm...know of any mod that'll add to the indices? I know of a 4096ID mod, but I don't know if that's what I'd be looking for...it's not updated to 1.2.4 yet I don't think so it wouldn't matter.
ID's and indices are different.
Minecraft will be upgrading to 4,096 block ID's soon, but I've seen a sprite indice increaser topic somewhere... I'll try to do some research
#5
Posted 29 March 2012 - 05:57 AM
Much appreciated. I've googled a little, but nothing solid has shown itself.
#6
Posted 29 March 2012 - 07:17 PM
Hi, this really has nothing to do with this post, but I don't know where to put it. After I install forge I get a black screen... I checked all of the noob mistakes and I did nothing wrong.... Can anyone help me? Or at least tell me where to post this?
#7
Posted 22 April 2012 - 02:39 AM
Hey Matakor, I was just checking out your profile and I saw this. I'd like to provide some simple 2 minute help in reading crash reports. It's the most basic part and will give you a general idea of what went wrong.
java.lang.Exception: No more empty terrain sprite indices left!
at ModLoader.getUniqueTerrainSpriteIndex(ModLoader.java:738)
at ModLoader.getUniqueSpriteIndex(ModLoader.java:721)
at ModLoader.addOverride(ModLoader.java:357)
at mod_UltraCompressing.load(mod_UltraCompressing.java:27)
at ModLoader.init(ModLoader.java:891)
at ModLoader.addAllRenderers(ModLoader.java:189)
at ahu.<init>(ahu.java:79)
at ahu.<clinit>(ahu.java:9)
at net.minecraft.client.Minecraft.a(Minecraft.java:395)
at net.minecraft.client.Minecraft.run(Minecraft.java:732)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 78598f21 ----------
Where it starts to say all the "at <whatever>" a bunch of times, thats the most important place. The other stuff is mostly junk. The importance is the top few lines of this section, especially the very top line. The very top line is the name of the error, in this case just a generic 'Exception', and then sometimes a description of the error, in this case "No more empty terrain sprite indices left!" Some more of these errors could be something like an ArrayIndexOutOfBoundsException, generally referring to an invalid block or item ID. The rest of the lines in this section of the crash report are where the error occured. Here it ocurred when ModLoader tried to 'getUniqueTerrainSpriteIndex', so this gives you an idea of what mod actually caused the problem. In this case it actually is ModLoader, because of its stupid way of inserting new textures.
I hope I helped you. With this knowledge you should be able to figure out what the problem is and what mod caused the problem whenever your Minecraft crashes.
Quote
java.lang.Exception: No more empty terrain sprite indices left!
at ModLoader.getUniqueTerrainSpriteIndex(ModLoader.java:738)
at ModLoader.getUniqueSpriteIndex(ModLoader.java:721)
at ModLoader.addOverride(ModLoader.java:357)
at mod_UltraCompressing.load(mod_UltraCompressing.java:27)
at ModLoader.init(ModLoader.java:891)
at ModLoader.addAllRenderers(ModLoader.java:189)
at ahu.<init>(ahu.java:79)
at ahu.<clinit>(ahu.java:9)
at net.minecraft.client.Minecraft.a(Minecraft.java:395)
at net.minecraft.client.Minecraft.run(Minecraft.java:732)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 78598f21 ----------
Where it starts to say all the "at <whatever>" a bunch of times, thats the most important place. The other stuff is mostly junk. The importance is the top few lines of this section, especially the very top line. The very top line is the name of the error, in this case just a generic 'Exception', and then sometimes a description of the error, in this case "No more empty terrain sprite indices left!" Some more of these errors could be something like an ArrayIndexOutOfBoundsException, generally referring to an invalid block or item ID. The rest of the lines in this section of the crash report are where the error occured. Here it ocurred when ModLoader tried to 'getUniqueTerrainSpriteIndex', so this gives you an idea of what mod actually caused the problem. In this case it actually is ModLoader, because of its stupid way of inserting new textures.
I hope I helped you. With this knowledge you should be able to figure out what the problem is and what mod caused the problem whenever your Minecraft crashes.
#8
Posted 22 April 2012 - 02:55 AM
I know you said you don't know where to post this, but why here? It very clearly states that this forum is for 'Help with Java code'.
I've been working on a Warcraft mod an incredibly long time. Just you wait, people.
#9
Posted 22 April 2012 - 03:16 AM
Batemaster25, on 29 March 2012 - 07:17 PM, said:
Hi, this really has nothing to do with this post, but I don't know where to put it. After I install forge I get a black screen... I checked all of the noob mistakes and I did nothing wrong.... Can anyone help me? Or at least tell me where to post this?
Then you should post it in the Forge thread, where the modders of forge are answering questions and fixes errors with THEIR mod, this is the forum for programming and creating mods
Anyways check your inbox/PM










