Advertisement
ISQ

Minecraft Wiki: Adding a Smelting Recipe

ISQ
Jul 6th, 2012
1,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public class mod_myMod extends BaseMod
  4. {
  5.     public void addRecipes()
  6.     {
  7.         ModLoader.addRecipe(new ItemStack(Item.diamond, 2), new Object[] { "DDD", "DDD", "DDD", 'D', Block.cobblestone});
  8.         ModLoader.addSmelting(Block.dirt.blockID, new ItemStack(Item.dyePowder, 32, 4));
  9.     }
  10.    
  11.     public void load()
  12.     {
  13.         this.addRecipes();
  14.     }
  15.    
  16.     public String getVersion()
  17.     {
  18.         return "Version 1.0";
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement