Posted June 29, 201312 yr Ok, so I've got this item "GenericItem" with a Readable name and everything, but I can NOT give it a texture! I've looked at several forums, and what the wiki tells me is not correct, and ends up crashing. I've tried tons of locations, none with success. It always ends up as blank item that says "Missing Texture" Here's my GenericItem.java package tutorial.generic; import cpw.mods.fml.common.registry.LanguageRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; public class GenericItem extends Item { private Object iconIndex; public GenericItem(int id) { super(id); // Constructor Configuration this.setMaxStackSize(64); this.setCreativeTab(CreativeTabs.tabMisc); this.setUnlocalizedName("genericItem"); LanguageRegistry.addName(this, "Generic Item"); } @SideOnly(Side.CLIENT) public void updateIcons(IconRegister iconRegister)//updateIcons { iconIndex = iconRegister.registerIcon("Generic:genericItem"); } }
June 29, 201312 yr What folder structure is it you are doing now? Do you have the Png files inside the project explorer in eclipse? If you guys dont get it.. then well ya.. try harder...
June 29, 201312 yr Author 1)I don't understand completely what you mean by this. My project is in C:\Users\N80sire\Desktop\Minecraft\Modding\forge\mcp\eclipse and my textures are in C:\Users\N80sire\Desktop\Minecraft\Modding\forge\mcp\jars\mods\Generic\textures\items 2) I don't believe so, If I do I cannot find them
June 29, 201312 yr Author Nevermind. I figured it out. The wiki wasn't very clear AT ALL. Turns out when you put the textures in forge\mcp\jars\mods\ you make a zip archive there containing your textures folder.
June 29, 201312 yr Actually the 19th time I've done this. There's a reason I put this on the wiki. Because it's not that freaking difficult, although obtuse. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.