• 0

    posted a message on Minecraft Modding Made Easy (40+ Videos!)
    [ spoiler] [ code] == MCP 5.6 (data: 5.6, client: 1.1, server: 1.1) ==
    [19:39:23] java.lang.NoClassDefFoundError: Start
    [19:39:23] Caused by: java.lang.ClassNotFoundException: Start
    [19:39:23] at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    [19:39:23] at java.security.AccessController.doPrivileged(Native Method)
    [19:39:23] at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    [19:39:23] at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    [19:39:23] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    [19:39:23] at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    [19:39:23] Could not find the main class: Start. Program will exit.
    [19:39:23] Exception in thread "main"
    [19:39:23]
    [19:39:23]
    [19:39:23]
    [19:39:23]
    [19:39:23]
    [19:39:23]
    Press any key to continue . . .[ /code] [ /spoiler]
    And The Codes
    [spoiler]package net.minecraft.src;

    public class Infinite_Hand_Cannon extends Item
    {

    public static final ItemStack newCrossbow = new ItemStack(mod_infinite.infiniteCrossbowCocked);324

    public ItemInfiniteCrossbow(int x)
    {
    super(x);370
    maxStackSize = 1;
    }

    public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer)
    {
    return newCrossbow;
    }
    [ spoiler]package net.minecraft.src;
    import java.util.Random;

    public class Infinite extends Block
    {

    public int rare;

    protected InfiniteOre(int x, int y)
    {
    super(x,y,Material.rock);
    }

    public int idDropped(int x, Random rand, int y)
    {
    rare = rand.nextInt(20);

    }

    public int quantityDropped(Random rand)
    {
    return 1; }


    }
    [ /spoiler] [ spoiler] mod_Infinite

    package net.minecraft.src;

    public class mod_Infinite extends BaseMod
    {
    public static Block Infinite = new Infinite(190, 0).setHardness(1.0F).setResistance(6000.0F).setLightValue(1.0F).setBlockName("Infin-Ite Ore");

    public String getVersion()
    {
    return "0.0.1";
    }

    public mod_Infinite()
    {
    }

    public void load()
    {
    ModLoader.RegisterBlock(Infinite);
    Namehere.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/Blocks/Infinite_Ore.png"); ModLoader.AddName(Infinite, "Infinite");
    ModLoader.AddRecipe(new ItemStack(Infinite, 64), new Object[] {
    "###", "###", "###", Character.valueOf('#'), Item.redstone
    });
    }
    } [ /spoiler] [ /spoiler]
    And those are the errors and blocks.
    Posted in: Tutorials
  • 0

    posted a message on Kingdom Hearts: MC ~Looking for Modders/Texturers/Modelers/and more~
    [Required]Name:Xxriku910xX (Matt)
    [Required]Age:16
    [Required]Hours: Not many, a few offline(logged out)
    [Optional/Recommended]Skype:
    [Required]Time Zone:mountain time (canada)
    Posted in: WIP Mods
  • 0

    posted a message on Kingdom Hearts: MC ~Looking for Modders/Texturers/Modelers/and more~
    Just a heads up, I have a comp virus, and will take a few days to fix it. I wont post or go online for about a week. I will still check the forum whenever I have a chance. Ps: I'm posting this on my iPhone in a rush, so please excuse my speech errors. Anything needed in relation to KH please reply or pm me.
    Matt MC :Diamond: :Creeper:
    Posted in: WIP Mods
  • 0

    posted a message on Kingdom Hearts: MC ~Looking for Modders/Texturers/Modelers/and more~
    if i have excess time, and an idea of the items, mobs and blocks, i can try to build a custom map for the kingdom hearts, 1, afterwards i will do #2
    Posted in: WIP Mods
  • 0

    posted a message on Kingdom Hearts: MC ~Looking for Modders/Texturers/Modelers/and more~
    Name:Matt
    Age:16
    Hours: not many, but if i get in, will be a few hours. i spent hours on mods not logged on
    Skype:
    Time Zone: mountain time
    Kingdom Hearts Lore LV: probably 10. it was my first game, played it for many years looking through each nook and cranny, then kh2 where i spent a long time too. along with kingdom hearts re:chain of memories and kingdom hearts 368/2 days.
    Posted in: WIP Mods
  • To post a comment, please .