Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.minecraft.src;
- public abstract class mod_Awesome extends BaseMod {
- public static final Block getme;
- public mod_Awesome() {
- }
- public void load() {
- getme = new BlockGetMe(140, 0).setBlockName("GM Block");
- ModLoader.AddName(getme, "GM BLock");
- ModLoader.AddRecipe(new ItemStack(getme,1),new Object[] { " ", " X ", " ",Character.valueOf('X'), Block.dirt});
- }
- public String Version()
- {
- return "for 1.0.0";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement