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.

n80sire

Members
  • Joined

  • Last visited

  1. 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.
  2. 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
  3. 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"); } }
  4. Thank you for the help. And sorry to be a bother. My friend (who is a modder himself) told me to just learn java as I go along.
  5. Thanks, but where would I put public final static Block genericDirt = new GenericBlock(id, "you texture path", Material.ground)
  6. Hey guys, I'm a brand new modder and I am having trouble with this. Minecraft will crash after I finish up the genericBlock. (I am using eclipse) Here's my code, the parts highlighted in red are what eclipse show as wrong. Generic.java GenericBlock.java Block.java

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.