Jump to content

Deathwoefke

Members
  • Posts

    1
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Deathwoefke's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I'm trying to add a recipe with the item "Iron Ingot". I can't seem to find the correct term for this even after some research on Google. package com.thebelgianmodder.www.common; import net.minecraft.block.Block; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import com.thebelgianmodder.www.common.block.BlockHandler; import com.thebelgianmodder.www.common.item.ItemHandler; import cpw.mods.fml.common.registry.GameRegistry; public class RecipeHandler { public static void registerRecipe() { GameRegistry.addRecipe(new ItemStack(BlockHandler.NocturnalBlock), "xxx", "xxx", "xxx", 'x', ItemHandler.NocturnalIngot); GameRegistry.addRecipe(new ItemStack(ItemHandler.NocturnalPickaxe), "xxx", " y ", " y ", 'x', ItemHandler.NocturnalIngot, 'y', Item.ingotIron); } }
×
×
  • Create New...

Important Information

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