Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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");
}

}

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...

  • 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

  • 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.

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.

 

Capture.png

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.