Posted October 9, 201213 yr Hi, new to Forge and i've been converting my mod to it as it seems to be the best option to use. However, I have hit a roadblock with the server. The second I try to start it, I get errors about classes not being found, and the pattern seems to be client-only classes: 2012-10-08 22:10:17 [iNFO] [sTDERR] java.lang.NoClassDefFoundError: net/minecraft/src/WorldClient Just for testing, I removed WorldClient's SideOnly line, and the next class that came up was ItemRenderer. Neither of these classes exist, let alone should be called, on the server, so I am a bit confused. Here is the ForgeModLoader-server-0 log: 2012-10-08 22:10:10 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.1.35.394 for Minecraft client:1.3.2, server:1.3.2 loading 2012-10-08 22:10:12 [iNFO] [sTDOUT] 195 recipes 2012-10-08 22:10:12 [iNFO] [sTDOUT] 27 achievements 2012-10-08 22:10:15 [iNFO] [sTDERR] 2012-10-08 22:10:14 [iNFO] Starting minecraft server version 1.3.2 2012-10-08 22:10:15 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization 2012-10-08 22:10:15 [iNFO] [sTDOUT] MinecraftForge v4.2.5.303 Initialized 2012-10-08 22:10:15 [iNFO] [ForgeModLoader] MinecraftForge v4.2.5.303 Initialized 2012-10-08 22:10:15 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\eclipse\Minecraft\bin, examining for mod candidates 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\bin\jinput.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\bin\lwjgl_util.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\bin\lwjgl.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\bin\minecraft.jar, examining for mod candidates 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\lib\argo-2.25.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\lib\asm-all-4.0.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\lib\guava-12.0.1.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\lib\argo-2.25.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\lib\guava-12.0.1.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\lib\asm-all-4.0.jar 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2012-10-08 22:10:15 [iNFO] [ForgeModLoader] Searching C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\mods for mods 2012-10-08 22:10:15 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2012-10-08 22:10:15 [FINE] [ForgeModLoader] No mcmod.info file found in directory bin 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package ibxm 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package net 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package net.minecraft 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server 2012-10-08 22:10:15 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src.groxmods 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src.groxmods.netherbetter 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Identified a BaseMod type mod net.minecraft.src.mod_ModHelper 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Identified a class net.minecraft.src.mod_ModHelperExample following modloader naming convention but not directly a BaseMod or currently seen subclass 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Identified a class net.minecraft.src.mod_NetherBetter following modloader naming convention but not directly a BaseMod or currently seen subclass 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src.modhelper 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Found a basemod net.minecraft.src.modhelper.BaseModHelper of non-standard naming format 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.item 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.bc 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.pkcs 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.engines 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.io 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.modes 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.params 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.config 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.util 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce.provider 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.util 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package paulscode 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs 2012-10-08 22:10:16 [iNFO] [ForgeModLoader] Attempting to reparse the mod container bin 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2012-10-08 22:10:16 [FINE] [ForgeModLoader] No mcmod.info file found in directory bin 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package ibxm 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src.groxmods 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src.groxmods.netherbetter 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Identified a BaseMod type mod net.minecraft.src.mod_ModHelper 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Identified a BaseMod type mod net.minecraft.src.mod_ModHelperExample 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Identified a BaseMod type mod net.minecraft.src.mod_NetherBetter 2012-10-08 22:10:16 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src.modhelper 2012-10-08 22:10:16 [FINE] [ForgeModLoader] Found a basemod net.minecraft.src.modhelper.BaseModHelper of non-standard naming format 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.item 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.bc 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.asn1.pkcs 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.engines 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.io 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.modes 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.crypto.params 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.config 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jcajce.provider.util 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.jce.provider 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package org.bouncycastle.util 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package paulscode 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound 2012-10-08 22:10:17 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2012-10-08 22:10:17 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2012-10-08 22:10:17 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 5 mods to load 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Received a system property request '' 2012-10-08 22:10:17 [FINE] [ForgeModLoader] System property request managing the state of 0 mods 2012-10-08 22:10:17 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Activating mod FML 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Activating mod Forge 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Enabling mod mod_ModHelper 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Activating mod mod_ModHelper 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Enabling mod mod_ModHelperExample 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Activating mod mod_ModHelperExample 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Enabling mod mod_NetherBetter 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Activating mod mod_NetherBetter 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied 2012-10-08 22:10:17 [FINE] [ForgeModLoader] All mod requirements are satisfied 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Sorting mods into an ordered list 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Mod sorting completed successfully 2012-10-08 22:10:17 [FINE] [ForgeModLoader] Mod sorting data: 2012-10-08 22:10:17 [FINE] [ForgeModLoader] mod_ModHelper(mod_ModHelper:Not available): bin () 2012-10-08 22:10:17 [FINE] [ForgeModLoader] mod_ModHelperExample(mod_ModHelperExample:Not available): bin () 2012-10-08 22:10:17 [FINE] [ForgeModLoader] mod_NetherBetter(mod_NetherBetter:Not available): bin () 2012-10-08 22:10:17 [FINER] [ForgeModLoader] Posting state event FMLConstructionEvent to mod FML 2012-10-08 22:10:17 [FINER] [ForgeModLoader] State event FMLConstructionEvent delivered to mod FML 2012-10-08 22:10:17 [FINER] [ForgeModLoader] Posting state event FMLConstructionEvent to mod Forge 2012-10-08 22:10:17 [FINER] [ForgeModLoader] State event FMLConstructionEvent delivered to mod Forge 2012-10-08 22:10:17 [FINER] [ForgeModLoader] Posting state event FMLConstructionEvent to mod mod_ModHelper 2012-10-08 22:10:17 [iNFO] [sTDERR] java.lang.NoClassDefFoundError: net/minecraft/src/WorldClient 2012-10-08 22:10:17 [iNFO] [sTDERR] at java.lang.Class.forName0(Native Method) 2012-10-08 22:10:17 [iNFO] [sTDERR] at java.lang.Class.forName(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.common.ModClassLoader.loadBaseModClass(ModClassLoader.java:87) 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.common.modloader.ModLoaderModContainer.constructMod(ModLoaderModContainer.java:488) 2012-10-08 22:10:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-10-08 22:10:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:124) 2012-10-08 22:10:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2012-10-08 22:10:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) 2012-10-08 22:10:17 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268) 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81) 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:466) 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:80) 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:340) 2012-10-08 22:10:17 [iNFO] [sTDERR] at net.minecraft.src.DedicatedServer.startServer(DedicatedServer.java:49) 2012-10-08 22:10:17 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:433) 2012-10-08 22:10:17 [iNFO] [sTDERR] at net.minecraft.src.ThreadServerApplication.run(ThreadServerApplication.java:18) 2012-10-08 22:10:17 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: net.minecraft.src.WorldClient 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:125) 2012-10-08 22:10:17 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source) 2012-10-08 22:10:17 [iNFO] [sTDERR] ... 30 more 2012-10-08 22:10:17 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException 2012-10-08 22:10:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:119) 2012-10-08 22:10:17 [iNFO] [sTDERR] ... 32 more 2012-10-08 22:10:17 [iNFO] [sTDERR] 2012-10-08 22:10:17 [sEVERE] Encountered an unexpected exception NoClassDefFoundError java.lang.NoClassDefFoundError: net/minecraft/src/WorldClient at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at cpw.mods.fml.common.ModClassLoader.loadBaseModClass(ModClassLoader.java:87) at cpw.mods.fml.common.modloader.ModLoaderModContainer.constructMod(ModLoaderModContainer.java:488) 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:124) 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.loadMods(Loader.java:466) at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:80) at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:340) at net.minecraft.src.DedicatedServer.startServer(DedicatedServer.java:49) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:433) at net.minecraft.src.ThreadServerApplication.run(ThreadServerApplication.java:18) Caused by: java.lang.ClassNotFoundException: net.minecraft.src.WorldClient at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:125) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 30 more Caused by: java.lang.NullPointerException at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:119) ... 32 more 2012-10-08 22:10:17 [iNFO] [sTDERR] 2012-10-08 22:10:17 [sEVERE] This crash report has been saved to: C:\Users\Charles\Desktop\Minecraft\MCP mc 1.3.2_Forge\jars\.\crash-reports\crash-2012-10-08_22.10.17-server.txt 2012-10-08 22:12:03 [iNFO] [sTDERR] 2012-10-08 22:12:03 [iNFO] Stopping server 2012-10-08 22:12:03 [iNFO] [sTDERR] 2012-10-08 22:12:03 [iNFO] Saving worlds 2012-10-08 22:12:03 [iNFO] [sTDERR] java.lang.NullPointerException 2012-10-08 22:12:03 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.saveAllWorlds(MinecraftServer.java:336) 2012-10-08 22:12:03 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:384) 2012-10-08 22:12:03 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:516) 2012-10-08 22:12:03 [iNFO] [sTDERR] at net.minecraft.src.ThreadServerApplication.run(ThreadServerApplication.java:18) 2012-10-08 22:12:03 [iNFO] [sTDERR] 2012-10-08 22:12:03 [iNFO] Stopping server 2012-10-08 22:12:03 [iNFO] [sTDERR] 2012-10-08 22:12:03 [iNFO] Saving worlds 2012-10-08 22:12:03 [iNFO] [sTDERR] Exception in thread "Thread-6" java.lang.NullPointerException 2012-10-08 22:12:03 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.saveAllWorlds(MinecraftServer.java:336) 2012-10-08 22:12:03 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:384) 2012-10-08 22:12:03 [iNFO] [sTDERR] at net.minecraft.src.ThreadDedicatedServer.run(ThreadDedicatedServer.java:18)
October 9, 201213 yr Something in your code has a hard reference to client side only classes, fix it. From the looks of it it looks like your main mod class has the hard reference. I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.