keybounce Posted September 4, 2012 Posted September 4, 2012 I am unable to get modloader mods to work in forge 241. Symptoms: 1. FML reports all mods as version 1.0 2. Server reports that I connect with no mods. 3. Log file shows no version information available. 4. Mods do work. However, mods that communicate with the server -- Superior Enchantment -- fail to be recognized on the server. Here is my client launch script: #!/bin/sh MEM=250m # 12w27a ran out at 200 # USER=keybounce PASSWORD_HASH=-7622254910798163513 # Actually, seems to be session sensitive. Not sure when Mojang's servers time-out a session. MCP="$HOME"/"Documents/games/minecraft/Tools/MagicLauncher.app/Contents/Resources/Java/MagicLauncher.jar" # Note that the mod list is backwards; the _bottom_ of the list (last one) goes first. Modloader goes # at the end of this list, yet at the beginning of the screen listing. ModDir="$HOME/Documents/Games/Minecraft/Playing/Mods/132" JarDir="$HOME/Documents/Games/Minecraft/Playing/Jars" Lwjgl="\ bin/lwjgl/jinput.jar;\ bin/lwjgl/lwjgl.jar;\ bin/lwjgl/lwjgl_util.jar;\ " Lwjgl="\ bin/jinput.jar;\ bin/lwjgl.jar;\ bin/lwjgl_util.jar;\ " Lwjgl_notused="\ bin/lwjgl/lzma.jar\ bin/lwjgl/AppleJavaExtensions.jar;\ bin/lwjgl/lwjgl-debug.jar;\ bin/lwjgl/lwjgl_test.jar;\ bin/lwjgl/asm-debug-all.jar;\ bin/lwjgl/lwjgl_util_applet.jar;\ " # All single player, no longer used ... SSP_MODS="\ $ModDir/Somnia v23-125.zip;\ /Users/michael/Documents/games/minecraft/Mods/124/Timber-124.zip;\ $ModDir/Shelf-125.zip;\ /Users/michael/Documents/games/minecraft/Mods/124/ClaySoil-124.zip;\ $ModDir/Biosphere-125.zip;\ $ModDir/WMLLStable23125.zip;\ $ModDir/SinglePlayerCommands-MC1.2.5_V3.2.2.zip;\ $ModDir/SaturationBar-125.zip;\ $ModDir/WMLLTest73412w27a.zip;\ $ModDir/mod_MumbleLink.class.zip;\ $ModDir/minecraftforge-universal-4.0.0.241.zip;\ " MODS="\ $ModDir/MineVideoV1.2_2.zip;\ $ModDir/OptiFine_1.3.2_HD_U_B3.zip;\ $ModDir/ImprovedLogPlacing-132.zip;\ $ModDir/JustDW_2.3.2.zip;\ $ModDir/Mumblelink-252-132.zip;\ $ModDir/Superior_Enchanting-132.zip;\ $ModDir/TooManyItems2012_08_16_1.3.2.zip;\ $ModDir/WMLLStable32132.zip;\ $ModDir/ModLoader-132.zip;\ $JarDir/minecraft-132.jar;\ " JAVA_OPTS="-Dsun.java2d.noddraw=true -Dsun.java2d.d3d=false -Dsun.java2d.opengl=false -Dsun.java2d.pmoffscreen=false -Djava.library.path=bin/natives" # JAVA_OPTS is used unquoted so that the spaces will break it into separate options. # Other filenames may have spaces and must be quoted. CLASS=net.minecraft.client.Minecraft cd ~/Library/Application\ Support/minecraft/ echo java -Xms128m -Xmx$MEM $JAVA_OPTS -cp "$MCP" magic.launcher.Launcher -lcp="$MODS;$Lwjgl" -showLog $CLASS $USER $PASSWORD_HASH java -Xms128m -Xmx$MEM $JAVA_OPTS -cp "$MCP" magic.launcher.Launcher -lcp="$MODS;$Lwjgl" -showLog $CLASS $USER $PASSWORD_HASH Note that I switched out forge for modloader; things worked with modloader. Here is the server-side creation/mod list: #!/bin/sh # Simple script to assemble the parts of a minecraft server. # Where the files are located. # Dated -- this is based on 125 when server and client used different mods. # As more mods switch to universal, seperate 132smp and 132ssp directories becomes redundant. ModDir="$HOME"/Documents/Games/Minecraft/Playing/Mods/132smp JarDir="$HOME"/Documents/Games/Minecraft/Playing/Jars # These mods are not yet up to 132. # unzip "$ModDir"/ClaySoil_Server_125.zip # unzip "$ModDir"/mystcraft-server-1.2.5-0.9.1.02-Forge-3.3.8.152.zip # unzip "$ModDir"/extrabiomes-2.2.7-cs-fix2-smp.zip # unzip "$ModDir"/bunyan-1.5-smp.zip # For the server, we have two different sets of mods to assemble: Jar mods and Mod-folder mods. # Jar mods: TMPDIR=`mktemp -d server.jar.XXX` || exit 1 cd $TMPDIR unzip "$JarDir"/minecraft_server-132.jar ## unzip "$ModDir"/minecraftforge-universal-4.0.0.241.zip unzip "$ModDir"/FallFix_1_3_2.zip ## unzip "$ModDir"/ImprovedLogPlacing-132.zip unzip "$ModDir"/ImprovedLog-132-noforge.zip unzip "$ModDir"/MoreVillageBiomes-V2-132-smp.zip unzip "$ModDir"/SuperiorEnchantment-132smp.zip unzip "$ModDir"/WaterPropogationFix_132.zip mv ../new_server.jar ../new_server.jar.old zip -r ../new_server.jar * cd .. # Now for the Mod folder. # We have to clear the mod folder out all the time -- leftover files there are the biggest cause # of problems. # # I'd love to just blow away the mods folder completely, but some mods need various resources # in there, that are meant to be customized by you. So they have to stay around. # # Bottom line: We remove the .zip files from the top level of the mods folder, and leave # everything else -- config files, resource files -- for mods to keep. TMPMOD=`mktemp -d mods.XXX` || exit 1 mv -f mods/*.zip $TMPMOD cp "$ModDir"/twilightforest-1.11.3.zip mods cp "$ModDir"/Ruins-1.3.2.zip mods echo Done, leftover junk in $TMPDIR, old mods in $TMPMOD (Yes, I know that the two mod directory server mods are not being used. That's not the point). Client side logs: Modloader (mods work and talk to the server) Sep 3, 2012 6:34:02 PM ModLoader init FINE: ModLoader 1.3.2 Initializing... Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl_util.jar Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl.jar Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/jinput.jar Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Jars/minecraft-132.jar Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ModLoader-132.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/WMLLStable32132.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/TooManyItems2012_08_16_1.3.2.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader addMod FINE: Mod Initialized: "mod_TooManyItems 1.3.2 2012-08-16" from mod_TooManyItems.class Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Superior_Enchanting-132.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader addMod FINE: Mod Initialized: "mod_521_magicalRepair 1.4" from mod_521_magicalRepair.class Sep 3, 2012 6:34:03 PM ModLoader addMod FINE: Mod Initialized: "mod_521_superior_enchanting 1.13.3" from mod_521_superior_enchanting.class Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Mumblelink-252-132.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader addMod FINE: Mod Initialized: "mod_MumbleLink 2.5.2" from mod_MumbleLink.class Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/JustDW_2.3.2.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ImprovedLogPlacing-132.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/OptiFine_1.3.2_HD_U_B3.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/MineVideoV1.2_2.zip Sep 3, 2012 6:34:03 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:05 PM ModLoader addMod FINE: Mod Initialized: "mod_MineVideo 1.3.1" from mod_MineVideo.class Sep 3, 2012 6:34:05 PM ModLoader readFromClassPath FINER: Adding mods from /Volumes/UserData/Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ModLoader-132.zip Sep 3, 2012 6:34:05 PM ModLoader readFromClassPath FINER: Zip found. Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods/MumbleLink Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder FINER: Directory found. Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods/resources Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder FINER: Directory found. Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder FINER: Adding mods from /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods/sppcommands Sep 3, 2012 6:34:06 PM ModLoader readFromModFolder FINER: Directory found. Sep 3, 2012 6:34:06 PM ModLoader init FINE: Mod Loaded: "mod_TooManyItems 1.3.2 2012-08-16" Sep 3, 2012 6:34:06 PM ModLoader init FINE: Mod Loaded: "mod_521_magicalRepair 1.4" Sep 3, 2012 6:34:06 PM ModLoader init FINE: Mod Loaded: "mod_521_superior_enchanting 1.13.3" Sep 3, 2012 6:34:06 PM ModLoader init FINE: Mod Loaded: "mod_MumbleLink 2.5.2" Sep 3, 2012 6:34:06 PM ModLoader init FINE: Mod Loaded: "mod_MineVideo 1.3.1" Sep 3, 2012 6:34:06 PM ModLoader addAllRenderers FINE: Initialized (Minevideo IS the 1.3.2 version; the mod author did not update the text string.) Client side logs, forge modloader 2012-09-03 17:07:44 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.165.344 for Minecraft client:1.3.2, server:1.3.2 loading 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] All core mods are successfully located 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Discovering coremods 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Running coremod plugins 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Validating minecraft 2012-09-03 17:07:44 [FINEST] [ForgeModLoader] Minecraft validated, launching... 2012-09-03 17:07:46 [iNFO] [sTDOUT] 27 achievements 2012-09-03 17:07:46 [iNFO] [sTDOUT] 195 recipes 2012-09-03 17:07:46 [iNFO] [sTDOUT] Setting user: keybounce, -7622254910798163513 2012-09-03 17:07:46 [iNFO] [sTDERR] Client asked for parameter: server 2012-09-03 17:07:46 [iNFO] [sTDOUT] LWJGL Version: 2.4.2 2012-09-03 17:07:46 [iNFO] [sTDOUT] OptiFine_1.3.2_HD_U_B3 2012-09-03 17:07:46 [iNFO] [sTDOUT] Mon Sep 03 17:07:46 PDT 2012 2012-09-03 17:07:46 [iNFO] [sTDOUT] OS: Mac OS X (x86_64) version 10.7.4 2012-09-03 17:07:46 [iNFO] [sTDOUT] Java: 1.6.0_33, Apple Inc. 2012-09-03 17:07:46 [iNFO] [sTDOUT] VM: Java HotSpot 64-Bit Server VM (mixed mode), Apple Inc. 2012-09-03 17:07:46 [iNFO] [sTDOUT] LWJGL: 2.4.2 2012-09-03 17:07:46 [iNFO] [sTDOUT] OpenGL: Intel HD Graphics 3000 OpenGL Engine version 2.1 APPLE-7.18.18, Intel Inc. 2012-09-03 17:07:46 [iNFO] [sTDOUT] OpenGL Version: 2.1 2012-09-03 17:07:46 [iNFO] [sTDOUT] Checking for new version 2012-09-03 17:07:46 [iNFO] [sTDOUT] setupTexture: "/title/mojang.png", id: 1 2012-09-03 17:07:46 [iNFO] [sTDOUT] Version found: B3 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Forge Mod Loader has detected optifine OptiFine_1.3.2_HD_U_B3, enabling compatibility features 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/MineVideoV1.2_2.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/OptiFine_1.3.2_HD_U_B3.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/ImprovedLogPlacing-132.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/JustDW_2.3.2.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Mumblelink-252-132.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/Superior_Enchanting-132.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/TooManyItems2012_08_16_1.3.2.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/WMLLStable32132.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Mods/132/minecraftforge-universal-4.0.0.241.zip, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a minecraft related file at /Users/michael/Documents/Games/Minecraft/Playing/Jars/minecraft-132.jar, examining for mod candidates 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/jinput.jar 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl.jar 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/bin/lwjgl_util.jar 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/lib/argo-2.25.jar 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/lib/guava-12.0.1.jar 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Skipping known library file /Volumes/UserData/Users/michael/Library/Application Support/minecraft/lib/asm-all-4.0.jar 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Searching /Volumes/UserData/Users/michael/Library/Application Support/minecraft/mods for mods 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Ignoring unknown file .DS_Store in mods directory 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a candidate mod directory MumbleLink 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a candidate mod directory resources 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Found a candidate mod directory sppcommands 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file MineVideoV1.2_2.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container MineVideoV1.2_2.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_MineVideo 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file OptiFine_1.3.2_HD_U_B3.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container OptiFine_1.3.2_HD_U_B3.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file ImprovedLogPlacing-132.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container ImprovedLogPlacing-132.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file JustDW_2.3.2.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container JustDW_2.3.2.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file Mumblelink-252-132.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container Mumblelink-252-132.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_MumbleLink 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file Superior_Enchanting-132.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container Superior_Enchanting-132.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_521_magicalRepair 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_521_superior_enchanting 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file TooManyItems2012_08_16_1.3.2.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container TooManyItems2012_08_16_1.3.2.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_TooManyItems 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file WMLLStable32132.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container WMLLStable32132.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file minecraftforge-universal-4.0.0.241.zip for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container minecraftforge-universal-4.0.0.241.zip appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining file minecraft-132.jar for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] The mod container minecraft-132.jar appears to be missing an mcmod.info file 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining directory MumbleLink for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] No mcmod.info file found in directory MumbleLink 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package natives 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining directory resources for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] No mcmod.info file found in directory resources 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Beach 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.DesertHills 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Extreme Hills 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Extreme Hills Edge 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ForestHills 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.Jungle 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.JungleHills 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.OPTIONAL 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.TaigaHills 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.desert 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.forest 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.frozenOcean 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.frozenRiver 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.hell 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ice Mountains 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ice Plains 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.mushroomIsland 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.mushroomIslandShore 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.ocean 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.plains 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.river 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.sky 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.swampland 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package ruins.taiga 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Examining directory sppcommands for potential mods 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] No mcmod.info file found in directory sppcommands 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package jars 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package macros 2012-09-03 17:07:47 [FINEST] [ForgeModLoader] Recursing into package saves 2012-09-03 17:07:47 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 7 mods to load 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Received a system property request '' 2012-09-03 17:07:47 [FINE] [ForgeModLoader] System property request managing the state of 0 mods 2012-09-03 17:07:47 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod FML 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod Forge 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_MineVideo 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_MineVideo 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_MumbleLink 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_MumbleLink 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_521_magicalRepair 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_521_magicalRepair 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_521_superior_enchanting 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_521_superior_enchanting 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Enabling mod mod_TooManyItems 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Activating mod mod_TooManyItems 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied 2012-09-03 17:07:47 [FINE] [ForgeModLoader] All mod requirements are satisfied 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Sorting mods into an ordered list 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Mod sorting completed successfully 2012-09-03 17:07:47 [FINE] [ForgeModLoader] Mod sorting data: 2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_MineVideo(mod_MineVideo:Not available): MineVideoV1.2_2.zip () 2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_MumbleLink(mod_MumbleLink:Not available): Mumblelink-252-132.zip () 2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_521_magicalRepair(mod_521_magicalRepair:Not available): Superior_Enchanting-132.zip () 2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_521_superior_enchanting(mod_521_superior_enchanting:Not available): Superior_Enchanting-132.zip () 2012-09-03 17:07:47 [FINE] [ForgeModLoader] mod_TooManyItems(mod_TooManyItems:Not available): TooManyItems2012_08_16_1.3.2.zip () 2012-09-03 17:07:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod FML 2012-09-03 17:07:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod FML 2012-09-03 17:07:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod Forge 2012-09-03 17:07:47 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod Forge 2012-09-03 17:07:47 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_MineVideo 2012-09-03 17:07:47 [FINE] [ForgeModLoader] No MLProp configuration for mod_MineVideo found or required. No file written 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_MineVideo 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_MineVideo 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_MineVideo 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_MumbleLink 2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_MumbleLink found or required. No file written 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_MumbleLink 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_MumbleLink 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_MumbleLink 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_521_magicalRepair 2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_521_magicalRepair found or required. No file written 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_521_magicalRepair 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_521_magicalRepair 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_521_magicalRepair 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_521_superior_enchanting 2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_521_superior_enchanting found or required. No file written 2012-09-03 17:07:48 [iNFO] [sTDOUT] ENCHANTMENT LEVEL 2012-09-03 17:07:48 [iNFO] [sTDOUT] I II III IV V 2012-09-03 17:07:48 [iNFO] [sTDOUT] Protection 1 12 23 34 2012-09-03 17:07:48 [iNFO] [sTDOUT] Fire Protection 10 18 26 34 2012-09-03 17:07:48 [iNFO] [sTDOUT] Feather Falling 5 11 17 23 2012-09-03 17:07:48 [iNFO] [sTDOUT] Blast Protection 5 13 21 29 2012-09-03 17:07:48 [iNFO] [sTDOUT] Projectile Protection 3 9 15 21 2012-09-03 17:07:48 [iNFO] [sTDOUT] Respiration 10 20 30 2012-09-03 17:07:48 [iNFO] [sTDOUT] Aqua Affinity 1 2012-09-03 17:07:48 [iNFO] [sTDOUT] Sharpness 1 12 23 34 45 2012-09-03 17:07:48 [iNFO] [sTDOUT] Smite 5 13 21 29 37 2012-09-03 17:07:48 [iNFO] [sTDOUT] Bane of Arthropods 5 13 21 29 37 2012-09-03 17:07:48 [iNFO] [sTDOUT] Knockback 5 25 2012-09-03 17:07:48 [iNFO] [sTDOUT] Fire Aspect 10 30 2012-09-03 17:07:48 [iNFO] [sTDOUT] Looting 15 24 33 2012-09-03 17:07:48 [iNFO] [sTDOUT] Efficiency 1 11 21 31 41 2012-09-03 17:07:48 [iNFO] [sTDOUT] Silk Touch 15 2012-09-03 17:07:48 [iNFO] [sTDOUT] Unbreaking 5 13 21 2012-09-03 17:07:48 [iNFO] [sTDOUT] Fortune 15 24 33 2012-09-03 17:07:48 [iNFO] [sTDOUT] Power 1 11 21 31 41 2012-09-03 17:07:48 [iNFO] [sTDOUT] Punch 12 32 2012-09-03 17:07:48 [iNFO] [sTDOUT] Flame 20 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_521_superior_enchanting 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_521_superior_enchanting 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_521_superior_enchanting 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb to mod mod_TooManyItems 2012-09-03 17:07:48 [FINE] [ForgeModLoader] No MLProp configuration for mod_TooManyItems found or required. No file written 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_TooManyItems 2012-09-03 17:07:48 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_TooManyItems 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@1e646bfb delivered to mod mod_TooManyItems 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod FML 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod FML 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod Forge 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod Forge 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_MineVideo 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_MineVideo 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_MumbleLink 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_MumbleLink 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_521_magicalRepair 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_521_magicalRepair 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_521_superior_enchanting 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_521_superior_enchanting 2012-09-03 17:07:48 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e to mod mod_TooManyItems 2012-09-03 17:07:48 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@308bd98e delivered to mod mod_TooManyItems 2012-09-03 17:07:49 [iNFO] [sTDOUT] Infinity 20 2012-09-03 17:07:49 [iNFO] [sTDOUT] Starting up SoundSystem... 2012-09-03 17:07:49 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2012-09-03 17:07:49 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2012-09-03 17:07:49 [iNFO] [sTDOUT] OpenAL initialized. 2012-09-03 17:07:49 [iNFO] [sTDOUT] setupTexture: "/terrain.png", id: 7 2012-09-03 17:07:49 [iNFO] [sTDOUT] TextureFX registered: axh@2cd9799d, texId: 7, index: 237 2012-09-03 17:07:49 [iNFO] [sTDOUT] TextureFX registered: axk@5306989e, texId: 7, index: 205 2012-09-03 17:07:49 [iNFO] [sTDOUT] TextureFX registered: axi@66cf9bf0, texId: 7, index: 14 2012-09-03 17:07:49 [iNFO] [sTDOUT] setupTexture: "/gui/items.png", id: 8 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axd@68ffab0a, texId: 8, index: 54 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axc@6921dcac, texId: 8, index: 70 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axj@3cdfd643, texId: 7, index: 206 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axg@b6be7ee, texId: 7, index: 238 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axf@5947c01d, texId: 7, index: 31 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: axf@7595ddb5, texId: 7, index: 47 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axh@2cd9799d, texId: 7, index: 237 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDLavaFX@27443628, texId: 7, index: 237 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axk@5306989e, texId: 7, index: 205 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDWaterFX@6f3f903b, texId: 7, index: 205 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axi@66cf9bf0, texId: 7, index: 14 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDPortalFX@1005354a, texId: 7, index: 14 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axj@3cdfd643, texId: 7, index: 206 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDWaterFlowFX@7838c8c5, texId: 7, index: 206 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axg@b6be7ee, texId: 7, index: 238 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDLavaFlowFX@58053b2c, texId: 7, index: 238 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axf@5947c01d, texId: 7, index: 31 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDFlamesFX@3f6ff2d9, texId: 7, index: 31 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axf@7595ddb5, texId: 7, index: 47 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDFlamesFX@261ca3cb, texId: 7, index: 47 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axd@68ffab0a, texId: 8, index: 54 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDCompassFX@766245a4, texId: 8, index: 54 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX removed: axc@6921dcac, texId: 8, index: 70 2012-09-03 17:07:50 [iNFO] [sTDOUT] TextureFX registered: TextureHDWatchFX@4b721a26, texId: 8, index: 70 2012-09-03 17:07:50 [iNFO] [sTDOUT] Loading custom colors: /misc/grasscolor.png 2012-09-03 17:07:50 [iNFO] [sTDOUT] Loading custom colors: /misc/foliagecolor.png 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/ctm.png", id: 9 2012-09-03 17:07:50 [iNFO] [sTDOUT] MatchingCtmPng: true 2012-09-03 17:07:50 [iNFO] [sTDOUT] Registering default ConnectedTextures 2012-09-03 17:07:50 [iNFO] [sTDOUT] NaturalTextures: configuration "/natural.properties" not found 2012-09-03 17:07:50 [iNFO] [sTDOUT] Natural Textures: Using default configuration. 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod FML 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod FML 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod Forge 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod Forge 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_MineVideo 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_MineVideo 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_MumbleLink 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_MumbleLink 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_521_magicalRepair 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_521_magicalRepair 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_521_superior_enchanting 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_521_superior_enchanting 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c to mod mod_TooManyItems 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@7aa8198c delivered to mod mod_TooManyItems 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod FML 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod FML 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod Forge 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod Forge 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_MineVideo 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_MineVideo 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_MumbleLink 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_MumbleLink 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_521_magicalRepair 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_521_magicalRepair 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_521_superior_enchanting 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_521_superior_enchanting 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc to mod mod_TooManyItems 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@969cccc delivered to mod mod_TooManyItems 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod FML 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod FML 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod Forge 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod Forge 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_MineVideo 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_MineVideo 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_MineVideo 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_MumbleLink 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_MumbleLink 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_MumbleLink 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_521_magicalRepair 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_521_magicalRepair 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_521_magicalRepair 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_521_superior_enchanting 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_521_superior_enchanting 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_521_superior_enchanting 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 to mod mod_TooManyItems 2012-09-03 17:07:50 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_TooManyItems 2012-09-03 17:07:50 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@10469e8 delivered to mod mod_TooManyItems 2012-09-03 17:07:50 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 7 mods 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama0.png", id: 12 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama1.png", id: 13 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama2.png", id: 14 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama3.png", id: 15 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama4.png", id: 16 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/bg/panorama5.png", id: 17 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/title/mclogo.png", id: 18 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/gui/gui.png", id: 19 2012-09-03 17:07:50 [iNFO] [sTDOUT] setupTexture: "/gui/particles.png", id: 20 2012-09-03 17:07:50 [iNFO] [sTDOUT] ########## GL ERROR ########## 2012-09-03 17:07:50 [iNFO] [sTDOUT] @ Pre render 2012-09-03 17:07:50 [iNFO] [sTDOUT] 1281: Invalid value 2012-09-03 17:07:54 [iNFO] [sTDOUT] setupTexture: "/gui/background.png", id: 21 2012-09-03 17:08:16 [iNFO] [sTDOUT] setupTexture: "/gui/icons.png", id: 23 2012-09-03 17:08:20 [iNFO] [sTDOUT] Connecting to 127.0.0.1, 25580 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/terrain/sun.png", id: 24 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/terrain/moon_phases.png", id: 25 2012-09-03 17:08:21 [iNFO] [sTDOUT] Class not present: LightCache 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/environment/snow.png", id: 26 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/environment/rain.png", id: 27 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/chicken.png", id: 28 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/cow.png", id: 29 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/creeper.png", id: 30 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/enderman.png", id: 31 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/ozelot.png", id: 32 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/pig.png", id: 33 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/sheep.png", id: 34 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/skeleton.png", id: 35 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/slime.png", id: 36 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/spider.png", id: 37 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/squid.png", id: 38 2012-09-03 17:08:21 [iNFO] [sTDOUT] setupTexture: "/mob/wolf.png", id: 39 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/mob/zombie.png", id: 40 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/mob/char.png", id: 41 2012-09-03 17:08:22 [iNFO] [sTDERR] java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftSkins/keybounce.png 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) 2012-09-03 17:08:22 [iNFO] [sTDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:513) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1491) 2012-09-03 17:08:22 [iNFO] [sTDERR] at java.security.AccessController.doPrivileged(Native Method) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1485) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1139) 2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:33) 2012-09-03 17:08:22 [iNFO] [sTDERR] Caused by: java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftSkins/keybounce.png 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1436) 2012-09-03 17:08:22 [iNFO] [sTDERR] at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:379) 2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:26) 2012-09-03 17:08:22 [iNFO] [sTDERR] java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftCloaks/keybounce.png 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) 2012-09-03 17:08:22 [iNFO] [sTDERR] at java.lang.reflect.Constructor.newInstance(Constructor.java:513) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1491) 2012-09-03 17:08:22 [iNFO] [sTDERR] at java.security.AccessController.doPrivileged(Native Method) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1485) 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1139) 2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:33) 2012-09-03 17:08:22 [iNFO] [sTDERR] Caused by: java.io.IOException: Server returned HTTP response code: 503 for URL: http://skins.minecraft.net/MinecraftCloaks/keybounce.png 2012-09-03 17:08:22 [iNFO] [sTDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1436) 2012-09-03 17:08:22 [iNFO] [sTDERR] at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:379) 2012-09-03 17:08:22 [iNFO] [sTDERR] at auy.run(SourceFile:26) 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Initializing WMLL Stable 32 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Settings file: /Users/michael/Library/Application Support/minecraft/WMLL.properties 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Loaded options. 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Can run debug: false 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Rei's Minimap: false (false) 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] RadarBro: false 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Forge: true 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] WMLL Stable 32 initialized. 2012-09-03 17:08:22 [iNFO] [sTDOUT] MinecraftForge v4.0.0.241 Initialized 2012-09-03 17:08:22 [iNFO] [ForgeModLoader] MinecraftForge v4.0.0.241 Initialized 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/mob/sheep_fur.png", id: 42 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/particles.png", id: 43 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "%blur%/misc/glint.png", id: 44 2012-09-03 17:08:22 [iNFO] [sTDOUT] Allocated subtessellator, count: 1 2012-09-03 17:08:22 [iNFO] [sTDOUT] [WMLL] Version: 32, 32 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/item/chest.png", id: 45 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/item/largechest.png", id: 46 2012-09-03 17:08:22 [iNFO] [sTDOUT] setupTexture: "/item/sign.png", id: 47 2012-09-03 17:08:23 [iNFO] [sTDOUT] setupTexture: "/item/book.png", id: 48 2012-09-03 17:08:53 [iNFO] [sTDOUT] Stopping! 2012-09-03 17:08:54 [iNFO] [sTDOUT] SoundSystem shutting down... 2012-09-03 17:08:54 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com Quote Jeb! The sheep! The fence pens, they do nothing still leak!
cpw Posted September 4, 2012 Posted September 4, 2012 I have no idea what you're doing there. Are there any mods that are actually supposed to work server side in that list? Is superior enchanting a modloader mod for the server? How is that supposed to work? Quote
keybounce Posted September 4, 2012 Author Posted September 4, 2012 I have no idea what you're doing there. Are there any mods that are actually supposed to work server side in that list? Is superior enchanting a modloader mod for the server? How is that supposed to work? Yes, there are server-side mods in that list. From the server creation script: unzip "$JarDir"/minecraft_server-132.jar ## unzip "$ModDir"/minecraftforge-universal-4.0.0.241.zip unzip "$ModDir"/FallFix_1_3_2.zip ## unzip "$ModDir"/ImprovedLogPlacing-132.zip unzip "$ModDir"/ImprovedLog-132-noforge.zip unzip "$ModDir"/MoreVillageBiomes-V2-132-smp.zip unzip "$ModDir"/SuperiorEnchantment-132smp.zip unzip "$ModDir"/WaterPropogationFix_132.zip Of those, SuperiorEnchantment is a modloader mod. On the server side, it just drops in. On the client side, it uses modloader. ImprovedLogPlacing also talks to the client, and it is not a modloader mod. Many of the mods are client-side modloader mods, and FML (forge 4) fails to retrieve the version information or pass it to the server -- the forge 4 server reports that the client connects with no mods, and SuperiorEnchantment fails to communicate between the server and client. (I did not test improve log placement). Superior Enchantment's thread: http://www.minecraftforum.net/topic/1054768-superior-enchantment-system-minecraft-132version-1133/ Quote Jeb! The sheep! The fence pens, they do nothing still leak!
cpw Posted September 4, 2012 Posted September 4, 2012 None of those are FML mods. They will not be "negotiated" because there's nothing to negotiate. Superior enchanting works by replacing containerworkbench and containerenchant on the server side directly. It may or may not do it's own handshaking the first time one of those is accessed. I'm not sure what you're expecting to see here? None of these is a standard FML/ML server side mod. None of them will participate in that handshake because they can't. They may or may not actually work - I'm betting none of them is particularly compatible with anything we do in forge, but who knows. If they don't work, that's because they're not designed to live in a multi mod client and server environment. I can make efforts to provide ML compatibility, probably beyond the scope of ML compatibility somewhat. But I can't work miracles and make code that's not even designed for FML/ML/server side work there. Quote
keybounce Posted September 4, 2012 Author Posted September 4, 2012 None of those are FML mods. ... I'm not sure what you're expecting to see here? None of these is a standard FML/ML server side mod. What do I expect? On the client side, Superior Enchanting uses Modloader. The client and server side can see each other, talk to each other, and work happily together. In forge 3.3.8, FML identifies Superior Enchanting (and all of my client-side mods, actually), identifies the version information, forwards all the version information to the server, and the server reports every mod that I connect with. 2012-09-03 21:51:21 [iNFO] keybounce joined with: [521_magicalRepair 1.4, 521_superior_enchanting 1.10.3, Minema 1.41, NetherOres 1.2.5R1.2.3, MumbleLink 2.4.4, TooManyItems 1.2.5pre 2012-03-30, Bunyan 1.5, ExtrabiomesXL 2.2.7, TwilightForest 1.10.1, Mystcraft Mystcraft 0.9.1.02, MinecraftForge 3.3.8.152] I've got a bunch of forge and modloader mods In forge 4, FML fails to identify and report any of the mods None of them will participate in that handshake because they can't. They may or may not actually work - I'm betting none of them is particularly compatible with anything we do in forge, but who knows. The point is, it works with Risugami's ModLoader, in multiplayer. Superior Enchantment, both the 1.2.5 and the 1.3.2 version, successfully talk between client and server with Risugami's Modloader, and fail with Forge Modloader. In Forge 3, the server is told about all of the mods FML found, and their versions, even the mods that are RML mods. In Forge 4, that all fails -- mods that are client-side only RML mods with no server-side component also fail to be reported. Quote Jeb! The sheep! The fence pens, they do nothing still leak!
leftler Posted September 4, 2012 Posted September 4, 2012 The issue is that it replaces pc.class and pd.class. Anything that modifies base classes will produce unpredictable results with FML. Quote
cpw Posted September 4, 2012 Posted September 4, 2012 I'm sorry, the mods are identified on the client, right? They work on the client, right? How do you know they're not working on the server? Just because they're not identified as present on the server? The list of mods "joined" on the server is the accepted subset intersection of server and client mods. That is how FML is designed to work. The whole list is sent for possible server side rejection but is not identified as being the "joined" list because it is discarded. The only mods "reported" as being joined, are those that FML believes are important, specifically, KNOWN mods present on both client and server - they are the only mods that can control acceptance or rejection of the connection, so they're the only ones that are relevant. The 1.2.5 argument is specious, because 1.2.5 handled mod handshaking differently (it was not handled by FML). Name one server side mod in your list that is actually an FML or proper server side modloader mod, please? Then I'll take this bug report seriously. At the moment your complaint seems to be that server side superior enchanting may or may not work. Which quite honestly I'm tempted to consider "not a bug" because of the way it has to load itself on the server, and the lack of proof that it actually ISN'T working. (Stack traces? errors? anything else?) Quote
keybounce Posted September 5, 2012 Author Posted September 5, 2012 I'm sorry, the mods are identified on the client, right? They work on the client, right? How do you know they're not working on the server? Just because they're not identified as present on the server? Because when I attempt to use an enchantment table to make use of Superior Enchanting, it tells me that there is no client side mod installed. Using RML, it works. Using Forge/FML, it fails. === Cpw, you have seemed so far to dislike my use of scripting to set up my environments. Consider that this gives you a 100% repeatable build for my issue. Consider that this gives you the perfect ability to test anything. I have identified something that works in RML, fails in FML. I have given you a reproduce-able build environment. Name one server side mod in your list that is actually an FML or proper server side modloader mod, please? Then I'll take this bug report seriously. None are FML mods. None of those mods even needs forge. I have other mods, not being used in that test, that are mod folder FML mods with mcmod.info files But this is a mod that works in RML that does not work in FML. And your website here says that you want to know about that class of mod. === What is really annoying? I have some server-side mods that I want to use that use forge but have no client-side component, do not do anything to alter the client-side. (Example: Ruins. Generates structures in the map on the server-side). I actually tested using RML on the client, and forge/FML on the server. Again, no FML/forge mod on the client at all, and none needed. The forge server refused to let the RML client connect. So, moving forward, forge is basically killing RML, and FML fails to accomplish what RML does. Quote Jeb! The sheep! The fence pens, they do nothing still leak!
rivvest Posted September 5, 2012 Posted September 5, 2012 Replicated this problem in 4.0.0.243, but was fixed in .247. I was able to reverse enchant and all, both single player and over LAN. Edit: Also confirmed working with .247 in server config. Quote I'm fixing the stupid villagers. http://www.minecraftforum.net/topic/1588460-
cpw Posted September 5, 2012 Posted September 5, 2012 Yes, this was missing chat handling. An utterly ridiculous, but probably one of the few viable non-FML/ML, ways of doing s->c comms. Thanks for the bug report. @Keybounce I want bug reports, not elaborate scripting environments. I want "mod x doesn't work with FML U.V.W" not "here's a thousand line essay on why you're a bad person because my ancient ways are going to have to change by a few lines." Links to broken mods, with client or server log files are good. Overelaborate criticisms that seem to go nowhere are bad. Here's how it could have gone down: '"SuperiorEnchanting is failing to establish client server comms". It has a non-modloader server side <here> that looks like it's complaining (error message here). No stack traces, it just can't "find" itself.' Instead of all that above. Quote
Recommended Posts
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.