Solved Annoying NoClassDefFoundError..

Discussion in 'Plugin Development' started by kreashenz, Mar 18, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    kreashenz

    I get an error now, ( just happened, after many days of it working ) of the NoClassDefFoundError. I haven't changed my code at all, only deleted the previous plugins folder, and exported a new one, and its doing this.. Full stack trace ( of command )
    Code:
    [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'a' in plugin MinecraftRP v0.2
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:46)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:186)
    at org.bukkit.craftbukkit.v1_5_R1.CraftServer.dispatchCommand(CraftServer.java:514)
    at net.minecraft.server.v1_5_R1.PlayerConnection.handleCommand(PlayerConnection.java:967)
    at net.minecraft.server.v1_5_R1.PlayerConnection.chat(PlayerConnection.java:885)
    at net.minecraft.server.v1_5_R1.PlayerConnection.a(PlayerConnection.java:840)
    at net.minecraft.server.v1_5_R1.Packet3Chat.handle(Packet3Chat.java:44)
    at net.minecraft.server.v1_5_R1.NetworkManager.b(NetworkManager.java:292)
    at net.minecraft.server.v1_5_R1.PlayerConnection.d(PlayerConnection.java:113)
    at net.minecraft.server.v1_5_R1.ServerConnection.b(SourceFile:35)
    at net.minecraft.server.v1_5_R1.DedicatedServerConnection.b(SourceFile:30)
    at net.minecraft.server.v1_5_R1.MinecraftServer.r(MinecraftServer.java:580)
    at net.minecraft.server.v1_5_R1.DedicatedServer.r(DedicatedServer.java:225)
    at net.minecraft.server.v1_5_R1.MinecraftServer.q(MinecraftServer.java:476)
    at net.minecraft.server.v1_5_R1.MinecraftServer.run(MinecraftServer.java:409)
    at net.minecraft.server.v1_5_R1.ThreadServerApplication.run(SourceFile:573)
    Caused by: java.lang.NoClassDefFoundError: Could not initialize class me.kreashenz.minecraftrp.Utilities.Functions
    at me.kreashenz.minecraftrp.Commands.AdminChat.onCommand(AdminChat.java:34)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:44)
    ... 15 more
    It's caused by the Functions class, not the AdminChat class, so I won't post that.
    Functions class:
    Code:java
    1. package me.kreashenz.minecraftrp.Utilities;
    2.  
    3. import java.io.File;
    4.  
    5. import org.bukkit.configuration.file.FileConfiguration;
    6. import org.bukkit.configuration.file.YamlConfiguration;
    7.  
    8. import me.kreashenz.minecraftrp.Utilities.ChatFormat.ColourUtils;
    9.  
    10. public class Functions {
    11.  
    12. private static File file = new File( "plugins/MinecraftRP/config.yml" );
    13. private static FileConfiguration config = YamlConfiguration.loadConfiguration(file);
    14. public static String prefix = ColourUtils.format(config.getString("messages.prefix"));
    15. public static String noPerm = ColourUtils.format(config.getString("messages.noPermission"));
    16. public static String NEA = ColourUtils.format(config.getString("messages.notEnoughArgs"));
    17. public static boolean isInt(String sInt)
    18. {
    19. try
    20. {
    21. Integer.parseInt(sInt);
    22. }
    23. {
    24. return false;
    25. }
    26. return true;
    27. }
    28.  
    29. public static boolean isDouble(String string) {
    30. try{
    31. Double.parseDouble(string);
    32. return false;
    33. }
    34. return true;
    35. }
    36.  
    37. public static String getPrefix(){
    38. return prefix;
    39. }
    40.  
    41. public static String noPerm(){
    42. return noPerm;
    43. }
    44.  
    45. public static String NEA(){
    46. return NEA;
    47. }
    48. }
     
  2. Offline

    Stealth2800

    kreashenz I believe the issue you're having is due to the class not exporting when you create the .jar. I would double check to make sure that class is being exported properly when you create the jar.
     
  3. Offline

    psychic94

    NoClassDefFoundError simply means that a needed class is in neither the native library nor the running jar. There is no problem with the code.

    For future reference, if it ends with "Error" instead of "Exception", the problem likely isn't the code, but the package/jar itself. Another example is UnsupportedClassVersionError (or something like that). Like NoClassDefFoundError, there is no problem with the code what-so-ever. In this case, the problem is the user has a version of java that is older than the program theyre trying to run.
     
  4. Offline

    kreashenz

    psychic94 The user being me? How can you tell if the problem is that? How do I change this, I got no idea.. Lol..
     
  5. Offline

    beastman3226

    I may take a wild guess and say that you:
    1) Registered your commands in the onEnable then forgot to put them into the yaml

    What's at line 34? What method are you calling?
     
  6. kreashenz
    Is "UnsupportedClassVersionError" your current error ? No, he told you what your current error means, read more carefuly :)

    Open your jar with an archive program and see if the class is actually there.
     
    Ne0nx3r0 likes this.
  7. Offline

    kreashenz

    beastman3226 The functions.java is not a command, it holds the functions that I can use throughout my plugin.. Here's the AdminChat.java, and I set the alias via plugin.yml to /a ..
    Code:java
    1. package me.kreashenz.minecraftrp.Commands;
    2.  
    3. import me.kreashenz.minecraftrp.MCRP;
    4. import me.kreashenz.minecraftrp.Utilities.ChatFormat.ColourUtils;
    5. import me.kreashenz.minecraftrp.Utilities.Functions;
    6.  
    7. import org.bukkit.Bukkit;
    8. import org.bukkit.command.Command;
    9. import org.bukkit.command.CommandExecutor;
    10. import org.bukkit.command.CommandSender;
    11. import org.bukkit.entity.Player;
    12.  
    13. public class AdminChat implements CommandExecutor {
    14.  
    15. public MCRP plugin;
    16. public AdminChat(MCRP plugin){
    17. this.plugin = plugin;
    18. }
    19. public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
    20. if(cmd.getName().equalsIgnoreCase("adminchat")){
    21. if(sender instanceof Player){
    22. if(sender.hasPermission("mrcp.adminchat")){
    23. String chatMsg = "";
    24. for (int i = 0; i < args.length; i++) {
    25. chatMsg = chatMsg + args + ' ';
    26. }
    27. for(Player t : Bukkit.getOnlinePlayers()){
    28. if (t.hasPermission("mcrp.adminchat")){
    29. String player = sender.getName().replace("%player%", sender.getName());
    30. t.sendMessage(Functions.getPrefix() + player + " §b" + ColourUtils.format(chatMsg));
    31. }
    32. }
    33. }
    34. } else sender.sendMessage(Functions.noPerm());
    35. } else sender.sendMessage(Functions.noPerm());
    36. return true;
    37. }
    38. }

    Digi It is there, I exported and everything..[​IMG]
     
  8. Offline

    ZeusAllMighty11

    Off-topic but damnn you must love using statics. lol
     
  9. Offline

    Ne0nx3r0

    kreashenz Bottom line: if it says the class wasn't found, that means it was there are compile time, but missing at run time.

    Your troubleshooting should focus on verifying that what's in your IDE/source matches what's in your compiled jar on your server. This includes your bukkit.jar/other plugin references.
     
  10. Offline

    Ne0nx3r0

    That's a nuance of statics I wasn't aware of.
     
  11. Offline

    beastman3226

    I knew it wasn't a command and I have a similar object in nearly all of my projects. What I'm asking is what are you calling.
     
  12. Offline

    kreashenz

    OK, solved it self.. I have no idea why the hell it was doing this, after MANY reloads/restarts..
     
  13. Most likely because of 'reload', if you have a class that is not loaded then you re-export the jar and reload, next time you're attempting to use it will trigger that error.

    You could fix this easily by loading all of your classes in the main class by calling a method from that class, an empty method.
     
  14. Offline

    TheKnower

    Love Some Help! Thx -iGamer

    ---- Minecraft Crash Report ----
    // Uh... Did I do that?

    Time: 4/11/14 8:56 PM
    Description: Exception in server tick loop

    java.lang.NoClassDefFoundError: net/minecraft/client/Minecraft
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
    at java.lang.Class.getDeclaredMethods(Unknown Source)
    at cpw.mods.fml.common.FMLModContainer.gatherAnnotations(FMLModContainer.java:328)
    at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:517)
    at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112)
    at cpw.mods.fml.common.Loader.loadMods(Loader.java:511)
    at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:99)
    at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:350)
    at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:92)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:630)
    at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
    Caused by: java.lang.ClassNotFoundException: net.minecraft.client.Minecraft
    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:186)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    ... 31 more
    Caused by: java.lang.RuntimeException: Attempted to load class atv for invalid side SERVER
    at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:51)
    at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:274)
    at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:172)
    ... 33 more


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- System Details --
    Details:
    Minecraft Version: 1.6.4
    Operating System: Windows 8 (amd64) version 6.2
    Java Version: 1.7.0_51, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 1444549832 bytes (1377 MB) / 1916796928 bytes (1828 MB) up to 4772069376 bytes (4551 MB)
    JVM Flags: 2 total; -Xms1048M -Xmx5120M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Suspicious classes: FML and Forge are installed
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    CraftBukkit Information:
    Running:
    Failed to handle CraftCrashReport:
    java.lang.NullPointerException
    at org.bukkit.Bukkit.getName(Bukkit.java:72)
    at org.bukkit.craftbukkit.v1_6_R3.CraftCrashReport.call(CraftCrashReport.java:19)
    at net.minecraft.crash.CrashReportCategory.func_71500_a(CrashReportCategory.java:106)
    at net.minecraft.crash.CrashReport.func_71504_g(CrashReport.java:58)
    at net.minecraft.crash.CrashReport.<init>(CrashReport.java:40)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:689)
    at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

    FML: MCP v8.11 FML v6.4.49.965 Minecraft Forge 9.11.1.965 152 mods loaded, 152 mods active
    mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed
    FML{6.4.49.965} [Forge Mod Loader] (Server.jar) Unloaded->Constructed
    Forge{9.11.1.965} [Minecraft Forge] (Server.jar) Unloaded->Constructed
    CodeChickenCore{0.9.0.7} [CodeChicken Core] (minecraft.jar) Unloaded->Constructed
    denLib{3.2.6} [denLib] (minecraft.jar) Unloaded->Constructed
    OpenModsCore{0.4} [OpenModsCore] (minecraft.jar) Unloaded->Constructed
    PowerCrystalsCore{1.1.8} [PowerCrystals Core] (PowerCrystalsCore-1.1.8-9.jar) Unloaded->Constructed
    TConstruct-Preloader{0.0.1} [Tinkers Corestruct] (minecraft.jar) Unloaded->Constructed
    BuildCraft|Core{4.2.2} [BuildCraft] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed
    UniversalElectricity{3.1.0} [Universal Electricity] (0_Universal-Electricity-3.1.0.67-core.jar) Unloaded->Constructed
    CalclaviaCore{1.1.1} [Calclavia] (0_Calclavia Core-1.1.1.205-main.jar) Unloaded->Constructed
    DC1{2.4.0.12} [DukeCore] (0_DukeCore-v2.4.0.12.jar) Unloaded->Constructed
    KeithyUtils{1.2} [Keithy Utils] (0_KeithyUtils-1.6.4-1.2.16.jar) Unloaded->Constructed
    KerberosLib{1.0.5} [Kerberos's MOD Library] (0_KerberosLib_v1.0.5_forge.zip) Unloaded->Constructed
    AS1{2.4.5.21} [Arcane Scrolls] ([1.6.4] ArcaneScrolls v2.4.5.21.jar) Unloaded->Constructed
    SC0_SpaceCore{0.6.2} [SpaceCore] ([1.6.4] SpaceCore 0.6.2.jar) Unloaded->Constructed
    BuildCraft|Factory{4.2.2} [BC Factory] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed
    BuildCraft|Transport{4.2.2} [BC Transport] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed
    BuildCraft|Silicon{4.2.2} [BC Silicon] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed
    APUnofficial{2.6.0} [Additional Pipes] (AdditionalPipes2.6.0-BC4.2.1.jar) Unloaded->Constructed
    Agriculture{1.0.0} [Agriculture] (Agriculture-1.6.4-1.2.13WWM5.jar) Unloaded->Constructed
    arsmagica2{1.1.2b} [Ars Magica 2] (AM2_1.1.2b.zip) Unloaded->Constructed
    Aquaculture{1.2.4} [Aquaculture] (Aquaculture_1.2.4.zip) Unloaded->Constructed
    Artifacts{0.12.3} [Artifacts] (Artifacts-162-0123.zip) Unloaded->Constructed
    Autoutils{1.0.1} [Autoutils] (autoutils-1.6.4-1.0.1.jar) Unloaded->Constructed
    BuildCraft|Builders{4.2.2} [BC Builders] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed
    BuildCraft|Energy{4.2.2} [BC Energy] (buildcraft-A-1.6.4-4.2.2.jar) Unloaded->Constructed
    BCTools{1.4-a-15} [Buildcraft Tools] (bcTools-v1.4-a-15.jar) Unloaded->Constructed
    bdlib{1.2.0.28} [BD Lib] (bdlib-mc164-1.2.0.28.jar) Unloaded->Constructed
    BiblioCraft{1.5.5} [BiblioCraft] (BiblioCraft[v1.5.5].zip) Unloaded->Constructed
    Natura{2.1.14} [Natura] (Natura_mc1.6.X_2.1.14.jar) Unloaded->Constructed
    BiomesOPlenty{1.2.1} [Biomes O' Plenty] (BiomesOPlenty-universal-1.6.4-1.2.1.434.jar) Unloaded->Constructed
    BiblioWoodsBoP{1.3} [BiblioWoods Biomes O'Plenty Edition] (BiblioWoods[BiomesOPlenty][v1.3].zip) Unloaded->Constructed
    Forestry{2.3.1.1} [Forestry for Minecraft] (forestry-A-2.3.1.1.jar) Unloaded->Constructed
    BiblioWoodsForestry{1.3} [BiblioWoods Forestry Edition] (BiblioWoods[Forestry][v1.3].zip) Unloaded->Constructed
    BiblioWoodsNatura{1.1} [BiblioWoods Natura Edition] (BiblioWoods[Natura][v1.1].zip) Unloaded->Constructed
    SC0_BiomeWand{1.1.5} [Biome Wand] (BiomeWand-1.1.5.zip) Unloaded->Constructed
    AWWayofTime{v0.7.2} [Blood Magic: Alchemical Wizardry] (BloodMagic-v0.7.2b.zip) Unloaded->Constructed
    Thaumcraft{4.0.5b} [Thaumcraft] (Thaumcraft4.0.5b.zip) Unloaded->Constructed
    Railcraft{8.4.0.0} [Railcraft] (Railcraft_1.6.4-8.4.0.0.jar) Unloaded->Constructed
    buildcraftAddon{1.6.4_v0.3.3} [BuildCraftAddon] (BuildCraftAddon_v1.6.4_v0.3.3.zip) Unloaded->Constructed
    CarpentersBlocks{2.0.4} [Carpenter's Blocks] (Carpenter's_Blocks-v2.0.4-MC 1.6+WWM5.zip) Unloaded->Constructed
    CoFHCore{2.0.0.2} [CoFH Core] (CoFHCore-2.0.0.2.jar) Unloaded->Constructed
    CoFHLoot{2.0.0.2} [CoFH Loot] (CoFHCore-2.0.0.2.jar) Unloaded->Constructed
    CoFHMasquerade{2.0.0.2} [CoFH Masquerade] (CoFHCore-2.0.0.2.jar) Unloaded->Constructed
    CoFHSocial{2.0.0.2} [CoFH Social] (CoFHCore-2.0.0.2.jar) Unloaded->Constructed
    CoFHWorld{2.0.0.2} [CoFH World] (CoFHCore-2.0.0.2.jar) Unloaded->Constructed
    ComputerCraft{1.58} [ComputerCraft] (ComputerCraft1.58.zip) Unloaded->Constructed
    CCTurtle{1.58} [ComputerCraft Turtles] (ComputerCraft1.58.zip) Unloaded->Constructed
    coralmod{1.6.4r2} [CoralReef Mod] (CoralMod-1.6.4-r2.zip) Unloaded->Constructed
    CowboyHat{1.0} [Cowboy Hat] (CowboyHat-1.0.zip) Unloaded->Constructed
    emashercore{1.2.3.3} [Emasher Resource] (EmasherResource-1.2.3.3.zip) Unloaded->Constructed
    emasherdefense{1.2.1.1} [Defense] (Defense-1.2.1.1.zip) Unloaded->Constructed
    DenPipes-Forestry{1.1.8} [DenPipes-Forestry] (DenPipes-Forestry-1.6.4-1.1.8.jar) Unloaded->Constructed
    DenPipes-Emerald{1.1.6} [DenPipes-Emerald] (DenPipes-Emerald-1.6.4-1.1.6.jar) Unloaded->Constructed
    xreliquary{1.1.2} [Xeno's Reliquary] (Reliquary-1.1.2b.jar) Unloaded->Constructed
    DenPipes{2.1.18} [DenPipes] (DenPipes-1.6.4-2.1.18.jar) Unloaded->Constructed
    numina{0.1.2-55} [Numina] (Numina-1.6.2-0.1.2-55.jar) Unloaded->Constructed
    powersuits{0.10.0-91} [MachineMuse's Modular Powersuits] (ModularPowersuits-1.6.4-0.10.0-91.jar) Unloaded->Constructed
    NetherOres{1.6.2R2.2.1} [Nether Ores] (NetherOres-2.2.1-14.jar) Unloaded->Constructed
    ForgeMultipart{1.0.0.219} [Forge Multipart] (ForgeMultipart-universal-1.6.4-1.0.0.219.jar) Unloaded->Constructed
    ThermalExpansion{3.0.0.2} [Thermal Expansion] (ThermalExpansion-3.0.0.2.jar) Unloaded->Constructed
    DragonAPI{release} [DragonAPI] (DragonAPI 1.6 V19b.zip) Unloaded->Constructed
    DynamicLights{1.2.8} [Dynamic Lights] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_onFire{1.0.3} [Dynamic Lights on burning] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_creepers{1.0.3} [Dynamic Lights on Creepers] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_dropItems{1.0.5} [Dynamic Lights on ItemEntities] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_entityClasses{1.0.0} [Dynamic Lights on specified Entities] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_mobEquipment{1.0.3} [Dynamic Lights on Mob Equipment] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_flameArrows{1.0.0} [Dynamic Lights on Flame enchanted Arrows] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_otherPlayers{1.0.5} [Dynamic Lights Other Player Light] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    DynamicLights_thePlayer{1.0.9} [Dynamic Lights Player Light] (DynamicLights_1.6.4-1.2.8.jar) Unloaded
    easycrafting{1.1.6} [Easy Crafting] (EasyCrafting-1.6.4-1.1.6WWM5.zip) Unloaded
    eng_toolbox{1.1.8.3} [Engineer's Toolbox] (EngineersToolbox-1.1.8.3.zip) Unloaded
    EnviroMine{1.1.3} [EnviroMine] (EnviroMine-v1.1.3.zip) Unloaded
    Metallurgy3Core{3.2.3} [Metallurgy 3 Core] (Metallurgy-1.6.4-3.3.2-WWM5.jar) Unloaded
    Metallurgy3Base{3.2.3} [Metallurgy 3 Base] (Metallurgy-1.6.4-3.3.2-WWM5.jar) Unloaded
    TConstruct{1.6.X_1.5.3dev} [Tinkers' Construct] (TConstruct_mc1.6.4_1.5.3.jar) Unloaded
    ExtraTiC{0.7.6} [ExtraTiC] (ExtraTiC-1.6.4-0.7.6.jar) Unloaded
    ExtraUtilities{1.0.3a} [Extra Utilities] (extrautils-1.0.3a.zip) Unloaded
    FinndusFillies{1.0.0} [Finndus Fillies] (FinndusFillies-1.6.2-universal-1.0.0.7.jar) Unloaded
    gascraft{2.0.4.3} [GasCraft] (GasCraft-2.0.4.3.zip) Unloaded
    GateCopy{3.1.4} [GateCopy] (GateCopy-1.6.4-3.1.4.jar) Unloaded
    gendustry{1.0.4.43} [GenDustry] (gendustry-mc164-1.0.4.43.jar) Unloaded
    GregsLighting{1.9.1} [Greg's Lighting] (GregsLighting-1.9.1-mc1.6.4.jar) Unloaded
    GunCus{1.6.4 BETA v2} [Gun Customization] (GunCus-1.6.4-BETA-v2.zip) Unloaded
    GunCusExplosives{1.6.2 BETA v1.1} [Gun Customization Explosives] (GunCus-1.6.4-BETA-v2.zip) Unloaded
    GunCusOfficialGuns{1.6.2 BETA v4} [Gun Customization Official Guns] (GunCus-1.6.4-BETA-v2.zip) Unloaded
    Hats{2.1.4} [Hats] (Hats2.1.4.zip) Unloaded
    HatStand{2.1.0} [HatStand] (HatStand2.1.0.zip) Unloaded
    pamrandomplants{1.0} [Pam's RandomPlants] (Pam's-Random-Plants-1.6.4.zip) Unloaded
    HungerOverhaul{1.6.X-2l} [Hunger Overhaul] (hungeroverhaul-1.6.X-2l-build3.zip) Unloaded
    iChunUtil{2.4.0} [iChunUtil] (iChunUtil2.4.0.zip) Unloaded
    ImmibisCore{57.1.94} [Immibis Core] (immibis-core-57.1.94.jar) Unloaded
    ImmibisPeripherals{57.0.2} [Immibis's Peripherals] (immibis-peripherals-57.0.2.jar) Unloaded
    InfiniTubes{57.0.5} [InfiniTubes] (infinitubes-57.0.5.jar) Unloaded
    inventorytweaks{1.56} [Inventory Tweaks] (InventoryTweaks-MC1.6.2-1.56-b77.jar) Unloaded
    IronChest{5.4.1.702} [Iron Chest] (ironchest-universal-1.6.4-5.4.1.702.zip) Unloaded
    JABBA{1.1.1a} [JABBA] (JABBA_1.1.1a.zip) Unloaded
    jammyfurniture{4.5} [Jammy Furniture Mod] (Jammy_Furniture_Mod_V4.5.zip) Unloaded
    SGCraft{0.1.0build82} [Delta-SGCraft-Reloaded] (LanteaCraft-0.1.0-forge9.11.1.933-snapshot-82.jar) Unloaded
    LavaMonsters{2.2} [Lava Monsters] (LavaMonsters_2.2_for_MC_1.6.2.zip) Unloaded
    LightBridgesAndDoors{0.1.7} [kris91268's Light Bridges and Doors] (Light_bridges_and_doors-V1.7WWM5.zip) Unloaded
    magicalcrops{3.1.6} [Magical Crops] (magical_crops_1.6.4_3.1.6.zip) Unloaded
    ThaumicTinkerer{2.1-74} [Thaumic Tinkerer] (ThaumicTinkerer-2.1-74.jar) Unloaded
    MagicBees{2.1.11} [Magic Bees] (magicbees-2.1.11.jar) Unloaded
    MapWriter{2.0} [MapWriter] (mapwriter-2.0.16.zip) Unloaded
    Stucuk_MCICraft{1.0.4} [MCICraft] (mcicraft_core-1.0.4_MC-1.6.4_WIP_16_02_2014.jar) Unloaded
    Stucuk_MCICraft_Machines{1.0.4} [MCICraft Machines] (mcicraft_machines-1.0.4_MC-1.6.4_WIP_16_02_2014.jar) Unloaded
    Stucuk_MCICraft_Redstone{1.0.4} [MCICraft Redstone] (mcicraft_redstone-1.0.4_MC-1.6.4_WIP_16_02_2014.jar) Unloaded
    Mekanism{6.0.2} [Mekanism] (Mekanism-6.0.2.20.jar) Unloaded
    Metallurgy3Machines{3.2.3} [Metallurgy 3 Machines] (Metallurgy-1.6.4-3.3.2-WWM5.jar) Unloaded
    Metallurgy3Vanilla{3.2.3} [Metallurgy 3 Vanilla] (Metallurgy-1.6.4-3.3.2-WWM5.jar) Unloaded
    minegicka{1.4.3} [Minegicka 2] (Minegicka-II-1.4.3_MC1.6.4.zip) Unloaded
    MiscPeripherals{3.3} [MiscPeripherals] (miscperipherals-3.4b2.zip) Unloaded
    MobProperties{0.0} [Mob Properties] (MobProperties_0.0_for_MC_1.6.2.zip) Unloaded
    MFFS{3.6.2} [Modular Force Field System] (Modular-Force-Field-System-3.6.2.43-core.jar) Unloaded
    nohero_morehealth{4.5} [More Health Forge] (MoreHealthEnhanced_5.0_Universal.zip) Unloaded
    OpenMods{0.4} [OpenMods] (OpenModsLib-0.4b.jar) Unloaded
    OpenPeripheralCore{0.3.1} [OpenPeripheralCore] (OpenPeripheralCore-0.3.1.jar) Unloaded
    OpenPeripheral{0.1.1} [OpenPeripheralAddons] (OpenPeripheralAddons-0.1.1.jar) Unloaded
    OpenBlocks{1.2.5} [OpenBlocks] (OpenBlocks-1.2.5.jar) Unloaded
    SimpleRecipes{1.9} [Pam's Simple Recipes] (Pam's-SimpleRecipes-1.6.4.zip) Unloaded
    ParticleBox{1.6.4_0} [ParticleBox] (ParticleBox1.6.4_0.zip) Unloaded
    particlephysics{0.1.1} [Particle Physics] (ParticlePhysics-1.1.jar) Unloaded
    PluginsforForestry{3.2.30} [PluginsforForestry] (PluginsforForestry-1.6.4-3.2.30.jar) Unloaded
    PneumaticCraft{1.0.6} [PneumaticCraft] (PneumaticCraft-1.0.7.zip) Unloaded
    rcdusts{0.0.6d} [Rock Crusher Metal Dusts Add-On] (rcDusts-0.0.6d-WWM5.zip) Unloaded
    RedIO{1.1} [RedIO] (RedIO-CC1.57-v1.1-WWM5.zip) Unloaded
    Redstone Arsenal{1.0.0.0} [Redstone Arsenal] (RedstoneArsenal-1.0.0.0.jar) Unloaded
    RedStoneHandGuns{1.6.4 v2} [RedStoneGuns] (RedstoneHandguns-1.6.4-v2-WWM5b.zip) Unloaded
    RopesPlus{1.5.3} [Ropes+] (RopePlus_v1.5.3-v1.6.4.zip) Unloaded
    RotaryCraft{Gamma} [RotaryCraft] (RotaryCraft 1.6 V19b.zip) Unloaded
    secretroomsmod{4.6.2} [The SecretRoomsMod] (SecretRoomsMod-universal-1.6.4-4.6.2.323.jar) Unloaded
    Shatter{2.0.2} [Shatter] (Shatter2.0.2.zip) Unloaded
    StargateTech2{0.6.5-Alpha} [StargateTech 2] (StargateTech2-Alpha-0-6-5-MC164-Forge965.jar) Unloaded
    Sync{2.1.1} [Sync] (Sync2.1.1.zip) Unloaded
    TMechworks{19.d4b8fa0} [Tinkers' Mechworks] (TMechworks_mc1.6.4_0.1.4.2.jar) Unloaded
    Translocator{1.1.0.13} [Translocator] (Translocator-1.1.0.13.jar) Unloaded
    Tubestuff{57.1.3} [Tubestuff] (tubestuff-57.1.3.jar) Unloaded
    TwilightForest{1.20.3} [The Twilight Forest] (twilightforest-1.20.3.jar) Unloaded
    UndergroundBiomes{0.4.3} [Underground Biomes] (UndergroundBiomes_1.6.x-0.4.2c.zip) Unloaded
    Vending{1.1.1} [Vending] (vending-1.6.4-1.1.1.jar) Unloaded
    witchery{0.14.0} [Witchery] (Witchery_0-14-0_164.zip) Unloaded
    WR-CBE|Core{1.4.0.6} [WR-CBE Core] (WR-CBE-1.4.0.6.jar) Unloaded
    WR-CBE|Addons{1.4.0.6} [WR-CBE Addons] (WR-CBE-1.4.0.6.jar) Unloaded
    WR-CBE|Logic{1.4.0.6} [WR-CBE Logic] (WR-CBE-1.4.0.6.jar) Unloaded
    xact{0.4.3} [XACT Mod] (XACT-v0.4.3.jar) Unloaded
    Chisel{1.5.0} [Chisel] (zchisel-1.6.4-1.5.0fix-WWM5.jar) Unloaded
    McMultipart{1.0.0.219} [Minecraft Multipart Plugin] (ForgeMultipart-universal-1.6.4-1.0.0.219.jar) Unloaded
    ThaumcraftMobAspects{1.6.X-1d} [Thaumcraft Mob Aspects] (thaumcraftmobaspects-1.6.X-1e-build2-WWM5.zip) Unloaded
    ForgeMicroblock{1.0.0.219} [Forge Microblocks] (ForgeMultipart-universal-1.6.4-1.0.0.219.jar) Unloaded
    Profiler Position: N/A (disabled)
    Is Modded: Definitely; Server brand changed to 'mcpc,craftbukkit,fml,forge'
    Type: Dedicated Server (map_server.txt)
     
Thread Status:
Not open for further replies.

Share This Page