• 0

    posted a message on Minecraft ModLoader Item wont show up?
    Hello, my name is MinecraftDonut. I seem to have a problem.... I am making a mod (and I have made them before) but my item does not appear in the creative menu OR when I craft it. Here is my code:
    package net.minecraft.src;
    public class Mod_moswordsandmobs extends BaseMod{
    public static final Item emeraldsword = (new ItemSword(2000, EnumToolMaterial.REALEMERALD).setUnlocalizedName("/Textures/emeraldsword")).setCreativeTab(CreativeTabs.tabCombat);
    
    public void load() {
      ModLoader.addName(emeraldsword, "Emerald Sword");
      ModLoader.addShapelessRecipe(new ItemStack(emeraldsword, 1), new Object[]{
      "W", 'W', Block.dirt
      });
    }
    public String getVersion() {
      return "More Swords and Mobs Mod v1.0";
    }
    }


    If you can help me that would be awesome :)
    Posted in: Mods Discussion
  • 0

    posted a message on Minecraft ModLoader 1.5.1 Tutorial
    Still nothing
    Posted in: Tutorials
  • 0

    posted a message on Minecraft ModLoader 1.5.1 Tutorial
    Nonono- like the item isnt even there. When I craft it nothing happends. I hover over the slot- but it doesnt appear. I didnt have this problem in 1.4 D:
    Posted in: Tutorials
  • 0

    posted a message on Minecraft ModLoader 1.5.1 Tutorial
    package net.minecraft.src;

    public class Mod_moswordsandmobs extends BaseMod{


    public static final Item emeraldsword = (new ItemSword(1000, EnumToolMaterial.REALEMERALD).setUnlocalizedName("/Textures/emeraldsword")).setCreativeTab(CreativeTabs.tabCombat);

    public void load() {
    ModLoader.addName(emeraldsword, "Emerald Sword");
    ModLoader.addRecipe(new ItemStack(emeraldsword, 1), new Object[]{
    "WWW", "WWW", "WWW", 'W', Block.dirt,
    });
    }
    public String getVersion() {
    return "More Swords and Mobs Mod v1.0";
    }

    }
    Posted in: Tutorials
  • 0

    posted a message on Minecraft ModLoader 1.5.1 Tutorial
    For some reason my Item doesn't show at all- any help?
    Posted in: Tutorials
  • To post a comment, please .