Epauchus Posted May 15, 2015 Share Posted May 15, 2015 I'm trying to create a creative tab. Also, I'd like to disclaim that I don't have a great amount of experience with Java, let alone modding with FML. And that this is my first post, so please punish me gently. Problem: Unfortunately, I've come across an argument I am not familiar with. This is located within the main class. The only errors state that the arguments by TutorialTab is incorrect. public static final TutorialTab tabTutorial = new TutorialTab(0, "tabTutorial"); Inside the argument, it requires me to put in an integer. ("0") When I do, run Minecraft, and attempt to open up my creative inventory, the client just crashes. I have already set up a CreativeTabs class: package Epauchus.test; import Epauchus.test.init.TutorialItems; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; public class TutorialTab extends CreativeTabs { public TutorialTab(int index, String label) { super(index, label); this.setBackgroundImageName("tab_tutorial.png"); } @Override public Item getTabIconItem() { return TutorialItems.test_item; } } If you see anything wrong and is capable of helping me fix it, please notify me. Your feedback will be greatly appreciated. c: Quote Link to comment Share on other sites More sharing options...
larsgerrits Posted May 15, 2015 Share Posted May 15, 2015 Use CreativeTabs.getNextID() instead of 0 . Quote Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/ Link to comment Share on other sites More sharing options...
jabelar Posted May 15, 2015 Share Posted May 15, 2015 To further explain, each creative tab is supposed to have a unique id number (just a sequential int). That is what the first parameter means. If you use an id that is already used that will create trouble, so you need to find the next available one, which is what lars' recommendation does. You'll find a similar thing in networking where each packet type needs to be registered with a unique id. "Underneath the hood" of Minecraft the blocks, items and entities have unique ID numbers as well, but in recent versions of Forge that has been mostly hidden from any need to interact directly with them. Quote Check out my tutorials here: http://jabelarminecraft.blogspot.com/ Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.