Advertisement
riking

Untitled

Nov 24th, 2011
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public abstract class mod_Awesome extends BaseMod {
  4.     public static final Block getme;
  5.     public mod_Awesome() {
  6.        
  7.     }
  8.    
  9.     public void load() {
  10.        
  11.         getme = new BlockGetMe(140, 0).setBlockName("GM Block");
  12.        
  13.         ModLoader.AddName(getme, "GM BLock");
  14.        
  15.         ModLoader.AddRecipe(new ItemStack(getme,1),new Object[] { "   ", " X ", "   ",Character.valueOf('X'),  Block.dirt});
  16.     }
  17.    
  18.     public String Version()
  19.     {
  20.         return "for 1.0.0";
  21.     }
  22.  
  23. }
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement