So i was watching a tutorial online and typing as i wathed and in the end ive got 2 errors whitle the guy on the vid got 0 errors.Ive checked every letter 10 times and still nothing...
package net.minecraft.src;
import java.util.Random;
public class mod_Box extends BaseMod
{
public mod_Box()
{
ModLoader.RegisterBlock(box);
ModLoader.AddName(box, "Box XD");
ModLoader.AddRecipe(new ItemStack(box, 4), new Object[] {
"XXX", "X X", "XX", Character.valueOf('X'), Item.paper
});
}
public static Block box;
static
{
box = new BlockBox(200, ModLoader.addOverride("/terrain.png", "/WOLF/Blocks/box.png")).setHardness(0.3F).setResistance(5.0F).setBlockName("box");
}
public String Version()
{
return "Box 1.0";
}
}
THe errors wore about basemod.load and basemod.getVersion Please help!
THe errors wore about basemod.load and basemod.getVersion Please help!
Thanks :biggrin.gif: