Posted August 27, 201213 yr While the mod completely works on eclipse, I can't load it with Forge on a normal game run. My mod_ class, hoping I have everything right in there. package mod_AsgardShield; import java.util.Random; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Side; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; import cpw.mods.fml.common.registry.TickRegistry; import net.minecraft.src.DamageSource; import net.minecraft.src.Entity; import net.minecraft.src.EntityArrow; import net.minecraft.src.EntityBlaze; import net.minecraft.src.EntityFireball; import net.minecraft.src.EntityGhast; import net.minecraft.src.EntityPlayer; import net.minecraft.src.EntitySkeleton; import net.minecraft.src.EntitySmallFireball; import net.minecraft.src.EnumToolMaterial; import net.minecraft.src.Item; import net.minecraft.src.ItemStack; import net.minecraft.src.Block; import net.minecraft.src.MathHelper; import net.minecraft.src.Vec3; import net.minecraftforge.client.MinecraftForgeClient; @Mod(modid = "Jade_Knightblazer", name = "AsgardShield", version = "1.3.2") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class mod_AsgardShield { //Random Gen stuff static int roll; static Random rand; static int asgardShieldBlockChance; static int asgardShieldPerk; static boolean smartMovingModActive = false; public static int EnableSmartMovingGuardID = 1; static boolean guardTired = false; static boolean shieldBroke = false; public static Item AsgardShieldWood; public static Item AsgardShieldStone; public static Item AsgardShieldIron; public static Item AsgardShieldDiamond; public static Item AsgardShieldWoodGilded; public static Item AsgardShieldStoneGilded; public static Item AsgardShieldIronGilded; public static Item AsgardShieldDiamondGilded; public static Item ZedSwordWoodSword; public static Item ZedSwordStoneSword; public static Item ZedSwordIronSword; public static Item ZedSwordGoldSword; public static Item ZedSwordDiamondSword; @SidedProxy(clientSide = "AsgardShield.client.ClientProxyTutorial", serverSide = "mod_AsgardShield.CommonProxyTutorial") public static CommonProxyTutorial proxy; @Init public void load(FMLInitializationEvent event) { AsgardShieldWood = new ItemAsgardShield(400,EnumToolMaterial.WOOD, 1).setIconIndex(0).setItemName("WoodenShield"); AsgardShieldStone = new ItemAsgardShield(402,EnumToolMaterial.STONE, 1).setIconIndex(1).setItemName("StoneShield"); AsgardShieldIron = new ItemAsgardShield(404,EnumToolMaterial.IRON, 1).setIconIndex(2).setItemName("IronShield"); AsgardShieldDiamond = new ItemAsgardShield(406,EnumToolMaterial.EMERALD, 1).setIconIndex(3).setItemName("DiamondShield"); AsgardShieldWoodGilded = new ItemAsgardShield(401,EnumToolMaterial.WOOD, 2).setIconIndex(16).setItemName("WoodenShieldGilded"); AsgardShieldStoneGilded = new ItemAsgardShield(403,EnumToolMaterial.STONE, 2).setIconIndex(17).setItemName("StoneShieldGilded"); AsgardShieldIronGilded = new ItemAsgardShield(405,EnumToolMaterial.IRON, 2).setIconIndex(18).setItemName("IronShieldGilded"); AsgardShieldDiamondGilded = new ItemAsgardShield(407,EnumToolMaterial.EMERALD, 2).setIconIndex(19).setItemName("DiamondShieldGilded"); ZedSwordWoodSword = new ItemZedSword(408,EnumToolMaterial.WOOD).setIconIndex(0).setItemName("WoodenGSword"); ZedSwordStoneSword = new ItemZedSword(409,EnumToolMaterial.STONE).setIconIndex(1).setItemName("StoneGSword"); ZedSwordIronSword = new ItemZedSword(410,EnumToolMaterial.IRON).setIconIndex(2).setItemName("IronGSword"); ZedSwordGoldSword = new ItemZedSword(411,EnumToolMaterial.GOLD).setIconIndex(3).setItemName("GoldenGSword"); ZedSwordDiamondSword = new ItemZedSword(412,EnumToolMaterial.EMERALD).setIconIndex(4).setItemName("DiamondGSword"); //Basic Shield Recipes GameRegistry.addRecipe(new ItemStack(AsgardShieldWood), new Object[] { "XXX", "X+X", " X ", 'X', Block.planks, '+', Item.leather }); GameRegistry.addRecipe(new ItemStack(AsgardShieldStone), new Object[] { "XXX", "X+X", " X ", 'X', Block.cobblestone, '+', Item.leather }); GameRegistry.addRecipe(new ItemStack(AsgardShieldIron), new Object[] { "XXX", "X+X", " X ", 'X', Item.ingotIron, '+', Item.leather }); GameRegistry.addRecipe(new ItemStack(AsgardShieldDiamond), new Object[] { "XXX", "X+X", " X ", 'X', Item.diamond, '+', Item.leather }); //Gilded Shield Recipes GameRegistry.addRecipe(new ItemStack(AsgardShieldWoodGilded), new Object[] { "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldWood }); GameRegistry.addRecipe(new ItemStack(AsgardShieldStoneGilded), new Object[] { "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldStone }); GameRegistry.addRecipe(new ItemStack(AsgardShieldIronGilded), new Object[] { "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldIron }); GameRegistry.addRecipe(new ItemStack(AsgardShieldDiamondGilded), new Object[] { "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldDiamond }); //Giant Sword Recipes GameRegistry.addRecipe(new ItemStack(ZedSwordWoodSword), new Object[] { " XX", "XXX", "+X ", 'X', Block.planks, '+', Item.stick }); GameRegistry.addRecipe(new ItemStack(ZedSwordStoneSword), new Object[] { " XX", "XXX", "+X ", 'X', Block.cobblestone, '+', Item.stick }); GameRegistry.addRecipe(new ItemStack(ZedSwordIronSword), new Object[] { " XX", "XXX", "+X ", 'X', Item.ingotIron, '+', Item.stick }); GameRegistry.addRecipe(new ItemStack(ZedSwordGoldSword), new Object[] { " XX", "XXX", "+X ", 'X', Item.ingotGold, '+', Item.stick }); GameRegistry.addRecipe(new ItemStack(ZedSwordDiamondSword), new Object[] { " XX", "XXX", "+X ", 'X', Item.diamond, '+', Item.stick }); LanguageRegistry.addName(AsgardShieldWood, "Wooden Shield"); LanguageRegistry.addName(AsgardShieldStone, "Stone Shield"); LanguageRegistry.addName(AsgardShieldIron, "Iron Shield"); LanguageRegistry.addName(AsgardShieldDiamond, "Diamond Shield"); LanguageRegistry.addName(AsgardShieldWoodGilded, "Gilded Wooden Shield"); LanguageRegistry.addName(AsgardShieldStoneGilded, "Gilded Stone Shield"); LanguageRegistry.addName(AsgardShieldIronGilded, "Gilded Iron Shield"); LanguageRegistry.addName(AsgardShieldDiamondGilded, "Gilded Diamond Shield"); LanguageRegistry.addName(ZedSwordWoodSword, "Wooden Giant Sword"); LanguageRegistry.addName(ZedSwordStoneSword, "Stone Giant Sword"); LanguageRegistry.addName(ZedSwordIronSword, "Iron Giant Sword"); LanguageRegistry.addName(ZedSwordGoldSword, "Golden Giant Sword"); LanguageRegistry.addName(ZedSwordDiamondSword, "Diamond Giant Sword"); proxy.registerRenderThings(); TickRegistry.registerTickHandler(new YourTicker(), Side.CLIENT); } } When I reobf, I get the following. reobf/minecraft Then two folders: AsgardShield and mod_AsgardShield. Do I need both and .zip them together or just mod_AsgardShield like I would do with Modloader. Lastly here is my ForgeModLoader-client-0. This is when I placed the two folders above in 1 .zip, and put them in the .minecraft/mods folder. 2012-08-27 14:14:36 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.148.332 for Minecraft client:1.3.2, server:1.3.2 loading 2012-08-27 14:14:36 [FINEST] [ForgeModLoader] All core mods are successfully located 2012-08-27 14:14:36 [FINEST] [ForgeModLoader] Discovering coremods 2012-08-27 14:14:36 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Running coremod plugins 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Validating minecraft 2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Minecraft validated, launching... 2012-08-27 14:14:37 [iNFO] [sTDOUT] 27 achievements 2012-08-27 14:14:37 [iNFO] [sTDOUT] 195 recipes 2012-08-27 14:14:38 [iNFO] [sTDOUT] Setting user: Jade_Knightblaze, 551418960191753715 2012-08-27 14:14:38 [iNFO] [sTDOUT] LWJGL Version: 2.4.2 2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\lwjgl.jar 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\jinput.jar 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\lwjgl_util.jar 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\minecraft.jar, examining for mod candidates 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\lib\argo-2.25.jar 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\lib\guava-12.0.1.jar 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\lib\asm-all-4.0.jar 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Searching C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\mods for mods 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Ignoring unknown file AsgardShieldMod.rar in mods directory 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2012-08-27 14:14:38 [iNFO] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 2 mods to load 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Received a system property request '' 2012-08-27 14:14:38 [FINE] [ForgeModLoader] System property request managing the state of 0 mods 2012-08-27 14:14:38 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Activating mod FML 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Activating mod Forge 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied 2012-08-27 14:14:38 [FINE] [ForgeModLoader] All mod requirements are satisfied 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Sorting mods into an ordered list 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Mod sorting completed successfully 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Mod sorting data: 2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f to mod FML 2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f delivered to mod FML 2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f to mod Forge 2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f delivered to mod Forge 2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 to mod FML 2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 delivered to mod FML 2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 to mod Forge 2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 delivered to mod Forge 2012-08-27 14:14:39 [iNFO] [sTDOUT] Starting up SoundSystem... 2012-08-27 14:14:39 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2012-08-27 14:14:39 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2012-08-27 14:14:39 [iNFO] [sTDOUT] OpenAL initialized. 2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 to mod FML 2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 delivered to mod FML 2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 to mod Forge 2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 delivered to mod Forge 2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 to mod FML 2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 delivered to mod FML 2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 to mod Forge 2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 delivered to mod Forge 2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 to mod FML 2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 delivered to mod FML 2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 to mod Forge 2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 delivered to mod Forge 2012-08-27 14:14:39 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 2 mods 2012-08-27 14:14:43 [iNFO] [sTDOUT] Stopping! 2012-08-27 14:14:43 [iNFO] [sTDOUT] SoundSystem shutting down... 2012-08-27 14:14:43 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com http://i715.photobucket.com/albums/ww155/JadeKnightblazer/AsgardShieldBannermain.png[/img]
August 27, 201213 yr a mod file must be either a .zip or .jar, it seems you are using .rar 2012-08-27 14:14:38 [FINE] [ForgeModLoader] Ignoring unknown file AsgardShieldMod[b].rar[/b] in mods directory
August 27, 201213 yr Author Thank you very much sir, just what I needed. A quick, simple, fix. Just switched my winrar to convert to .zip. Worked like a charm. http://i715.photobucket.com/albums/ww155/JadeKnightblazer/AsgardShieldBannermain.png[/img]
August 27, 201213 yr Author Works fine on client, however Server is having its issues. ForgeModLoader-server-0 2012-08-27 14:52:52 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.148.332 for Minecraft client:1.3.2, server:1.3.2 loading 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] All core mods are successfully located 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Discovering coremods 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Running coremod plugins 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Validating minecraft 2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Minecraft validated, launching... 2012-08-27 14:52:54 [iNFO] [sTDOUT] 195 recipes 2012-08-27 14:52:54 [iNFO] [sTDOUT] 27 achievements 2012-08-27 14:52:55 [iNFO] [sTDERR] java.io.IOException: The handle is invalid 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.FileInputStream.readBytes(Native Method) 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.FileInputStream.read(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedInputStream.read1(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedInputStream.read(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at sun.nio.cs.StreamDecoder.readBytes(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at sun.nio.cs.StreamDecoder.implRead(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at sun.nio.cs.StreamDecoder.read(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.InputStreamReader.read(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedReader.fill(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedReader.readLine(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedReader.readLine(Unknown Source) 2012-08-27 14:52:55 [iNFO] [sTDERR] at fv.run(SourceFile:60) 2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\HP_Administrator\Desktop\testserver\minecraft_server.jar, examining for mod candidates 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\HP_Administrator\Desktop\testserver\lib\argo-2.25.jar 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\HP_Administrator\Desktop\testserver\lib\guava-12.0.1.jar 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\HP_Administrator\Desktop\testserver\lib\asm-all-4.0.jar 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Searching C:\Documents and Settings\HP_Administrator\Desktop\testserver\mods for mods 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Found a candidate zip or jar file AsgardShield.zip 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Examining file minecraft_server.jar for potential mods 2012-08-27 14:52:55 [iNFO] [ForgeModLoader] The mod container minecraft_server.jar appears to be missing an mcmod.info file 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Examining file AsgardShield.zip for potential mods 2012-08-27 14:52:55 [iNFO] [ForgeModLoader] The mod container AsgardShield.zip appears to be missing an mcmod.info file 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Identified a FMLMod type mod mod_AsgardShield.mod_AsgardShield 2012-08-27 14:52:55 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] [] 2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 3 mods to load 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Received a system property request '' 2012-08-27 14:52:55 [FINE] [ForgeModLoader] System property request managing the state of 0 mods 2012-08-27 14:52:55 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Activating mod FML 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Activating mod Forge 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Enabling mod Jade_Knightblazer 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Activating mod Jade_Knightblazer 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied 2012-08-27 14:52:55 [FINE] [ForgeModLoader] All mod requirements are satisfied 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Sorting mods into an ordered list 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Mod sorting completed successfully 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Mod sorting data: 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Jade_Knightblazer(AsgardShield:1.3.2): AsgardShield.zip () 2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed to mod FML 2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed delivered to mod FML 2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed to mod Forge 2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed delivered to mod Forge 2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed to mod Jade_Knightblazer 2012-08-27 14:52:55 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Jade_Knightblazer 2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed delivered to mod Jade_Knightblazer 2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a to mod FML 2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a delivered to mod FML 2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a to mod Forge 2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a delivered to mod Forge 2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a to mod Jade_Knightblazer 2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a delivered to mod Jade_Knightblazer 2012-08-27 14:52:56 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 to mod FML 2012-08-27 14:52:56 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 delivered to mod FML 2012-08-27 14:52:56 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 to mod Forge 2012-08-27 14:52:56 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 delivered to mod Forge 2012-08-27 14:52:56 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 to mod Jade_Knightblazer 2012-08-27 14:52:56 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 delivered to mod Jade_Knightblazer 2012-08-27 14:52:56 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue 2012-08-27 14:52:56 [sEVERE] [ForgeModLoader] Forge Mod Loader (coremods) Unloaded->Constructed->Pre-initialized->Initialized Minecraft Forge (coremods) Unloaded->Constructed->Pre-initialized->Initialized AsgardShield (AsgardShield.zip) Unloaded->Constructed->Pre-initialized->Errored 2012-08-27 14:52:56 [sEVERE] [ForgeModLoader] The following problems were captured during this phase 2012-08-27 14:52:56 [sEVERE] [ForgeModLoader] Caught exception from Jade_Knightblazer java.lang.reflect.InvocationTargetException 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:310) 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:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:123) 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:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:620) at cpw.mods.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:84) at cpw.mods.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:355) at ft.b(DedicatedServer.java:111) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:415) at ep.run(SourceFile:539) Caused by: java.lang.NoClassDefFoundError: atg at mod_AsgardShield.mod_AsgardShield.load(mod_AsgardShield.java:163) ... 31 more Caused by: java.lang.ClassNotFoundException: atg at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:99) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 32 more Caused by: java.lang.NullPointerException at org.objectweb.asm.ClassReader.<init>(Unknown Source) at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:27) at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:141) at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:92) ... 34 more 2012-08-27 14:52:56 [iNFO] [sTDERR] 2012-08-27 14:52:55 [iNFO] Starting minecraft server version 1.3.2 2012-08-27 14:52:55 [WARNING] To start the server with more ram, launch it as "java -Xmx1024M -Xms1024M -jar minecraft_server.jar" 2012-08-27 14:52:55 [iNFO] Loading properties 2012-08-27 14:52:55 [iNFO] Default game type: SURVIVAL 2012-08-27 14:52:55 [iNFO] Generating keypair 2012-08-27 14:52:56 [iNFO] Starting Minecraft server on 192.168.1.124:25565 cpw.mods.fml.common.LoaderException: java.lang.reflect.InvocationTargetException 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:102) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:621) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:84) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:355) 2012-08-27 14:52:56 [iNFO] [sTDERR] at ft.b(DedicatedServer.java:111) 2012-08-27 14:52:56 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:415) 2012-08-27 14:52:56 [iNFO] [sTDERR] at ep.run(SourceFile:539) 2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.reflect.InvocationTargetException 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:310) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:123) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:620) 2012-08-27 14:52:56 [iNFO] [sTDERR] ... 5 more 2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.NoClassDefFoundError: atg 2012-08-27 14:52:56 [iNFO] [sTDERR] at mod_AsgardShield.mod_AsgardShield.load(mod_AsgardShield.java:163) 2012-08-27 14:52:56 [iNFO] [sTDERR] ... 31 more 2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: atg 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:99) 2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] ... 32 more 2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException 2012-08-27 14:52:56 [iNFO] [sTDERR] at org.objectweb.asm.ClassReader.<init>(Unknown Source) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:27) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:141) 2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:92) 2012-08-27 14:52:56 [iNFO] [sTDERR] ... 34 more 2012-08-27 14:52:56 [iNFO] [sTDERR] 2012-08-27 14:52:56 [sEVERE] Encountered an unexpected exception LoaderException cpw.mods.fml.common.LoaderException: java.lang.reflect.InvocationTargetException at cpw.mods.fml.common.LoadController.transition(LoadController.java:102) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:621) at cpw.mods.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:84) at cpw.mods.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:355) at ft.b(DedicatedServer.java:111) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:415) at ep.run(SourceFile:539) Caused by: java.lang.reflect.InvocationTargetException 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:310) 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:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:123) 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:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:620) ... 5 more Caused by: java.lang.NoClassDefFoundError: atg at mod_AsgardShield.mod_AsgardShield.load(mod_AsgardShield.java:163) ... 31 more Caused by: java.lang.ClassNotFoundException: atg at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:99) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 32 more Caused by: java.lang.NullPointerException at org.objectweb.asm.ClassReader.<init>(Unknown Source) at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:27) at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:141) at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:92) ... 34 more 2012-08-27 14:53:48 [iNFO] [sTDERR] 2012-08-27 14:52:56 [sEVERE] This crash report has been saved to: C:\Documents and Settings\HP_Administrator\Desktop\testserver\.\crash-reports\crash-2012-08-27_14.52.56-server.txt 2012-08-27 14:53:48 [iNFO] Stopping server 2012-08-27 14:53:48 [iNFO] Saving worlds java.lang.NullPointerException 2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:323) 2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.j(MinecraftServer.java:371) 2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:498) 2012-08-27 14:53:48 [iNFO] [sTDERR] at ep.run(SourceFile:539) 2012-08-27 14:53:48 [iNFO] [sTDERR] java.net.SocketException: socket closed 2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.PlainSocketImpl.socketAccept(Native Method) 2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.PlainSocketImpl.accept(Unknown Source) 2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.ServerSocket.implAccept(Unknown Source) 2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.ServerSocket.accept(Unknown Source) 2012-08-27 14:53:48 [iNFO] [sTDERR] at fy.run(ServerListenThread.java:75) 2012-08-27 14:53:48 [iNFO] [sTDOUT] Closing listening thread 2012-08-27 14:53:48 [iNFO] [sTDERR] 2012-08-27 14:53:48 [iNFO] Stopping server 2012-08-27 14:53:48 [iNFO] Saving worlds Exception in thread "Thread-5" java.lang.NullPointerException 2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:323) 2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.j(MinecraftServer.java:371) 2012-08-27 14:53:48 [iNFO] [sTDERR] at eo.run(SourceFile:527) @_@, I feel like such a noob with Forge and SMP. I understand Modloader (client is this, and server is that) but for forge.... I feel like I am drowning. http://i715.photobucket.com/albums/ww155/JadeKnightblazer/AsgardShieldBannermain.png[/img]
August 27, 201213 yr Caused by: java.lang.ClassNotFoundException: atg -MCPBot- [ GET CLIENT CLASS ] -MCPBot- Side : client -MCPBot- Name : EntityClientPlayerMP -MCPBot- Notch : atg Seems fairly obvious what the issue is, you're referencing a class that doesnt exist. Test your mod better. I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
August 27, 201213 yr Author Be more easy to test if you could run the server on MCP with Forge installed.... Instead of skipping it. So I have to blindly hope SMP works while the Client runs smoothly. Its odd I used the same Mod.zip I have placed in my clients /mods folder. So all files are intact. http://i715.photobucket.com/albums/ww155/JadeKnightblazer/AsgardShieldBannermain.png[/img]
August 27, 201213 yr You know.. I never thought of that. My god i've been a fucking retard Oh wait... There are perfectly setup debug configurations for the eclispe workspace. Not my problem if you cant be bothered to use them -.- I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
August 27, 201213 yr Author Cool thanks, with all the tutorials around (not many for forge). No one has ever pointed out there was a server debug mode in eclipse. I never used this coding program before and did all my work with .txt for modloader. Thanks for clearing that up and now hopfully I can use this tool to see whats going wrong. Still odd tho, even with Eclipse debugging, the server loads up the mod just fine. Its only after I .zip it and place in mods folder. /shrug Back to the drawing board. http://i715.photobucket.com/albums/ww155/JadeKnightblazer/AsgardShieldBannermain.png[/img]
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.