Jump to content

Recommended Posts

Posted

Hello, I'm relatively new to modding but not java, and i was trying to add new items and blocks. Everything is working so far, except the creativetab part. I can get my items with /give, but they are just not showing in my creative tab. I am creating the creativetab like so:

modTab = new ModTab("testmod", wrench);

, and my ModTabs constructor is:

public ModTab(String label, Item i) {
	super(label);
	tabIcon = i;
}

.

I register my items with a method called 'register', and inside that it registers them to gameregistry and sets the creativetab:

private void register(Item item){
	GameRegistry.registerItem(item, item.getUnlocalizedName());
	item.setCreativeTab(modTab);
}

. I also have one for blocks, the same but with registerBlock. Any help would be appreciated!

 

P.S. Sorry for formatting issues, new to forum

Posted

Also don't use register item, change it to:

public static void registerItem(Item item) {

String name = item.getUnlocalizedName().substring(5);

if (item.getRegistryName() == null && Strings.isNullOrEmpty(name))

throw new IllegalArgumentException("Attempted to register a item with no name: " + item);

if (item.getRegistryName() != null && !item.getRegistryName().toString().equals(name))

throw new IllegalArgumentException("Attempted to register a item with conflicting names. Old: "

+ item.getRegistryName() + " New: " + name);

GameRegistry.register(item.getRegistryName() == null ? item.setRegistryName(name) : item);

item.setCreativetab(modTab);

}

Posted

override

Item.getSubItems(Item, CreativeTabs, List<ItemStack>)

if you don't already, you return the list after adding all the sub-items of the item you are making so it can be shown in the creative tab

Posted

I got this fixed, thanks for all the help! Turns out it was because i was setting the tabs in preInit(or not?), but once i moved the tab setting into Init it worked fine. Thanks for the help again!

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Through Betafort Recovery, Bitcoin scam victims can retrieve their money. I recommend Betafort Recovery to anyone who has fallen victim to a scam and has been looking for methods and techniques to recover their lost cryptocurrency or wallets. Betafort Recovery is a reliable cryptocurrency recovery firm that assists victims in recovering their stolen cryptocurrency and offers secure solutions to protect your wallets from online scammers. I must admit that I was deeply melancholy and had given up on life until these experts could restore my $23,400 to my wallet. If you've lost your cryptocurrency and you are helpless about it, contact Betafort Recovery to get your money back. One key aspect that makes Betafort Recovery stand out is its focus on providing secure solutions to protect wallets from online scammers. It's not just about recovering lost funds; it's also about preventing future incidents and ensuring that clients' digital assets are safeguarded against potential threats. This proactive approach demonstrates their commitment to the long-term financial security of their clients. Furthermore, for individuals who have lost their cryptocurrency and are feeling helpless, reaching out to Betafort Recovery could be a turning point in their situation. The reassurance that they are legitimate for seeking help and recovering lost funds can provide much-needed relief and a sense of empowerment. Betafort Recovery as a reliable cryptocurrency recovery firm is certainly well-founded. Their ability to assist scam victims in recovering stolen cryptocurrency, their focus on providing secure solutions, and their commitment to supporting clients through challenging situations make them a valuable resource for individuals navigating the complex world of digital currencies. If you or someone you know has fallen victim to a cryptocurrency scam, contacting Betafort Recovery could be the first step towards reclaiming lost funds and regaining peace of mind.  
    • Idk how i didn't notice that, but I deleted it and fixed some other issues and now I get this https://mclo.gs/YsWacqq
    • I found Bedrock_Miner's old site and I was interested in the Furnace Minecart Inventory mod. But all the links to the mod files are dead, there were apparently no uploads to other sites either, so the only hope is that the mods were saved on someone's cloud or disk. If someone remembers that perhaps downloaded them in the first half of the 10's, I will be glad if someone to share them. https://web.archive.org/web/20151227195157/http://bedrockminer.jimdo.com/mods/furnace-minecart-inventory#expand
    • Remove rubidium - you are already using embeddium which is a fork of it
    • Delete the jei-server.toml file in your config folder If there is no such file, check the worldsave, serverconfig folder
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.