Jump to content

Malivil

Members
  • Posts

    145
  • Joined

  • Last visited

Posts posted by Malivil

  1. Read the log

     

    2013-01-22 22:17:01 [sEVERE] [ForgeModLoader] There were errors during initial FML setup. Some files failed to download or were otherwise corrupted. You will need to manually obtain the following files from these download links and ensure your lib directory is clean.

    2013-01-22 22:17:01 [sEVERE] [ForgeModLoader] *** Download http://files.minecraftforge.net/fmllibs/argo-2.25.jar

    2013-01-22 22:17:01 [sEVERE] [ForgeModLoader] *** Download http://files.minecraftforge.net/fmllibs/guava-12.0.1.jar

    2013-01-22 22:17:01 [sEVERE] [ForgeModLoader] *** Download http://files.minecraftforge.net/fmllibs/asm-all-4.0.jar

    2013-01-22 22:17:01 [sEVERE] [ForgeModLoader] *** Download http://files.minecraftforge.net/fmllibs/bcprov-jdk15on-147.jar

  2. People say "Read the EAQ" for a reason. The Excessively Asked Questions (EAQ) tells you what to do in the most common instances of errors.

     

    For example, the first line in the EAQ reads

     

    java.lang.NoClassDefFoundException: net.minecraft.Launcher; Use a proper launcher. Mojang's/MultiMC/Magic Launcher are all known to work. Don't use sk89q's.

     

    If you look at your logs that you posted above, it says

     

    2012-12-13 22:03:45 [iNFO] [sTDERR] Exception in thread "Thread-11" java.lang.RuntimeException: cpw.mods.fml.relauncher.ReflectionHelper$UnableToFindClassException: java.lang.ClassNotFoundException: net.minecraft.Launcher

     

    See how the EAQ can be helpful now?

  3. Move

    GameRegistry.registerBlock(BlockBong);
            LanguageRegistry.addName(BlockBong, "Bong");
            GameRegistry.registerBlock(ZCrop);
            LanguageRegistry.addName(ZCrop, "Z");
    

     

    to after

     

    BlockBong=(new BlockBong(252, 1)).setBlockName("BlockBong").setHardness(2F).setResistance(5F);
    

     

    You're using BlockBong before it has a value, which you cannot do.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.