• 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    Quote from Scoutdrago3

    Code please? I cant really tell whats wrong just by looking at your error :/

    Heres the main class file:
    package kb3.bobjoromods.main;
    
    import kb3.bobjoromods.block.BlockRegistry;
    import kb3.bobjoromods.crafting.Crafting;
    import kb3.bobjoromods.item.ItemRegistry;
    import cpw.mods.fml.common.Mod;
    import cpw.mods.fml.common.Mod.Init;
    import cpw.mods.fml.common.event.FMLInitializationEvent;
    import cpw.mods.fml.common.network.NetworkMod;
    
    
    
    @Mod(modid="kb3jumbled",name="Jumbled Mess!",version="v1.0.0")
    @NetworkMod(clientSideRequired=true,serverSideRequired=false)
    
    public class Main {
    @Init
    public void load(FMLInitializationEvent e) {
    
    ItemRegistry.registerItems();
    BlockRegistry.registerBlocks();
    Crafting.registerCrafting();
    
    }
    
    }
    and heres the Blocks file:
    package kb3.bobjoromods.block;
    
    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    
    public class Blocks {
    
    public static Block deployHouse = new DeployHouse(8050);
    
    }
    BlockRegistry:
    package kb3.bobjoromods.block;
    
    import cpw.mods.fml.common.registry.GameRegistry;
    
    public class BlockRegistry {
    
    public static void registerBlocks() {
    
    GameRegistry.registerBlock(Blocks.deployHouse, "deployHouse");
    
    }
    
    }
    and finally the Deploy House block itself:
    package kb3.bobjoromods.block;
    
    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    
    public class DeployHouse extends Block {
    
    public DeployHouse(int par1) {
    super(par1, Material.rock);
    }
    
    }

    and once again the error report for those who didnt read it
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader]
    mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    kb3jumbled{v1.0.0} [Jumbled Mess!] (bin) Unloaded->Constructed->Pre-initialized->Errored
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] The following problems were captured during this phase
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] Caught exception from kb3jumbled
    java.lang.ExceptionInInitializerError
    at kb3.bobjoromods.block.BlockRegistry.registerBlocks(BlockRegistry.java:9)
    at kb3.bobjoromods.main.Main.load(Main.java:31)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:448)
    at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
    at net.minecraft.client.Minecraft.run(Minecraft.java:733)
    at java.lang.Thread.run(Thread.java:680)
    Caused by: java.lang.ArrayIndexOutOfBoundsException: 8050
    at net.minecraft.block.Block.<init>(Block.java:338)
    at kb3.bobjoromods.block.DeployHouse.<init>(DeployHouse.java:9)
    at kb3.bobjoromods.block.Blocks.<clinit>(Blocks.java:8)
    ... 34 more
    2013-08-03 17:15:06 [INFO] [STDERR] cpw.mods.fml.common.LoaderException: java.lang.ExceptionInInitializerError
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:147)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:692)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:448)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:733)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.Thread.run(Thread.java:680)
    2013-08-03 17:15:06 [INFO] [STDERR] Caused by: java.lang.ExceptionInInitializerError
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.BlockRegistry.registerBlocks(BlockRegistry.java:9)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.main.Main.load(Main.java:31)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    2013-08-03 17:15:06 [INFO] [STDERR] ... 5 more
    2013-08-03 17:15:06 [INFO] [STDERR] Caused by: java.lang.ArrayIndexOutOfBoundsException: 8050
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.block.Block.<init>(Block.java:338)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.DeployHouse.<init>(DeployHouse.java:9)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.Blocks.<clinit>(Blocks.java:8)
    2013-08-03 17:15:06 [INFO] [STDERR] ... 34 more
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on TechGuy's Modding Tutorials
    every single time i try to make a block i get this error message:


    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader]
    mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    kb3jumbled{v1.0.0} [Jumbled Mess!] (bin) Unloaded->Constructed->Pre-initialized->Errored
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] The following problems were captured during this phase
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] Caught exception from kb3jumbled
    java.lang.ExceptionInInitializerError
    at kb3.bobjoromods.block.BlockRegistry.registerBlocks(BlockRegistry.java:9)
    at kb3.bobjoromods.main.Main.load(Main.java:31)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:448)
    at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
    at net.minecraft.client.Minecraft.run(Minecraft.java:733)
    at java.lang.Thread.run(Thread.java:680)
    Caused by: java.lang.ArrayIndexOutOfBoundsException: 8050
    at net.minecraft.block.Block.<init>(Block.java:338)
    at kb3.bobjoromods.block.DeployHouse.<init>(DeployHouse.java:9)
    at kb3.bobjoromods.block.Blocks.<clinit>(Blocks.java:8)
    ... 34 more
    2013-08-03 17:15:06 [INFO] [STDERR] cpw.mods.fml.common.LoaderException: java.lang.ExceptionInInitializerError
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:147)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:692)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:448)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:733)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.Thread.run(Thread.java:680)
    2013-08-03 17:15:06 [INFO] [STDERR] Caused by: java.lang.ExceptionInInitializerError
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.BlockRegistry.registerBlocks(BlockRegistry.java:9)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.main.Main.load(Main.java:31)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    2013-08-03 17:15:06 [INFO] [STDERR] ... 5 more
    2013-08-03 17:15:06 [INFO] [STDERR] Caused by: java.lang.ArrayIndexOutOfBoundsException: 8050
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.block.Block.<init>(Block.java:338)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.DeployHouse.<init>(DeployHouse.java:9)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.Blocks.<clinit>(Blocks.java:8)
    2013-08-03 17:15:06 [INFO] [STDERR] ... 34 more

    Im running on a mac. Please help.
    I can include any attachments necessary
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    every single time i try to make a block i get this error message:


    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader]
    mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    kb3jumbled{v1.0.0} [Jumbled Mess!] (bin) Unloaded->Constructed->Pre-initialized->Errored
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] The following problems were captured during this phase
    2013-08-03 17:14:56 [SEVERE] [ForgeModLoader] Caught exception from kb3jumbled
    java.lang.ExceptionInInitializerError
    at kb3.bobjoromods.block.BlockRegistry.registerBlocks(BlockRegistry.java:9)
    at kb3.bobjoromods.main.Main.load(Main.java:31)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:448)
    at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
    at net.minecraft.client.Minecraft.run(Minecraft.java:733)
    at java.lang.Thread.run(Thread.java:680)
    Caused by: java.lang.ArrayIndexOutOfBoundsException: 8050
    at net.minecraft.block.Block.<init>(Block.java:338)
    at kb3.bobjoromods.block.DeployHouse.<init>(DeployHouse.java:9)
    at kb3.bobjoromods.block.Blocks.<clinit>(Blocks.java:8)
    ... 34 more
    2013-08-03 17:15:06 [INFO] [STDERR] cpw.mods.fml.common.LoaderException: java.lang.ExceptionInInitializerError
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:147)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:692)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:448)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:733)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.Thread.run(Thread.java:680)
    2013-08-03 17:15:06 [INFO] [STDERR] Caused by: java.lang.ExceptionInInitializerError
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.BlockRegistry.registerBlocks(BlockRegistry.java:9)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.main.Main.load(Main.java:31)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2013-08-03 17:15:06 [INFO] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2013-08-03 17:15:06 [INFO] [STDERR] at java.lang.reflect.Method.invoke(Method.java:597)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    2013-08-03 17:15:06 [INFO] [STDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
    2013-08-03 17:15:06 [INFO] [STDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    2013-08-03 17:15:06 [INFO] [STDERR] ... 5 more
    2013-08-03 17:15:06 [INFO] [STDERR] Caused by: java.lang.ArrayIndexOutOfBoundsException: 8050
    2013-08-03 17:15:06 [INFO] [STDERR] at net.minecraft.block.Block.<init>(Block.java:338)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.DeployHouse.<init>(DeployHouse.java:9)
    2013-08-03 17:15:06 [INFO] [STDERR] at kb3.bobjoromods.block.Blocks.<clinit>(Blocks.java:8)
    2013-08-03 17:15:06 [INFO] [STDERR] ... 34 more

    Im running on a mac. Please help.
    I can include any attachments necessary
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    Quote from bobjoro

    Quote from bobjoro »
    ok peepls so i have a problem - i cant run my mod in mc to test it. I can get into minecraft but once i try to join a world it will just say loading world Converting world and then itll just keep saying that and never actually load. My mod has no errors. Maybe the run config is not set up properly but i cant find any errors w/ the run config set up.



    :blink: HELP!!! :steve_tearful:


    did no one read this?!? :Notch: :SSSS: :steve_sillyface:
    hello peepls whats the run config i need to use
    i can even post my mod if completely necessary
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    Quote from bobjoro

    ok peepls so i have a problem - i cant run my mod in mc to test it. I can get into minecraft but once i try to join a world it will just say loading world Converting world and then itll just keep saying that and never actually load. My mod has no errors. Maybe the run config is not set up properly but i cant find any errors w/ the run config set up.


    :blink: HELP!!! :steve_tearful:
    did no one read this?!? :Notch: :SSSS: :steve_sillyface:
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    ok peepls so i have a problem - i cant run my mod in mc to test it. I can get into minecraft but once i try to join a world it will just say loading world Converting world and then itll just keep saying that and never actually load. My mod has no errors. Maybe the run config is not set up properly but i cant find any errors w/ the run config set up.


    :blink: HELP!!! :steve_tearful:
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    Quote from xxAspectxx

    can someone help me in crashing








    Minecraft has crashed!
    ----------------------

    Minecraft has stopped running because it encountered a problem; Failed to start game

    A full error report has been saved to C:\Users\mom\Documents\Michael's Stuff\modding stuff\modding minecraft\Forge Modding\modding\jars\.\crash-reports\crash-2013-06-22_16.35.34-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash :(



    --- BEGIN ERROR REPORT 65c83f79 --------
    Full report at:
    C:\Users\mom\Documents\Michael's Stuff\modding stuff\modding minecraft\Forge Modding\modding\jars\.\crash-reports\crash-2013-06-22_16.35.34-client.txt
    Please show that file to Mojang, NOT just this screen!

    Generated 6/22/13 4:35 PM

    -- System Details --
    Details:
    Minecraft Version: 1.5.2
    Operating System: Windows 7 (amd64) version 6.1
    Java Version: 1.7.0_25, Oracle Corporation
    Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 969700072 bytes (924 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Suspicious classes: FML and Forge are installed
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v7.51 FML v5.2.23.737 Minecraft Forge 7.8.1.737 4 mods loaded, 4 mods active
    mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    TheDarkAges{v1.0} [TheDarkAges] (bin) Unloaded->Constructed->Pre-initialized->Errored
    LWJGL: 2.4.2
    OpenGL: Intel® HD Graphics Family GL version 3.0.0 - Build 8.15.10.2291, Intel
    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Texture Pack: Default
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: ~~ERROR~~ NullPointerException: null

    java.lang.StringIndexOutOfBoundsException: String index out of range: 10
    at java.lang.String.charAt(Unknown Source)
    at net.minecraft.item.crafting.CraftingManager.addRecipe(CraftingManager.java:209)
    at cpw.mods.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:244)
    at cpw.mods.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:239)
    at XxAspectxX.TheDarkAges.TheDarkAges.load(TheDarkAges.java:465)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:448)
    at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44)
    at net.minecraft.client.Minecraft.run(Minecraft.java:733)
    at java.lang.Thread.run(Unknown Source)
    --- END ERROR REPORT d1d56fb6 ----------
    u obviously tried to run minecraft w/ an error in your mod "TheDarkAges". Just go back into eclipse and find the x in the side bar and fix it. then run minecraft
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    Quote from TXX59

    Did you even LOOK at the post I made???
    yes but i did basically that exact thing and it wouldn't except it (i only made one tool material though)
    Quote from Jtom2015 »

    Do you have this import?
    import net.minecraft.item.EnumToolMaterial;
    import net.minecraftforge.common.EnumHelper;
    yes
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    thats basically what i already have, but the enumhelper thing won't register it. Ive tried static and public static and neither worked

    BTW this is the error that i keep getting: Illegal modifier for parameter EnumToolMaterialTexonite; only final permitted
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    Quote from bobjoro

    it says for
    static EnumToolMaterial EnumToolMaterialTexonite = EnumHelper.addToolMaterial("TexoniteTools", 2, 856, 15.0F, 5, 17);

    Illegal modifier for parameter EnumToolMaterialTexonite; only final permitted



    Someone please help me

    can someone fix this for me? I can post the whole thing if that helps
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    it says for
    static EnumToolMaterial EnumToolMaterialTexonite = EnumHelper.addToolMaterial("TexoniteTools", 2, 856, 15.0F, 5, 17);

    Illegal modifier for parameter EnumToolMaterialTexonite; only final permitted



    Someone please help me
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on [1.5.2 / 1.5.1 / 1.4.7 / 1.3.2] Creating Mods - Modloader/Forge ~SCMowns [Src & Video]
    ok so for some reason it wont make the tool material.
    Posted in: Mapping and Modding Tutorials
  • To post a comment, please .