Advertisement
Guest User

Minecraft Wiki: Adding a Complex Recipe

a guest
Jun 2nd, 2012
1,033
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 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.dirt});
  8.         ModLoader.addRecipe(new ItemStack(Block.whiteStone, 64), new Object[] { "W $", " S ", "s E", 'W', new ItemStack(Block.wood, 1, 2), '$', Item.stick, 'S', Block.sand, 's', Block.sapling, 'E', Item.enderPearl });
  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