Posted November 4, 201213 yr Hello, I decided to make a simple mod with a few useless items that did nothing. I was trying to install the mod alongside my other mods i have happened to have. No matter what i tried, my mod just did not work! :'( I would like some help, and maybe for you guys to fix this if this is an error on your end. I'm not too sure if it has anything to do with my mod, and how it is written. I have done a little research on how to fix this, and I cannot find the fix. (By the way, I was writing this code in eclipse, and it all worked fine and the items worked and stuff..) (p.s. Back in 1.2.5-ish this would all load up with the MC-Forge) Here is the code for my mod. (used ModLoader because MC-Forge wasn't working) package net.minecraft.src; public class mod_Currency extends BaseMod { public void load() { //items Item coinPenny = new ItemCoin(3000).setItemName("pennyCoin").setCreativeTab(CreativeTabs.tabMisc); Item coinNickel = new ItemCoin(3001).setItemName("nickelCoin").setCreativeTab(CreativeTabs.tabMisc); Item coinDime = new ItemCoin(3002).setItemName("dimeCoin").setCreativeTab(CreativeTabs.tabMisc); Item coinQuarter = new ItemCoin(3003).setItemName("quarterCoin").setCreativeTab(CreativeTabs.tabMisc); Item dollar1 = new ItemCoin(3004).setItemName("dollar1").setCreativeTab(CreativeTabs.tabMisc); Item dollar5 = new ItemCoin(3005).setItemName("dollar5").setCreativeTab(CreativeTabs.tabMisc); Item dollar10 = new ItemCoin(3006).setItemName("dollar10").setCreativeTab(CreativeTabs.tabMisc); Item dollar20 = new ItemCoin(3007).setItemName("dollar20").setCreativeTab(CreativeTabs.tabMisc); Item dollar100 = new ItemCoin(3008).setItemName("dollar100").setCreativeTab(CreativeTabs.tabMisc); //pictures coinPenny.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/coinPenny.png"); coinNickel.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/coinNickle.png"); coinDime.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/coinDime.png"); coinQuarter.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/coinQuarter.png"); dollar1.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/dollar1.png"); dollar5.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/dollar5.png"); dollar10.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/dollar10.png"); dollar20.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/dollar20.png"); dollar100.iconIndex = ModLoader.addOverride("/gui/items.png", "/PICTURES/dollar100.png"); //names ModLoader.addName(coinPenny, "1¢"); ModLoader.addName(coinNickel, "5¢"); ModLoader.addName(coinDime, "10¢"); ModLoader.addName(coinQuarter, "25¢"); ModLoader.addName(dollar1, "$1"); ModLoader.addName(dollar5, "$5"); ModLoader.addName(dollar10, "$10"); ModLoader.addName(dollar20, "$20"); ModLoader.addName(dollar100, "$100"); //crafting recipes ModLoader.addRecipe(new ItemStack(coinPenny, 5), new Object[] { "# ", " "," ",Character.valueOf('#'), coinNickel }); ModLoader.addRecipe(new ItemStack(coinNickel, 2), new Object[] { "# ", " "," ",Character.valueOf('#'), coinDime }); ModLoader.addRecipe(new ItemStack(coinNickel, 5), new Object[] { "# "," "," ", Character.valueOf('#'), coinQuarter }); ModLoader.addRecipe(new ItemStack(coinQuarter, 4), new Object[] { "# "," "," ", Character.valueOf('#'), dollar1 }); ModLoader.addRecipe(new ItemStack(dollar1, 5), new Object[] { "# "," "," ", Character.valueOf('#'), dollar5 }); ModLoader.addRecipe(new ItemStack(dollar5, 2), new Object[] { "# ", " "," ",Character.valueOf('#'), dollar10 }); ModLoader.addRecipe(new ItemStack(dollar10, 2), new Object[] { "# ", " "," ",Character.valueOf('#'), dollar20 }); ModLoader.addRecipe(new ItemStack(dollar20, 5), new Object[] { "# ", " "," ",Character.valueOf('#'), dollar100 }); ModLoader.addRecipe(new ItemStack(dollar100, 1), new Object[] { "###", "## ", " ",Character.valueOf('#'), dollar20 }); ModLoader.addRecipe(new ItemStack(dollar20, 1), new Object[] { "## ", " "," ",Character.valueOf('#'), dollar10 }); ModLoader.addRecipe(new ItemStack(dollar10, 1), new Object[] { "## ", " "," ",Character.valueOf('#'), dollar5 }); ModLoader.addRecipe(new ItemStack(dollar5, 1), new Object[] { "###", "## ", " ",Character.valueOf('#'), dollar1 }); ModLoader.addRecipe(new ItemStack(dollar1, 1), new Object[] { "## ", "## ", " ",Character.valueOf('#'), coinQuarter }); ModLoader.addRecipe(new ItemStack(coinQuarter, 1), new Object[] { "###", "## ", " ",Character.valueOf('#'), coinNickel }); ModLoader.addRecipe(new ItemStack(coinDime, 1), new Object[] { "## ", " "," ",Character.valueOf('#'), coinNickel }); ModLoader.addRecipe(new ItemStack(coinNickel, 1), new Object[] { "###", "## ", " ", Character.valueOf('#'), coinPenny }); } //------------------------------- public String getVersion() { return null; } } Here is the ForgeModLoader log if you need it. 2012-11-04 01:13:07 [iNFO] [ForgeModLoader] Forge Mod Loader version 4.2.18.433 for Minecraft 1.4.2 loading 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] All core mods are successfully located 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Discovering coremods 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Running coremod plugins 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Validating minecraft 2012-11-04 01:13:07 [FINEST] [ForgeModLoader] Minecraft validated, launching... 2012-11-04 01:13:08 [iNFO] [sTDOUT] 27 achievements 2012-11-04 01:13:08 [iNFO] [sTDOUT] 208 recipes 2012-11-04 01:13:08 [iNFO] [sTDOUT] Setting user: zeldakill, cd7607a13d00f820a27b0af3b82f5c3d15fb6161 2012-11-04 01:13:08 [iNFO] [sTDOUT] LWJGL Version: 2.4.2 2012-11-04 01:13:09 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2012-11-04 01:13:09 [iNFO] [sTDOUT] MinecraftForge v6.0.1.355 Initialized 2012-11-04 01:13:09 [iNFO] [ForgeModLoader] MinecraftForge v6.0.1.355 Initialized 2012-11-04 01:13:09 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Found a minecraft related file at D:\Games\MultiCraft\instances\Some Mods\minecraft\bin\minecraft.jar, examining for mod candidates 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Skipping known library file D:\Games\MultiCraft\instances\Some Mods\minecraft\bin\lwjgl.jar 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Skipping known library file D:\Games\MultiCraft\instances\Some Mods\minecraft\bin\lwjgl_util.jar 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Skipping known library file D:\Games\MultiCraft\instances\Some Mods\minecraft\bin\jinput.jar 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Skipping known library file D:\Games\MultiCraft\instances\Some Mods\minecraft\lib\argo-2.25.jar 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Skipping known library file D:\Games\MultiCraft\instances\Some Mods\minecraft\lib\guava-12.0.1.jar 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Skipping known library file D:\Games\MultiCraft\instances\Some Mods\minecraft\lib\asm-all-4.0.jar 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2012-11-04 01:13:09 [iNFO] [ForgeModLoader] Searching D:\Games\MultiCraft\instances\Some Mods\minecraft\mods for mods 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Found a candidate zip or jar file ComputerCraft1.46.zip 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Found a candidate zip or jar file industrialcraft-2_1.108.59-lf.jar 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Found a candidate zip or jar file Railcraft_6.7.0.0.zip 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Found a candidate zip or jar file StevesCarts2.0.0.a15.zip 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2012-11-04 01:13:09 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Identified a class net.minecraft.src.mod_Currency following modloader naming convention but not directly a BaseMod or currently seen subclass 2012-11-04 01:13:09 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_TooManyItems 2012-11-04 01:13:10 [iNFO] [ForgeModLoader] Attempting to reparse the mod container minecraft.jar 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2012-11-04 01:13:10 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Identified a class net.minecraft.src.mod_Currency following modloader naming convention but not directly a BaseMod or currently seen subclass 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_TooManyItems 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Examining file ComputerCraft1.46.zip for potential mods 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Located mcmod.info file in file ComputerCraft1.46.zip 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Identified an FMLMod type mod dan200.CCTurtle 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Parsed dependency info : [] [ComputerCraft] [] 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Identified an FMLMod type mod dan200.ComputerCraft 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] [] 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Examining file industrialcraft-2_1.108.59-lf.jar for potential mods 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Located mcmod.info file in file industrialcraft-2_1.108.59-lf.jar 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Identified an FMLMod type mod ic2.common.IC2 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] [] 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Examining file Railcraft_6.7.0.0.zip for potential mods 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Located mcmod.info file in file Railcraft_6.7.0.0.zip 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Identified an FMLMod type mod railcraft.common.core.Railcraft 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.0.1.332,)] [Forge@[6.0.1.332,), BuildCraft|Core, BuildCraft|Energy, BuildCraft|Builders, BuildCraft|Factory, Forestry, IC2] [] 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Examining file StevesCarts2.0.0.a15.zip for potential mods 2012-11-04 01:13:10 [FINE] [ForgeModLoader] The mod container StevesCarts2.0.0.a15.zip appears to be missing an mcmod.info file 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Identified an FMLMod type mod vswe.stevescarts.StevesCarts 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] [] 2012-11-04 01:13:10 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 9 mods to load 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Received a system property request '' 2012-11-04 01:13:10 [FINE] [ForgeModLoader] System property request managing the state of 0 mods 2012-11-04 01:13:10 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod mcp 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod FML 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod Forge 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Enabling mod mod_TooManyItems 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod mod_TooManyItems 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Enabling mod CCTurtle 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod CCTurtle 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Enabling mod ComputerCraft 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod ComputerCraft 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Enabling mod IC2 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod IC2 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Enabling mod Railcraft 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod Railcraft 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Enabling mod StevesCarts 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Activating mod StevesCarts 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied 2012-11-04 01:13:10 [FINE] [ForgeModLoader] All mod requirements are satisfied 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Sorting mods into an ordered list 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Mod sorting completed successfully 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Mod sorting data: 2012-11-04 01:13:10 [FINE] [ForgeModLoader] mod_TooManyItems(mod_TooManyItems:Not available): minecraft.jar () 2012-11-04 01:13:10 [FINE] [ForgeModLoader] ComputerCraft(ComputerCraft:1.46): ComputerCraft1.46.zip () 2012-11-04 01:13:10 [FINE] [ForgeModLoader] CCTurtle(ComputerCraft Turtles:1.46): ComputerCraft1.46.zip (after:ComputerCraft) 2012-11-04 01:13:10 [FINE] [ForgeModLoader] IC2(IndustrialCraft 2:1.108.59-lf): industrialcraft-2_1.108.59-lf.jar () 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Railcraft(Railcraft:6.7.0.0): Railcraft_6.7.0.0.zip (required-after:Forge@[6.0.1.332,);after:BuildCraft|Core;after:BuildCraft|Energy;after:BuildCraft|Builders;after:BuildCraft|Factory;after:Forestry;after:IC2) 2012-11-04 01:13:10 [FINE] [ForgeModLoader] StevesCarts(Steve's Carts:2.0.0.a14): StevesCarts2.0.0.a15.zip () 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mcp 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mcp 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod FML 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod FML 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Forge 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Forge 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_TooManyItems 2012-11-04 01:13:10 [FINE] [ForgeModLoader] No MLProp configuration for mod_TooManyItems found or required. No file written 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_TooManyItems 2012-11-04 01:13:10 [sEVERE] [ForgeModLoader] Detected an attempt by a mod mod_TooManyItems to perform game activity during mod construction. This is a serious programming error. 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_TooManyItems 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_TooManyItems 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ComputerCraft 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Testing mod ComputerCraft to verify it accepts its own version in a remote connection 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] The mod ComputerCraft accepts its own version (1.46) 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ComputerCraft 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ComputerCraft 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod CCTurtle 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Testing mod CCTurtle to verify it accepts its own version in a remote connection 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] The mod CCTurtle accepts its own version (1.46) 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CCTurtle 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod CCTurtle 2012-11-04 01:13:10 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod IC2 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] Testing mod IC2 to verify it accepts its own version in a remote connection 2012-11-04 01:13:10 [FINEST] [ForgeModLoader] The mod IC2 accepts its own version (1.108.59-lf) 2012-11-04 01:13:10 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IC2 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod IC2 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Railcraft 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] Testing mod Railcraft to verify it accepts its own version in a remote connection 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] The mod Railcraft accepts its own version (6.7.0.0) 2012-11-04 01:13:11 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Railcraft 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Railcraft 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod StevesCarts 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] Testing mod StevesCarts to verify it accepts its own version in a remote connection 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] The mod StevesCarts accepts its own version (2.0.0.a14) 2012-11-04 01:13:11 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into StevesCarts 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod StevesCarts 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mcp 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mcp 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod FML 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod FML 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Forge 2012-11-04 01:13:11 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Forge 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_TooManyItems 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_TooManyItems 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ComputerCraft 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ComputerCraft 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod CCTurtle 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod CCTurtle 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod IC2 2012-11-04 01:13:11 [iNFO] [sTDOUT] [iC2] Config loaded from D:\Games\MultiCraft\instances\Some Mods\minecraft\config\IC2.cfg 2012-11-04 01:13:11 [iNFO] [sTDOUT] [iC2] Using 32 audio sources. 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity MiningLaser as IC2.MiningLaser 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Dynamite as IC2.Dynamite 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity StickyDynamite as IC2.StickyDynamite 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Itnt as IC2.Itnt 2012-11-04 01:13:11 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Nuke as IC2.Nuke 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod IC2 2012-11-04 01:13:11 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Railcraft 2012-11-04 01:13:11 [FINE] [Railcraft] Pre-Init Phase 2012-11-04 01:13:11 [FINER] [Railcraft] Pre-Init Start: ModuleCore 2012-11-04 01:13:12 [FINER] [Railcraft] Pre-Init Complete: ModuleCore 2012-11-04 01:13:12 [FINER] [Railcraft] Pre-Init Start: ModuleAutomation 2012-11-04 01:13:12 [FINER] [Railcraft] Pre-Init Complete: ModuleAutomation 2012-11-04 01:13:12 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Railcraft 2012-11-04 01:13:12 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod StevesCarts 2012-11-04 01:13:12 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod StevesCarts 2012-11-04 01:13:12 [iNFO] [sTDOUT] Starting up SoundSystem... 2012-11-04 01:13:12 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2012-11-04 01:13:12 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2012-11-04 01:13:12 [iNFO] [sTDOUT] OpenAL initialized. 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ComputerCraft 2012-11-04 01:13:13 [iNFO] [sTDOUT] Loading ComputerCraft v1.46 (rev 782) 2012-11-04 01:13:13 [iNFO] [sTDOUT] ComputerCraft: Searching for RedPowerLib... 2012-11-04 01:13:13 [iNFO] [sTDOUT] ComputerCraft: RedPowerLib not found. 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ComputerCraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod CCTurtle 2012-11-04 01:13:13 [iNFO] [sTDOUT] Loading CCTurtle v1.46 (rev 782) 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod CCTurtle 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod IC2 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod IC2 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Railcraft 2012-11-04 01:13:13 [FINE] [Railcraft] Init Phase 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleCore 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.basic as Railcraft.cart.basic 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.chest as Railcraft.cart.chest 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.furnace as Railcraft.cart.furnace 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: canEmpty 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: waxCapsule 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: refractoryEmpty 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: refractoryWax 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: ingotTin 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: beeswax 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleCore 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleFactory 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity FallingCube as Railcraft.FallingCube 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleFactory 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleExtras 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.tnt as Railcraft.cart.tnt 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.work as Railcraft.cart.work 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleExtras 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleTrack 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleTrack 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleTracksHighSpeed 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleTracksHighSpeed 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleTracksWood 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleTracksWood 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleTracksReinforced 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleTracksReinforced 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleTrain 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleTrain 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleSignals 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleSignals 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleStructures 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleStructures 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleAutomation 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.bore as Railcraft.cart.bore 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.track.relayer as Railcraft.cart.track.relayer 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.undercutter as Railcraft.cart.undercutter 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleAutomation 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleTransport 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.tank as Railcraft.cart.tank 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleTransport 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleIC2 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.energy as Railcraft.cart.energy 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleIC2 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleEnergy 2012-11-04 01:13:13 [iNFO] [Railcraft] BuildcraftCore not found, using alternate gear recipes. 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleEnergy 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleWorld 2012-11-04 01:13:13 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSulfur, id=458 meta=0 2012-11-04 01:13:13 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSaltpeter, id=458 meta=1 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: fertilizerCompound 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleWorld 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleChunkLoading 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.anchor as Railcraft.cart.anchor 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleChunkLoading 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Start: ModuleSeasonal 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.pumpkin as Railcraft.cart.pumpkin 2012-11-04 01:13:13 [iNFO] [Railcraft] Activating Halloween Seasonal Pack 2012-11-04 01:13:13 [FINER] [Railcraft] Init-First Complete: ModuleSeasonal 2012-11-04 01:13:13 [FINER] [Railcraft] Init-Second Start: ModuleCore 2012-11-04 01:13:13 [FINER] [Railcraft] Init-Second Complete: ModuleCore 2012-11-04 01:13:13 [FINER] [Railcraft] Init-Second Start: ModuleFactory 2012-11-04 01:13:13 [FINER] [Railcraft] Init-Second Complete: ModuleFactory 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Railcraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod StevesCarts 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Automatically registered mod StevesCarts entity Minecart.Vswe.0 as StevesCarts.Minecart.Vswe.0 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod StevesCarts 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ComputerCraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ComputerCraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod CCTurtle 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod CCTurtle 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod IC2 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod IC2 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Railcraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Railcraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event IMCEvent to mod StevesCarts 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event IMCEvent to mod StevesCarts 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ComputerCraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ComputerCraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod CCTurtle 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod CCTurtle 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod IC2 2012-11-04 01:13:13 [iNFO] [sTDOUT] [iC2] Loading IC2 submodule: bcIntegration32x 2012-11-04 01:13:13 [iNFO] [sTDOUT] [iC2] Submodule bcIntegration32x not loaded 2012-11-04 01:13:13 [iNFO] [sTDOUT] [iC2] Loading IC2 submodule: cgIntegration 2012-11-04 01:13:13 [iNFO] [sTDERR] java.lang.ClassNotFoundException: CraftGuide.API.CraftGuideAPIObject 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:141) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at net.minecraftforge.transformers.EventTransformer.buildEvents(EventTransformer.java:54) 2012-11-04 01:13:13 [iNFO] [sTDERR] at net.minecraftforge.transformers.EventTransformer.transform(EventTransformer.java:35) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:178) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:133) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at ic2.cgIntegration.SubModule.init(SubModule.java:10) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at ic2.common.IC2.loadSubModule(IC2.java:804) 2012-11-04 01:13:13 [iNFO] [sTDERR] at ic2.common.IC2.modsLoaded(IC2.java:706) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2012-11-04 01:13:13 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:654) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:196) 2012-11-04 01:13:13 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.a(Minecraft.java:465) 2012-11-04 01:13:13 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:752) 2012-11-04 01:13:13 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException 2012-11-04 01:13:13 [iNFO] [sTDERR] at org.objectweb.asm.ClassReader.<init>(Unknown Source) 2012-11-04 01:13:13 [iNFO] [sTDERR] at net.minecraftforge.transformers.EventTransformer.transform(EventTransformer.java:29) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:178) 2012-11-04 01:13:13 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:133) 2012-11-04 01:13:13 [iNFO] [sTDERR] ... 44 more 2012-11-04 01:13:13 [iNFO] [sTDOUT] [iC2] Submodule cgIntegration not loaded 2012-11-04 01:13:13 [iNFO] [sTDOUT] [iC2] Loaded minor compatibility modules: none 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod IC2 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Railcraft 2012-11-04 01:13:13 [FINE] [Railcraft] Post-Init Phase 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Start: ModuleCore 2012-11-04 01:13:13 [WARNING] [ForgeModLoader] Could not retrieve Forestry item identified by: liquidBiofuel 2012-11-04 01:13:13 [FINER] [Railcraft] Buildcraft Fuel not found. 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Complete: ModuleCore 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Start: ModuleFactory 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Complete: ModuleFactory 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Start: ModuleTransport 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Complete: ModuleTransport 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Start: ModuleIC2 2012-11-04 01:13:13 [FINE] [Railcraft] IC2 Module: IC2 Detected, creating Energy Cart and Energy Loader recipes. 2012-11-04 01:13:13 [FINER] [Railcraft] Post-Init Complete: ModuleIC2 2012-11-04 01:13:13 [FINER] [Railcraft] Init Start: Renderer 2012-11-04 01:13:13 [FINER] [Railcraft] Init Complete: Renderer 2012-11-04 01:13:13 [FINEST] [Railcraft] Could not register CraftGuide plugin: BlastFurnacePlugin 2012-11-04 01:13:13 [FINEST] [Railcraft] Could not register CraftGuide plugin: CokeOvenPlugin 2012-11-04 01:13:13 [FINEST] [Railcraft] Could not register CraftGuide plugin: RockCrusherPlugin 2012-11-04 01:13:13 [FINEST] [Railcraft] Could not register CraftGuide plugin: RollingMachinePlugin 2012-11-04 01:13:13 [FINEST] [Railcraft] Could not register CraftGuide plugin: RecipeFilter 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Railcraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod StevesCarts 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod StevesCarts 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mcp 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod FML 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Forge 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_TooManyItems 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Requesting renderers from basemod mod_TooManyItems 2012-11-04 01:13:13 [FINEST] [ForgeModLoader] Received 51 renderers from basemod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_TooManyItems 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ComputerCraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ComputerCraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod CCTurtle 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod CCTurtle 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod IC2 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod IC2 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Railcraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Railcraft 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod StevesCarts 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod StevesCarts 2012-11-04 01:13:13 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 9 mods 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Registered texture override 0 (0) on TextureCreosoteOilFX (0) 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Registered texture override 16 (16) on TextureSteamFX (0) 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Registered texture override 20 (20) on TextureComputerFX (21) 2012-11-04 01:13:13 [FINER] [ForgeModLoader] Registered texture override 25 (25) on TextureComputerFX (22) 2012-11-04 01:13:23 [iNFO] [ForgeModLoader] Loading dimension 0 (TestsWorld(nonlegit)) (bcb@2ac9b296) 2012-11-04 01:13:23 [iNFO] [ForgeModLoader] Loading dimension 1 (TestsWorld(nonlegit)) (bcb@2ac9b296) 2012-11-04 01:13:23 [iNFO] [ForgeModLoader] Loading dimension -1 (TestsWorld(nonlegit)) (bcb@2ac9b296) 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod mcp 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod mcp 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod FML 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod FML 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod Forge 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod Forge 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod mod_TooManyItems 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod mod_TooManyItems 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod ComputerCraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod ComputerCraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod CCTurtle 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod CCTurtle 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod IC2 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod IC2 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod Railcraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod Railcraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartingEvent to mod StevesCarts 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartingEvent to mod StevesCarts 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod mcp 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod mcp 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod FML 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod FML 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod Forge 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod Forge 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod mod_TooManyItems 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod mod_TooManyItems 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod ComputerCraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod ComputerCraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod CCTurtle 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod CCTurtle 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod IC2 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod IC2 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod Railcraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod Railcraft 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sending event FMLServerStartedEvent to mod StevesCarts 2012-11-04 01:13:24 [FINER] [ForgeModLoader] Sent event FMLServerStartedEvent to mod StevesCarts 2012-11-04 01:13:26 [iNFO] [sTDOUT] ComputerCraft: Searching for RedPowerWorld... 2012-11-04 01:13:26 [iNFO] [sTDOUT] ComputerCraft: RedPowerWorld not found. 2012-11-04 01:13:32 [iNFO] [sTDOUT] Stopping! 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod mcp 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod mcp 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod FML 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod FML 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod Forge 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod Forge 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod mod_TooManyItems 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod mod_TooManyItems 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod ComputerCraft 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod ComputerCraft 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod CCTurtle 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod CCTurtle 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod IC2 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod IC2 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod Railcraft 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod Railcraft 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sending event FMLServerStoppingEvent to mod StevesCarts 2012-11-04 01:13:32 [FINER] [ForgeModLoader] Sent event FMLServerStoppingEvent to mod StevesCarts 2012-11-04 01:13:32 [iNFO] [sTDOUT] SoundSystem shutting down... 2012-11-04 01:13:32 [iNFO] [ForgeModLoader] Unloading dimension 0 2012-11-04 01:13:32 [iNFO] [ForgeModLoader] Unloading dimension -1 2012-11-04 01:13:32 [iNFO] [ForgeModLoader] Unloading dimension 1 2012-11-04 01:13:32 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com If you need anymore info, please contact me! Thanks for all the help! -zeldakill [system specs] OS: Win 8 (64 Bit) Ram: 8GB Java: 6.37(64 Bit) & 7.9(32 and 64 Bit) Not much else would effect anything, would it?
November 4, 201213 yr Your mod isn't even being loaded. Read the EAQ before posting! OR ELSE! This isn't building better software, its trying to grab a place in the commit list of a highly visible github project. www.forgeessentials.com Don't PM me, I don't check this account unless I have to.
November 4, 201213 yr The only problem that occurs is between IC2 and CraftGuide. Why don't you use NEI? Also, I'd suggest switching to a native FML mod, it might work better (at least change from BaseMod to @Mod) Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
November 4, 201213 yr The only problem that occurs is between IC2 and CraftGuide. Why don't you use NEI? That exception occurs when IC2 looks for CraftGuide but doesn't find it. It doesn't break anything, it just looks ugly in the logs. That's not the issue.
November 4, 201213 yr Identified a class net.minecraft.src.mod_Currency following modloader naming convention but not directly a BaseMod or currently seen subclass You didnt reobf your mod. Also, stop using ModLoader functions, esp consideirng how many sprites you use up. I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.