Jump to content

Server Crash with Custom GUI


#ÖCT

Recommended Posts

I have a problem, the client works perfectly, but the server crashs.

The Server returns no crashreports.

 

Here my GUI Class:

Spoiler

package oect.lwaltens.luckyblockoect.guis;

import java.awt.Color;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.apache.logging.log4j.core.jmx.Server;

import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.gui.GuiTextField;
import net.minecraft.client.gui.inventory.GuiInventory;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.client.resources.I18n;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import oect.lwaltens.luckyblockoect.LuckyBlockOect;
import oect.lwaltens.luckyblockoect.registeries.LuckyBlockOect_Items;



public class gui_shop extends GuiScreen {
	
	
	



	public static final ResourceLocation textureGUI = new ResourceLocation("luckyblockoect:textures/gui/shop.png");
    public static final ResourceLocation textureButton = new ResourceLocation("luckyblockoect:textures/gui/shop_button.png");
    GuiButton button_1;
    GuiButton button_2;
    int button_1_int = 1;
    int button_2_int = 2;
    


    @Override
    public void initGui() {
    	
        int centerX = (width / 2) - 175 / 2;
        int centerY = (height / 2) - 228 / 2; 
        
        this.buttonList.add(button_1 = new GuiButton(1, centerX+9, centerY+50-2, 20, 20, ""));
        this.buttonList.add(button_2 = new GuiButton(2, centerX+9, centerY+75-2, 20, 20, ""));

        super.initGui();
    }

    @Override
    public void drawScreen(int mouseX, int mouseY, float partialTicks) {
        
    	drawDefaultBackground();
    	//EntityPlayer player = (EntityPlayer) mc.getRenderViewEntity();
        Minecraft.getMinecraft().renderEngine.bindTexture(textureGUI);
        int centerX = (width / 2) - 175 / 2;
        int centerY = (height / 2) - 228 / 2; 
        GlStateManager.pushMatrix();
        {
            GlStateManager.enableAlpha();
            GlStateManager.enableBlend();
            GlStateManager.color(1, 1, 1, 1);
            Minecraft.getMinecraft().renderEngine.bindTexture(textureGUI);
            drawTexturedModalRect(centerX, centerY, 0, 0, 175, 228);
        }
        GlStateManager.popMatrix();
        GlStateManager.pushMatrix();
        {
            GlStateManager.translate((width / 2) - fontRenderer.getStringWidth("Shop"), centerY + 10, 0);
            GlStateManager.scale(2, 2, 2);
            fontRenderer.drawString("Shop", 0, 0, 0x6028ff);
        }
        GlStateManager.popMatrix();
        
        
       
        button_1.drawButton(mc, mouseX, mouseY, partialTicks);
        button_2.drawButton(mc, mouseX, mouseY, partialTicks);
        
        Minecraft.getMinecraft().renderEngine.bindTexture(textureButton);
        GlStateManager.enableAlpha();
        GlStateManager.enableBlend();
        GlStateManager.color(1, 1, 1, 1);
        drawTexturedModalRect(centerX+9, centerY+50-2, 0, 0, 20, 20);
        drawTexturedModalRect(centerX+9, centerY+75-2, 0, 0, 20, 20);
	
        GlStateManager.pushMatrix();
        {
            mc.getRenderItem().renderItemAndEffectIntoGUI(new ItemStack(Items.DIAMOND), centerX + 10, centerY+207);
           // GlStateManager.translate((centerX + 40) - fontRenderer.getStringWidth(""+DiamondCounter(player)), centerY+210, 0);
            GlStateManager.scale(1.5, 1.5, 1.5);
    		//fontRenderer.drawString(""+DiamondCounter(player), 0, 0, Color.RED.getRGB());
        }
        GlStateManager.popMatrix();
        
        mc.getRenderItem().renderItemAndEffectIntoGUI(new ItemStack(LuckyBlockOect_Items.blendgrenate), centerX+10, centerY+50);
        mc.getRenderItem().renderItemAndEffectIntoGUI(new ItemStack(LuckyBlockOect_Items.antigravitygrenate), centerX+10, centerY+75);
        
        




        
        

    }







/*    @Override
    protected void actionPerformed(GuiButton button) throws IOException {
    	EntityPlayer player = (EntityPlayer) mc.getRenderViewEntity();
    	ItemStack stack_1 = new ItemStack(LuckyBlockOect_Items.blendgrenate);
    	ItemStack stack_2 = new ItemStack(LuckyBlockOect_Items.antigravitygrenate);
    	
        switch (button.id) {
            case 1: 
            	if (DiamondCounter(player) > 4) 
            	{
            		player.addItemStackToInventory(stack_1);
            		DiamondStack(player, 5);
            	}
            	break;
            	
            case 2:
               	if (DiamondCounter(player) > 4) 
            	{
            		player.addItemStackToInventory(stack_2);
            		DiamondStack(player, 5);
            	}
            	break;
        }
        super.actionPerformed(button);
    }
*/

    @Override
    public boolean doesGuiPauseGame() {
        return false;
    }
    
    
    /** zählt die Diamanten im Inventar des übergeben Spielers **/
 /*   public int DiamondCounter (EntityPlayer player) {
		
	    int count0 = 0;
		for (int slot = 0; slot < player.inventory.getSizeInventory(); slot++)
		{
			ItemStack stack = player.inventory.getStackInSlot(slot);

			if (stack != null && stack.getItem().equals(Items.DIAMOND))
			{
				count0 = count0+stack.getCount();
			}
		}
		int total0 = count0;
		
		return total0; 	
    }
    
    /** zählt die Diamanten im Inventar des übergeben Spielers **/
/*    public void DiamondStack (EntityPlayer player, int amount) {
		player.inventory.clearMatchingItems(Items.DIAMOND, -1, amount, null);
		
    }
*/


}

 

I wanna to open the GUI by a Command:

 

Minecraft.getMinecraft().displayGuiScreen(new gui_shop());

 

Here the logs of the Server.

Spoiler

MINECRAFT LOG

 

[18:44:42] [Server thread/INFO]: Starting minecraft server version 1.12
[18:44:46] [Server thread/INFO]: Loading properties
[18:44:46] [Server thread/INFO]: Default game type: SURVIVAL
[18:44:46] [Server thread/INFO]: Generating keypair
[18:44:46] [Server thread/INFO]: Starting Minecraft server on *:25565
[18:44:46] [Server thread/INFO]: Using default channel type
[18:44:47] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[18:44:47] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[18:44:47] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[18:44:47] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[18:44:47] [Server thread/INFO]: Preparing level "world"
[18:44:49] [Server thread/INFO]: Loaded 488 advancements
[18:44:49] [Server thread/INFO]: Preparing start region for level 0
[18:44:50] [Server thread/INFO]: Preparing spawn area: 2%
[18:44:51] [Server thread/INFO]: Preparing spawn area: 88%
[18:44:51] [Server thread/INFO]: Done (4.026s)! For help, type "help" or "?"
[18:44:51] [Server thread/INFO]: Stopping server
[18:44:51] [Server thread/INFO]: Saving players
[18:44:51] [Server thread/INFO]: Saving worlds
[18:44:51] [Server thread/INFO]: Saving chunks for level 'world'/overworld
[18:44:51] [Server thread/INFO]: Saving chunks for level 'world'/the_nether
[18:44:51] [Server thread/INFO]: Saving chunks for level 'world'/the_end
[18:44:51] [Server Shutdown Thread/INFO]: Stopping server
 

 

FML-LOG

 

[18:44:35] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[18:44:35] [main/INFO] [FML/]: Forge Mod Loader version 14.21.1.2387 for Minecraft 1.12 loading
[18:44:35] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_151, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_151
[18:44:35] [main/DEBUG] [FML/]: Java classpath at launch is C:\Program Files\Java\jre1.8.0_151\lib\resources.jar;C:\Program Files\Java\jre1.8.0_151\lib\rt.jar;C:\Program Files\Java\jre1.8.0_151\lib\jsse.jar;C:\Program Files\Java\jre1.8.0_151\lib\jce.jar;C:\Program Files\Java\jre1.8.0_151\lib\charsets.jar;C:\Program Files\Java\jre1.8.0_151\lib\jfr.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\cldrdata.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\dnsns.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\jaccess.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\jfxrt.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\localedata.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\nashorn.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\sunec.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\sunmscapi.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jre1.8.0_151\lib\ext\zipfs.jar;D:\Mods\LuckyBlockOectMurder 1.12\bin;C:\Users\lwaltens\.gradle\caches\minecraft\net\minecraftforge\forge\1.12-14.21.1.2387\snapshot\20170624\forgeSrc-1.12-14.21.1.2387.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.1\f7be08ec23c21485b9b5a1cf1654c2ec8c58168d\jsr305-3.0.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.1\aef610b34a1be37fa851825f12372b78424d8903\patchy-1.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j-core-mojang\51.2\63d216a9311cca6be337c1e458e587f99d382b84\icu4j-core-mojang-51.2.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.3\cdd846cfc4e0f7eefafc02c0f5dce32b9303aa2a\jopt-simple-5.0.3.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.9.Final\97860965d6a0a6b98e7f569f3f966727b8db75\netty-all-4.1.9.Final.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.5\6c6c702c89bfff3cd9e80b04d668c5e190d588c6\commons-lang3-3.5.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\1.5.25\9834cdf236c22e84b946bba989e2f94ef5897c3c\authlib-1.5.25.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.mojang\realms\1.10.17\e6a623bf93a230b503b0e3ae18c196fcd5aa3299\realms-1.10.17.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\7.1.0\9835253257524c1be7ab50c057aa2d418fb72082\fastutil-7.1.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.8.1\e801d13612e22cad62a3f4f3fe7fdbe6334a8e72\log4j-api-2.8.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.8.1\4ac28ff2f1ddf05dae3043a190451e8c46b73c31\log4j-core-2.8.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.10.3\48fd510879dff266c3815947de66e3d4809f8668\text2speech-1.10.3.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.minecraft\launchwrapper\1.12\111e7bea9c968cdb3d06ef4632bf7ff0824d0f36\launchwrapper-1.12.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\jline\jline\2.13\2d9530d0a25daffaffda7c35037b046b627bb171\jline-2.13.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-debug-all\5.2\3354e11e2b34215f06dab629ab88e06aca477c19\asm-debug-all-5.2.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.typesafe.akka\akka-actor_2.11\2.3.3\ed62e9fc709ca0f2ff1a3220daa8b70a2870078e\akka-actor_2.11-2.3.3.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.typesafe\config\1.2.1\f771f71fdae3df231bcd54d5ca2d57f0bf93f467\config-1.2.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors-migration_2.11\1.1.0\dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f\scala-actors-migration_2.11-1.1.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-compiler\2.11.1\56ea2e6c025e0821f28d73ca271218b8dd04926a\scala-compiler-2.11.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-library_2.11\1.0.2\e517c53a7e9acd6b1668c5a35eccbaa3bab9aac\scala-continuations-library_2.11-1.0.2.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang.plugins\scala-continuations-plugin_2.11.1\1.0.2\f361a3283452c57fa30c1ee69448995de23c60f7\scala-continuations-plugin_2.11.1-1.0.2.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-library\2.11.1\e11da23da3eabab9f4777b9220e60d44c1aab6a\scala-library-2.11.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-parser-combinators_2.11\1.0.1\f05d7345bf5a58924f2837c6c1f4d73a938e1ff0\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-reflect\2.11.1\6580347e61cc7f8e802941e7fde40fa83b8badeb\scala-reflect-2.11.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-swing_2.11\1.0.1\b1cdd92bd47b1e1837139c1c53020e86bb9112ae\scala-swing_2.11-1.0.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang.modules\scala-xml_2.11\1.0.2\820fbca7e524b530fdadc594c39d49a21ea0337e\scala-xml_2.11-1.0.2.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\lzma\lzma\0.0.1\521616dc7487b42bef0e803bd2fa3faf668101d7\lzma-0.0.1.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.sf.trove4j\trove4j\3.0.3\42ccaf4761f0dfdfa805c9e340d99a755907e2dd\trove4j-3.0.3.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.paulscode\codecjorbis\20101023\c73b5636faf089d9f00e8732a829577de25237ee\codecjorbis-20101023.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.paulscode\codecwav\20101023\12f031cfe88fef5c1dd36c563c0a3a69bd7261da\codecwav-20101023.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.paulscode\libraryjavasound\20101123\5c5e304366f75f9eaa2e8cca546a1fb6109348b3\libraryjavasound-20101123.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.paulscode\librarylwjglopenal\20100824\73e80d0794c39665aec3f62eee88ca91676674ef\librarylwjglopenal-20100824.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\com.paulscode\soundsystem\20120107\419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6\soundsystem-20120107.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl\2.9.4-nightly-20150209\697517568c68e78ae0b4544145af031c81082dfe\lwjgl-2.9.4-nightly-20150209.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl_util\2.9.4-nightly-20150209\d51a7c040a721d13efdfbd34f8b257b2df882ad0\lwjgl_util-2.9.4-nightly-20150209.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\java3d\vecmath\1.5.2\79846ba34cbd89e2422d74d53752f993dcc2ccaf\vecmath-1.5.2.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.0.0\6ef160c3133a78de015830860197602ca1c855d3\java-objc-bridge-1.0.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.11\655c643309c2f45a56a747fda70e3fadf57e9f11\jansi-1.11.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.scala-lang\scala-actors\2.11.0\8ccfb6541de179bb1c4d45cf414acee069b7f78b\scala-actors-2.11.0.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0\lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\931074f46c795d2f7b30ed6395df5715cfd7675b\lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar;C:\Users\lwaltens\.gradle\caches\modules-2\files-2.1\org.lwjgl.lwjgl\lwjgl-platform\2.9.4-nightly-20150209\bcab850f8f487c3f4c4dbabde778bb82bd1a40ed\lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar;C:\Users\lwaltens\.gradle\caches\minecraft\deobfedDeps\compileDummy.jar;C:\Users\lwaltens\.gradle\caches\minecraft\deobfedDeps\providedDummy.jar;C:\Users\lwaltens\.gradle\caches\minecraft\net\minecraftforge\forge\1.12-14.21.1.2387\start
[18:44:35] [main/DEBUG] [FML/]: Java library path at launch is C:\Program Files\Java\jre1.8.0_151\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files/Java/jre1.8.0_151/bin/server;C:/Program Files/Java/jre1.8.0_151/bin;C:/Program Files/Java/jre1.8.0_151/lib/amd64;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\Git\cmd;C:\Program Files\WorldPainter;C:\Users\lwaltens\AppData\Local\Microsoft\WindowsApps;;C:\eclipse;;.
[18:44:35] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[18:44:35] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[18:44:35] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[18:44:35] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[18:44:35] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[18:44:35] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[18:44:35] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[18:44:35] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to D:\Mods\LuckyBlockOectMurder 1.12\run\.
[18:44:35] [main/DEBUG] [FML/]: Discovering coremods
[18:44:35] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[18:44:35] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[18:44:35] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[18:44:35] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:44:35] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:44:35] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[18:44:35] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:44:35] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:44:35] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:44:35] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\} class transformers
[18:44:35] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[18:44:35] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[18:44:35] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[18:44:35] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[18:44:35] [main/DEBUG] [FML/]: Injection complete
[18:44:35] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin \{net.minecraftforge.fml.relauncher.FMLCorePlugin\}
[18:44:35] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[18:44:35] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[18:44:35] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[18:44:35] [main/DEBUG] [FML/]: Loading deobfuscation resource C:\Users\lwaltens\.gradle\caches\minecraft\de\oceanlabs\mcp\mcp_snapshot\20170624\1.12\srgs\srg-mcp.srg with 36059 records
[18:44:36] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[18:44:36] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[18:44:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:44:36] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\} class transformers
[18:44:36] [main/DEBUG] [FML/]: Injection complete
[18:44:36] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin \{net.minecraftforge.classloading.FMLForgePlugin\}
[18:44:36] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[18:44:36] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[18:44:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:44:36] [main/DEBUG] [FML/]: Loaded 206 rules from AccessTransformer config file forge_at.cfg
[18:44:36] [main/DEBUG] [FML/]: Validating minecraft
[18:44:36] [main/DEBUG] [FML/]: Minecraft validated, launching...
[18:44:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[18:44:36] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:44:36] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:44:37] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
[18:44:41] [main/DEBUG] [FML/]: Creating vanilla freeze snapshot
[18:44:41] [main/DEBUG] [FML/]: Vanilla freeze snapshot created
 

Where is the Problem?

Thank you for help!

Link to comment
Share on other sites

If you want to make a Server-Side GUI I don't think you can use anything from Minecraft's built-in GUI Utilities, you will likely need to build one from scratch.

Edit: I am an idiot who did not read the whole thread

Edited by DaemonUmbra

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I solved it! The recipe was not being readed, basically; All I had to do is set the Items in the Json as Arrays Before: "item": { "minecraft:blue_dye" } After:  "item": [ { "minecraft:blue_dye" } ] That's all, I added compatibility with JEI to verify and everything works, thanks anyways!
    • iguanatweakstconstruct is conflicting with codechickencore - make a test without iguanatweakstconstruct
    • The game crashed whilst rendering item Error: java.lang.IncompatibleClassChangeError: Expected static method codechicken.lib.render.CCRenderState.reset()V              ---- Minecraft Crash Report ---- // You should try our sister game, Minceraft! Time: 10/5/24 7:20 PM Description: Rendering item java.lang.IncompatibleClassChangeError: Expected static method codechicken.lib.render.CCRenderState.reset()V     at iguanaman.iguanatweakstconstruct.modcompat.fmp.IguanaItemSawRenderer.renderItem(IguanaItemSawRenderer.java:50)     at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)     at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563)     at codechicken.nei.guihook.GuiContainerManager.drawSlotItem(GuiContainerManager.java:489)     at net.minecraft.client.gui.inventory.GuiContainer.func_146977_a(GuiContainer.java:270)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:99)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:38)     at net.minecraft.client.gui.inventory.GuiContainerCreative.func_73863_a(GuiContainerCreative.java:638)     at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1400)     at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1001)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)     at net.minecraft.client.main.Main.main(SourceFile:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace:     at iguanaman.iguanatweakstconstruct.modcompat.fmp.IguanaItemSawRenderer.renderItem(IguanaItemSawRenderer.java:50)     at net.minecraftforge.client.ForgeHooksClient.renderInventoryItem(ForgeHooksClient.java:183)     at net.minecraft.client.renderer.entity.RenderItem.func_82406_b(RenderItem.java:563) -- Item being rendered -- Details:     Item Type: codechicken.microblock.ItemSaw@228151e5     Item Aux: 0     Item NBT: null     Item Foil: false Stacktrace:     at codechicken.nei.guihook.GuiContainerManager.drawSlotItem(GuiContainerManager.java:489)     at net.minecraft.client.gui.inventory.GuiContainer.func_146977_a(GuiContainer.java:270)     at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:99)     at net.minecraft.client.renderer.InventoryEffectRenderer.func_73863_a(InventoryEffectRenderer.java:38)     at net.minecraft.client.gui.inventory.GuiContainerCreative.func_73863_a(GuiContainerCreative.java:638)     at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1400) -- Screen render details -- Details:     Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative     Mouse location: Scaled: (276, 312). Absolute: (553, 335)     Screen size: Scaled: (640, 480). Absolute: (1280, 960). Scale factor of 2 -- Affected level -- Details:     Level name: MpServer     All players: 1 total; [GCEntityClientPlayerMP['Mateus_ruby5'/67878, l='MpServer', x=-1029.13, y=72.33, z=1554.00]]     Chunk stats: MultiplayerChunkCache: 234, 243     Level seed: 0     Level generator: ID 04 - BIOMESOP, ver 0. Features enabled: false     Level generator options:      Level spawn location: World: (-552,64,916), Chunk: (at 8,4,4 in -35,57; contains blocks -560,0,912 to -545,255,927), Region: (-2,1; contains chunks -64,32 to -33,63, blocks -1024,0,512 to -513,255,1023)     Level time: 21063 game time, 21063 day time     Level dimension: 0     Level storage version: 0x00000 - Unknown?     Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)     Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false     Forced entities: 607 total; [MoCEntityDuck['Duck'/126977, l='MpServer', x=-1079.50, y=65.00, z=1571.50], MoCEntityDeer['Deer'/114691, l='MpServer', x=-915.50, y=72.00, z=1460.50], EntityChicken['Chicken'/126979, l='MpServer', x=-1034.47, y=66.00, z=1561.44], EntityChicken['Chicken'/126981, l='MpServer', x=-1036.47, y=65.00, z=1570.47], MoCEntitySnake['Snake'/114695, l='MpServer', x=-912.00, y=73.00, z=1452.50], EntityChicken['Chicken'/126983, l='MpServer', x=-1032.59, y=65.00, z=1570.50], MoCEntityBigCat['BigCat'/114697, l='MpServer', x=-1126.50, y=64.00, z=1457.50], EntityChicken['Chicken'/126985, l='MpServer', x=-1037.22, y=65.00, z=1571.69], MoCEntityTurkey['Turkey'/126987, l='MpServer', x=-1063.31, y=64.00, z=1561.91], MoCEntityTurkey['Turkey'/126989, l='MpServer', x=-1061.50, y=64.00, z=1563.50], EntityItem['item.item.dyePowder.black'/135182, l='MpServer', x=-1091.94, y=17.13, z=1527.47], VengeanceSpirit['Vengeance Spirit'/135180, l='MpServer', x=-1089.44, y=38.00, z=1526.50], EntityItem['item.item.ItemSquid'/135184, l='MpServer', x=-1089.97, y=33.13, z=1528.28], MoCEntityMouse['Mouse'/114706, l='MpServer', x=-1031.91, y=74.00, z=1457.41], MoCEntitySnake['Snake'/126994, l='MpServer', x=-1060.34, y=65.00, z=1564.16], EntitySkeleton['Skeleton'/124949, l='MpServer', x=-1068.50, y=66.00, z=1492.50], EntityItem['item.tile.mushroom11'/133142, l='MpServer', x=-1057.94, y=8.13, z=1574.72], MoCEntityBear['Bear'/114708, l='MpServer', x=-1036.81, y=74.00, z=1439.81], EntityZombie['Zombie'/124951, l='MpServer', x=-1074.50, y=66.00, z=1494.50], EntitySpider['Spider'/137236, l='MpServer', x=-2.19, y=-61.31, z=16.85], MoCEntitySnake['Snake'/127000, l='MpServer', x=-1058.16, y=65.00, z=1566.22], EntitySkeleton['Skeleton'/124955, l='MpServer', x=-1066.50, y=25.00, z=1524.50], VengeanceSpirit['Vengeance Spirit'/137244, l='MpServer', x=-990.28, y=12.00, z=1534.72], MoCEntityOstrich['Ostrich'/127013, l='MpServer', x=-990.09, y=69.00, z=1578.72], MoCEntityMouse['Mouse'/127015, l='MpServer', x=-983.50, y=70.00, z=1569.50], EntitySheep['Sheep'/127017, l='MpServer', x=-969.22, y=69.00, z=1566.22], EntitySheep['Sheep'/127019, l='MpServer', x=-970.25, y=69.00, z=1567.84], MoCEntityBear['Bear'/114733, l='MpServer', x=-1023.81, y=72.00, z=1463.06], EntitySheep['Sheep'/127021, l='MpServer', x=-972.88, y=69.00, z=1566.47], EntitySheep['Sheep'/127023, l='MpServer', x=-971.69, y=69.00, z=1567.94], MoCEntityTurkey['Turkey'/114744, l='MpServer', x=-1049.50, y=72.00, z=1462.88], MoCEntityTurkey['Turkey'/114746, l='MpServer', x=-1055.44, y=71.00, z=1464.66], EntityZombie['Zombie'/137280, l='MpServer', x=9.86, y=-60.66, z=16.34], MoCEntityHorse['WildHorse'/127057, l='MpServer', x=-932.81, y=63.00, z=1569.50], MoCEntityHorse['WildHorse'/127061, l='MpServer', x=-934.50, y=63.00, z=1569.50], MoCEntityHorse['WildHorse'/127069, l='MpServer', x=-934.50, y=63.00, z=1572.50], EntityItem['item.item.string'/131166, l='MpServer', x=-1028.69, y=20.13, z=1614.72], EntityItem['item.item.string'/131167, l='MpServer', x=-1038.88, y=19.13, z=1582.22], MoCEntityHorse['WildHorse'/127073, l='MpServer', x=-932.50, y=63.00, z=1571.50], EntityItem['item.item.string'/131168, l='MpServer', x=-1038.88, y=19.13, z=1578.13], EntityLavaMonster['Lava Monster'/143460, l='MpServer', x=-1106.78, y=3.05, z=1565.50], MoCEntityBunny['Bunny'/127078, l='MpServer', x=-928.50, y=64.00, z=1567.50], MoCEntityBunny['Bunny'/127080, l='MpServer', x=-931.03, y=64.00, z=1569.28], MoCEntityBunny['Bunny'/127082, l='MpServer', x=-932.50, y=63.00, z=1566.50], EntityZombie['Zombie'/137328, l='MpServer', x=3.89, y=-58.22, z=25.04], EntityLavaMonster['Lava Monster'/137352, l='MpServer', x=-1102.50, y=3.30, z=1579.94], EntityItem['item.tile.gravel'/131219, l='MpServer', x=-1027.13, y=8.13, z=1597.13], EntityZombie['Zombie'/137363, l='MpServer', x=9.90, y=-57.90, z=24.85], EntityItem['item.tile.gravel'/131235, l='MpServer', x=-1041.94, y=15.13, z=1566.88], EntityZombie['Zombie'/137414, l='MpServer', x=15.96, y=-56.92, z=24.26], EntitySkeleton['Skeleton'/137412, l='MpServer', x=29.05, y=-56.84, z=3.10], EntityLavaMonster['Lava Monster'/139494, l='MpServer', x=-1072.50, y=60.18, z=1558.03], EntityItem['item.tile.gravel'/131301, l='MpServer', x=-993.16, y=20.13, z=1570.09], MoCEntityBoar['Boar'/119018, l='MpServer', x=-902.50, y=68.00, z=1497.50], MoCEntityBoar['Boar'/119020, l='MpServer', x=-903.50, y=67.00, z=1496.50], MoCEntityElephant['Elephant'/135410, l='MpServer', x=-980.44, y=62.17, z=1646.16], EntityHorse['Horse'/129264, l='MpServer', x=-1109.50, y=64.00, z=1594.50], MoCEntityBunny['Bunny'/129266, l='MpServer', x=-1094.50, y=64.00, z=1599.50], EntitySpider['Spider'/135414, l='MpServer', x=-12.53, y=-47.53, z=40.79], MoCEntityBunny['Bunny'/129268, l='MpServer', x=-1089.56, y=64.00, z=1600.63], MoCEntityBunny['Bunny'/129270, l='MpServer', x=-1095.50, y=64.00, z=1602.50], EntityItem['item.item.string'/131327, l='MpServer', x=-1043.34, y=18.13, z=1584.88], EntityItem['item.tile.actuallyadditions.blockBlackLotus'/127230, l='MpServer', x=-1088.41, y=65.13, z=1566.53], MoCEntityMouse['Mouse'/129281, l='MpServer', x=-1072.72, y=63.00, z=1600.50], MoCEntityMouse['Mouse'/129283, l='MpServer', x=-1073.19, y=63.00, z=1600.50], EntityItem['item.item.gysahl_seeds'/141568, l='MpServer', x=-969.25, y=65.13, z=1527.13], EntityCow['Cow'/129285, l='MpServer', x=-1064.50, y=63.00, z=1596.50], EntityCow['Cow'/129287, l='MpServer', x=-1067.78, y=63.00, z=1597.50], EntityCow['Cow'/129289, l='MpServer', x=-1074.03, y=65.00, z=1588.09], MoCEntityBird['Bird'/135434, l='MpServer', x=-941.50, y=63.00, z=1642.50], EntityCow['Cow'/129291, l='MpServer', x=-1066.19, y=63.00, z=1597.50], MoCEntitySnake['Snake'/135432, l='MpServer', x=-951.78, y=68.00, z=1641.47], MoCEntityMole['Mole'/129293, l='MpServer', x=-1075.50, y=64.00, z=1594.50], MoCEntityBird['Bird'/135438, l='MpServer', x=-943.22, y=65.00, z=1647.47], MoCEntityBird['Bird'/135436, l='MpServer', x=-942.50, y=64.00, z=1645.50], MoCEntityCricket['Cricket'/131350, l='MpServer', x=-1085.50, y=71.00, z=1472.50], MoCEntityButterfly['ButterFly'/131354, l='MpServer', x=-1082.50, y=63.00, z=1601.50], MoCEntityButterfly['ButterFly'/131352, l='MpServer', x=-1081.50, y=63.00, z=1605.50], EntityItem['item.tile.stonebrick'/127261, l='MpServer', x=-1083.94, y=32.13, z=1565.81], MoCEntityDragonfly['DragonFly'/131356, l='MpServer', x=-986.59, y=67.00, z=1510.44], EntityItem['item.tile.stonebrick'/127263, l='MpServer', x=-1085.53, y=31.13, z=1561.94], EntityItem['item.tile.stonebrick'/127262, l='MpServer', x=-1083.13, y=38.13, z=1560.91], EntityItem['item.tile.stonebrick'/127264, l='MpServer', x=-1084.19, y=31.13, z=1564.78], MoCEntitySnail['Snail'/131360, l='MpServer', x=-980.50, y=67.00, z=1514.50], EntityItem['item.tile.stonebrick'/127266, l='MpServer', x=-1083.13, y=32.13, z=1565.97], MoCEntityGoat['Goat'/129322, l='MpServer', x=-1021.59, y=64.00, z=1603.66], MoCEntityBear['Bear'/129328, l='MpServer', x=-1016.50, y=64.00, z=1603.50], EntityItem['item.item.feather'/137523, l='MpServer', x=-969.84, y=67.13, z=1498.31], VengeanceSpirit['Vengeance Spirit'/137521, l='MpServer', x=-970.84, y=66.00, z=1495.34], EntityItem['item.item.chickenRaw'/137524, l='MpServer', x=-970.75, y=67.13, z=1498.63], MoCEntityTurkey['Turkey'/135484, l='MpServer', x=-912.47, y=64.00, z=1644.22], EntityBat['Bat'/131392, l='MpServer', x=-958.53, y=30.00, z=1574.66], MoCEntityFirefly['Firefly'/131398, l='MpServer', x=-1070.53, y=64.00, z=1508.47], MoCEntityFirefly['Firefly'/131396, l='MpServer', x=-1071.50, y=64.00, z=1506.50], MoCEntityFirefly['Firefly'/131402, l='MpServer', x=-1070.34, y=64.00, z=1508.56], MoCEntityFirefly['Firefly'/131400, l='MpServer', x=-1066.50, y=64.00, z=1508.50], MoCEntityFox['Fox'/115020, l='MpServer', x=-1135.50, y=62.31, z=1462.50], MoCEntityTurkey['Turkey'/129358, l='MpServer', x=-984.25, y=67.00, z=1589.56], MoCEntityTurkey['Turkey'/129360, l='MpServer', x=-985.38, y=67.00, z=1591.09], MoCEntityEnt['Ent'/129362, l='MpServer', x=-995.22, y=66.00, z=1600.25], MoCEntityFirefly['Firefly'/131412, l='MpServer', x=-914.72, y=68.00, z=1559.44], MoCEntitySnake['Snake'/129366, l='MpServer', x=-999.50, y=66.00, z=1592.50], EntityHorse['Horse'/129383, l='MpServer', x=-967.81, y=70.00, z=1601.00], EntitySkeleton['Skeleton'/135525, l='MpServer', x=6.48, y=-45.53, z=44.11], EntitySquid['Squid'/131434, l='MpServer', x=-1096.25, y=31.00, z=1524.06], EntityItem['item.tile.gravel'/141675, l='MpServer', x=-1026.47, y=20.13, z=1613.50], EntityHorse['Horse'/129387, l='MpServer', x=-972.50, y=69.00, z=1596.50], EntityHorse['Horse'/129389, l='MpServer', x=-974.50, y=69.00, z=1595.50], EntityHorse['Horse'/129391, l='MpServer', x=-972.50, y=69.00, z=1593.50], MoCEntityBoar['Boar'/129393, l='MpServer', x=-975.78, y=68.00, z=1592.50], MoCEntityBoar['Boar'/129395, l='MpServer', x=-974.47, y=68.00, z=1592.50], EntityZombie['Zombie'/135547, l='MpServer', x=-1046.41, y=67.00, z=1476.94], EntityLavaMonster['Lava Monster'/125313, l='MpServer', x=-1022.50, y=29.24, z=1527.50], EntitySpider['Spider'/135557, l='MpServer', x=-1040.78, y=66.00, z=1487.13], EntityCreeper['Creeper'/127384, l='MpServer', x=-1067.50, y=20.00, z=1531.50], EntityCreeper['Creeper'/127386, l='MpServer', x=-1065.50, y=20.00, z=1531.50], EntityHuman['sanandreasMC'/135615, l='MpServer', x=-955.50, y=30.00, z=1567.50], MoCEntityOgre['Ogre'/135619, l='MpServer', x=-959.38, y=30.00, z=1565.22], EntityHuman['powercrystals'/135617, l='MpServer', x=-956.66, y=30.00, z=1567.34], EntityHuman['amadornes'/135621, l='MpServer', x=-958.50, y=30.00, z=1561.50], EntityLavaMonster['Lava Monster'/137669, l='MpServer', x=-1064.50, y=60.38, z=1559.50], MoCEntityBoar['Boar'/129490, l='MpServer', x=-1038.50, y=63.00, z=1609.47], MoCEntityMouse['Mouse'/129492, l='MpServer', x=-1044.91, y=63.00, z=1610.53], EntitySkeleton['Skeleton'/137684, l='MpServer', x=-29.81, y=-43.84, z=35.67], EntityChicken['Chicken'/129512, l='MpServer', x=-1054.50, y=63.00, z=1611.50], EntityChicken['Chicken'/129518, l='MpServer', x=-1054.50, y=63.00, z=1610.50], EntityChicken['Chicken'/129520, l='MpServer', x=-1053.50, y=63.00, z=1610.50], EntityChicken['Chicken'/129522, l='MpServer', x=-1051.50, y=63.00, z=1610.50], MoCEntityTurkey['Turkey'/129534, l='MpServer', x=-955.50, y=69.00, z=1595.63], MoCEntityGoat['Goat'/129542, l='MpServer', x=-952.94, y=69.00, z=1601.41], MoCEntityGoat['Goat'/129544, l='MpServer', x=-952.88, y=69.00, z=1605.66], MoCEntityGoat['Goat'/129546, l='MpServer', x=-960.84, y=70.00, z=1596.63], MoCEntityGoat['Goat'/129548, l='MpServer', x=-963.84, y=70.00, z=1595.66], MoCEntityGoat['Goat'/129550, l='MpServer', x=-960.50, y=70.00, z=1593.50], VengeanceSpirit['Vengeance Spirit'/139838, l='MpServer', x=-1100.56, y=17.00, z=1549.59], EntityItem['item.item.redstone'/129601, l='MpServer', x=-994.16, y=20.13, z=1568.69], EntityItem['item.item.redstone'/129600, l='MpServer', x=-995.88, y=15.13, z=1570.13], VengeanceSpirit['Vengeance Spirit'/139843, l='MpServer', x=-1101.66, y=38.00, z=1551.69], EntityItem['item.item.redstone'/129603, l='MpServer', x=-993.88, y=15.13, z=1568.81], EntityItem['item.tile.pressurePlate'/129605, l='MpServer', x=-1003.19, y=17.13, z=1602.63], EntityItem['item.tile.notGate'/129604, l='MpServer', x=-989.13, y=14.13, z=1568.88], EntityItem['item.item.redstone'/129607, l='MpServer', x=-997.13, y=18.13, z=1599.13], EntityDepthsGhoul['Dr. Orange'/111180, l='MpServer', x=-32.28, y=-26.62, z=-48.18], EntityItem['item.item.string'/131696, l='MpServer', x=-1027.31, y=19.13, z=1614.84], EntityItem['item.item.string'/131700, l='MpServer', x=-1044.75, y=18.13, z=1582.13], EntityLavaMonster['Lava Monster'/125573, l='MpServer', x=-998.75, y=3.24, z=1481.50], MoCEntityDuck['Duck'/113287, l='MpServer', x=-910.50, y=76.00, z=1426.50], VengeanceSpirit['Vengeance Spirit'/135822, l='MpServer', x=-1086.53, y=33.00, z=1552.47], EntityItem['item.item.seeds'/135821, l='MpServer', x=-1052.66, y=61.13, z=1507.88], EntityItem['item.item.string'/131734, l='MpServer', x=-1083.19, y=12.13, z=1611.94], MoCEntityTurkey['Turkey'/117411, l='MpServer', x=-1135.50, y=64.00, z=1491.50], EntityItem['item.tile.gravel'/144042, l='MpServer', x=-1026.47, y=20.99, z=1615.50], EntityItem['item.tile.gravel'/144041, l='MpServer', x=-1026.50, y=20.99, z=1614.47], MoCEntityFox['Fox'/117422, l='MpServer', x=-1116.50, y=65.00, z=1482.50], EntityItem['item.item.string'/131762, l='MpServer', x=-1040.13, y=18.13, z=1580.13], MoCEntityGoat['Goat'/113329, l='MpServer', x=-925.28, y=76.00, z=1430.53], MoCEntityHorse['WildHorse'/129714, l='MpServer', x=-927.50, y=64.00, z=1593.50], MoCEntityGoat['Goat'/113333, l='MpServer', x=-922.50, y=76.00, z=1430.50], MoCEntityBird['Bird'/117428, l='MpServer', x=-1119.50, y=65.00, z=1484.50], MoCEntityGoat['Goat'/113335, l='MpServer', x=-929.53, y=76.00, z=1433.34], MoCEntityBird['Bird'/117430, l='MpServer', x=-1118.50, y=65.00, z=1484.50], EntitySheep['Sheep'/117432, l='MpServer', x=-1088.47, y=66.00, z=1491.47], EntitySheep['Sheep'/117434, l='MpServer', x=-1087.03, y=67.00, z=1491.50], EntitySheep['Sheep'/117436, l='MpServer', x=-1090.25, y=66.00, z=1492.78], EntitySheep['Sheep'/117438, l='MpServer', x=-1089.13, y=66.00, z=1492.72], EntityPig['Pig'/117442, l='MpServer', x=-1092.78, y=66.00, z=1491.09], MoCEntityHorse['WildHorse'/129730, l='MpServer', x=-923.59, y=64.00, z=1595.66], EntityPig['Pig'/117444, l='MpServer', x=-1091.03, y=66.00, z=1489.47], MoCEntityHorse['WildHorse'/129732, l='MpServer', x=-925.50, y=64.00, z=1596.50], EntityPig['Pig'/117446, l='MpServer', x=-1089.97, y=66.00, z=1491.34], EntityPig['Pig'/117448, l='MpServer', x=-1092.66, y=66.00, z=1489.19], MoCEntityEnt['Ent'/113355, l='MpServer', x=-988.97, y=71.00, z=1432.75], MoCEntityOstrich['Ostrich'/129741, l='MpServer', x=-913.50, y=64.00, z=1594.50], EntityLavaMonster['Lava Monster'/131796, l='MpServer', x=-1059.50, y=2.44, z=1569.50], MoCEntityBoar['Boar'/117464, l='MpServer', x=-1076.78, y=68.00, z=1485.78], MoCEntityBoar['Boar'/117466, l='MpServer', x=-1075.19, y=68.00, z=1484.47], EntityHorse['Horse'/117470, l='MpServer', x=-1056.50, y=65.00, z=1489.50], EntityHorse['Horse'/117472, l='MpServer', x=-1056.94, y=65.00, z=1487.81], EntitySquid['Squid'/133857, l='MpServer', x=-1085.50, y=55.38, z=1518.56], EntityHorse['Horse'/117476, l='MpServer', x=-1061.84, y=66.00, z=1487.38], EntityHorse['Horse'/117481, l='MpServer', x=-1009.91, y=69.00, z=1495.13], EntityLavaMonster['Lava Monster'/137976, l='MpServer', x=-1107.91, y=3.24, z=1565.50], MoCEntityBird['Bird'/113404, l='MpServer', x=-1082.34, y=72.00, z=1428.34], MoCEntityMouse['Mouse'/117507, l='MpServer', x=-1017.53, y=69.00, z=1497.72], MoCEntityMouse['Mouse'/117509, l='MpServer', x=-1011.56, y=68.00, z=1512.13], EntityCow['Cow'/117511, l='MpServer', x=-1015.25, y=65.00, z=1484.50], EntityCow['Cow'/117513, l='MpServer', x=-1004.22, y=67.00, z=1483.66], EntityCow['Cow'/117515, l='MpServer', x=-997.06, y=67.00, z=1484.97], EntityCow['Cow'/117517, l='MpServer', x=-1013.47, y=65.00, z=1480.69], MoCEntityBird['Bird'/117519, l='MpServer', x=-1001.25, y=69.00, z=1489.28], MoCEntityBird['Bird'/117521, l='MpServer', x=-998.88, y=68.00, z=1488.41], MoCEntityBird['Bird'/117523, l='MpServer', x=-994.75, y=67.00, z=1488.00], EntityItem['item.item.string'/131857, l='MpServer', x=-1027.34, y=18.13, z=1615.81], MoCEntityFox['Fox'/117527, l='MpServer', x=-995.19, y=68.00, z=1496.22], MoCEntityFox['Fox'/117530, l='MpServer', x=-925.50, y=72.00, z=1492.50], EntityItem['item.item.string'/131872, l='MpServer', x=-1040.88, y=18.13, z=1580.13], EntityItem['item.item.barley.seed'/133958, l='MpServer', x=-1055.25, y=67.13, z=1532.97], EntityItem['item.tile.mushroom15'/131918, l='MpServer', x=-993.63, y=19.13, z=1603.16], EntityItem['item.item.string'/127843, l='MpServer', x=-978.81, y=20.13, z=1550.16], EntityItem['item.item.string'/127842, l='MpServer', x=-981.16, y=19.13, z=1547.09], EntityItem['item.item.string'/131937, l='MpServer', x=-1042.66, y=18.13, z=1583.13], EntityLavaMonster['Lava Monster'/140157, l='MpServer', x=-962.50, y=43.97, z=1546.50], GCEntityClientPlayerMP['Mateus_ruby5'/67878, l='MpServer', x=-1029.13, y=72.33, z=1554.00], EntityItem['item.item.string'/131978, l='MpServer', x=-1015.84, y=20.13, z=1608.47], EntityItem['item.tile.caveplant0'/131977, l='MpServer', x=-1017.16, y=22.13, z=1610.13], EntityItem['item.item.agricraft:seedPotato'/138128, l='MpServer', x=-1018.25, y=69.13, z=1501.19], EntityItem['item.tile.gravel'/138129, l='MpServer', x=-1042.50, y=21.13, z=1580.50], EntityItem['item.tile.mushroom14'/132007, l='MpServer', x=-1004.38, y=6.13, z=1491.22], EntityItem['item.tile.gravel'/138158, l='MpServer', x=-1041.50, y=20.13, z=1576.53], EntityItem['item.tile.notGate'/129990, l='MpServer', x=-998.13, y=20.13, z=1587.13], MoCEntityRaccoon['Raccoon'/117721, l='MpServer', x=-1104.56, y=59.00, z=1510.41], MoCEntityRaccoon['Raccoon'/117723, l='MpServer', x=-1109.50, y=64.00, z=1507.50], MoCEntityMouse['Mouse'/117727, l='MpServer', x=-1109.50, y=62.00, z=1509.50], MoCEntityBunny['Bunny'/117729, l='MpServer', x=-1090.50, y=63.00, z=1509.50], MoCEntityBunny['Bunny'/117731, l='MpServer', x=-1094.50, y=64.00, z=1508.50], MoCEntityMouse['Mouse'/117733, l='MpServer', x=-1068.50, y=64.00, z=1506.50], EntitySkeleton['Skeleton'/136166, l='MpServer', x=-10.69, y=-47.53, z=41.12], MoCEntityMouse['Mouse'/117735, l='MpServer', x=-1069.50, y=64.00, z=1506.50], MoCEntityBoar['Boar'/117741, l='MpServer', x=-1057.59, y=65.00, z=1510.50], MoCEntityBoar['Boar'/117743, l='MpServer', x=-1058.19, y=64.00, z=1507.50], EntitySheep['Sheep'/117745, l='MpServer', x=-1056.13, y=65.00, z=1498.84], MoCEntityMouse['Mouse'/125936, l='MpServer', x=-1117.50, y=11.80, z=1555.50], EntityLavaMonster['Lava Monster'/140275, l='MpServer', x=-1054.50, y=2.53, z=1553.50], EntitySheep['Sheep'/117747, l='MpServer', x=-1059.25, y=65.00, z=1502.66], EntitySheep['Sheep'/117749, l='MpServer', x=-1058.03, y=64.00, z=1502.47], EntitySheep['Sheep'/117751, l='MpServer', x=-1059.66, y=64.00, z=1504.03], MoCEntityBigCat['BigCat'/136190, l='MpServer', x=-1025.50, y=64.00, z=1660.50], MoCEntityBigCat['BigCat'/136188, l='MpServer', x=-1023.50, y=64.00, z=1658.50], MoCEntityBoar['Boar'/125954, l='MpServer', x=-1084.50, y=59.00, z=1552.50], MoCEntityBunny['Bunny'/125961, l='MpServer', x=-1070.50, y=65.00, z=1556.50], MoCEntityBunny['Bunny'/125971, l='MpServer', x=-1069.50, y=65.00, z=1552.50], MoCEntityBoar['Boar'/125974, l='MpServer', x=-1051.56, y=64.00, z=1558.22], MoCEntityBoar['Boar'/125976, l='MpServer', x=-1043.34, y=63.00, z=1559.83], MoCEntityDeer['Deer'/115739, l='MpServer', x=-1134.50, y=65.00, z=1473.50], MoCEntityMouse['Mouse'/125979, l='MpServer', x=-1042.08, y=67.00, z=1549.38], MoCEntityDeer['Deer'/115741, l='MpServer', x=-1116.50, y=66.00, z=1474.50], MoCEntityMouse['Mouse'/125981, l='MpServer', x=-1043.56, y=66.00, z=1552.26], MoCEntityDeer['Deer'/115743, l='MpServer', x=-1113.50, y=64.00, z=1478.50], MoCEntitySnake['Snake'/125983, l='MpServer', x=-1029.00, y=67.00, z=1549.50], MoCEntityBigCat['BigCat'/115745, l='MpServer', x=-1100.09, y=71.00, z=1469.63], MoCEntityBigCat['BigCat'/115747, l='MpServer', x=-1101.50, y=69.00, z=1476.50], MoCEntityBunny['Bunny'/136224, l='MpServer', x=-957.50, y=64.00, z=1662.50], MoCEntityBunny['Bunny'/115749, l='MpServer', x=-1104.50, y=69.00, z=1476.50], MoCEntitySnake['Snake'/125989, l='MpServer', x=-1027.16, y=67.00, z=1545.50], MoCEntityBunny['Bunny'/115751, l='MpServer', x=-1103.50, y=68.00, z=1477.50], MoCEntityDeer['Deer'/115753, l='MpServer', x=-1099.22, y=69.00, z=1475.78], MoCEntityBear['Bear'/125993, l='MpServer', x=-1024.63, y=63.74, z=1555.38], MoCEntityGoat['Goat'/134187, l='MpServer', x=-977.16, y=65.00, z=1615.50], MoCEntityDeer['Deer'/115755, l='MpServer', x=-1100.81, y=69.00, z=1474.47], MoCEntityDuck['Duck'/125995, l='MpServer', x=-1031.62, y=65.81, z=1575.40], MoCEntityMouse['Mouse'/125997, l='MpServer', x=-1017.47, y=64.00, z=1567.38], MoCEntityBird['Bird'/136239, l='MpServer', x=-939.50, y=66.00, z=1661.50], MoCEntityMouse['Mouse'/125999, l='MpServer', x=-1026.37, y=65.00, z=1563.62], EntityHorse['Horse'/115759, l='MpServer', x=-1093.50, y=69.00, z=1476.50], EntityItem['item.item.string'/132147, l='MpServer', x=-1025.25, y=20.13, z=1613.31], MoCEntityBird['Bird'/136241, l='MpServer', x=-938.78, y=65.00, z=1660.41], MoCEntityBear['Bear'/126007, l='MpServer', x=-1020.31, y=64.44, z=1554.56], EntityHorse['Horse'/115767, l='MpServer', x=-1095.87, y=69.00, z=1477.13], EntityHorse['Horse'/115769, l='MpServer', x=-1090.03, y=67.00, z=1483.91], EntityHorse['Horse'/115773, l='MpServer', x=-1092.59, y=68.00, z=1479.09], MoCEntityGoat['Goat'/136255, l='MpServer', x=-944.34, y=66.00, z=1661.34], EntityHorse['Horse'/115779, l='MpServer', x=-1093.50, y=70.00, z=1474.50], MoCEntityOstrich['Ostrich'/115781, l='MpServer', x=-1087.50, y=69.00, z=1476.50], MoCEntityBoar['Boar'/128068, l='MpServer', x=-1106.78, y=64.00, z=1577.78], MoCEntityOstrich['Ostrich'/115783, l='MpServer', x=-1079.50, y=71.00, z=1469.50], MoCEntityBoar['Boar'/128070, l='MpServer', x=-1105.19, y=64.00, z=1576.19], MoCEntityBird['Bird'/115787, l='MpServer', x=-1019.69, y=71.00, z=1469.44], MoCEntityBoar['Boar'/126026, l='MpServer', x=-1009.22, y=68.00, z=1572.09], MoCEntityBird['Bird'/115789, l='MpServer', x=-1006.91, y=70.00, z=1473.78], MoCEntityBoar['Boar'/126028, l='MpServer', x=-1028.50, y=65.00, z=1576.25], MoCEntityDuck['Duck'/115791, l='MpServer', x=-984.56, y=67.00, z=1463.13], EntityItem['item.item.agricraft:seedPotato'/126031, l='MpServer', x=-1019.78, y=64.13, z=1561.59], EntityItem['item.item.agricraft:seedPotato'/126030, l='MpServer', x=-1020.56, y=65.13, z=1562.19], MoCEntityOstrich['Ostrich'/115793, l='MpServer', x=-968.50, y=68.00, z=1469.50], MoCEntityBoar['Boar'/128081, l='MpServer', x=-1079.50, y=64.00, z=1590.50], MoCEntityRaccoon['Raccoon'/126032, l='MpServer', x=-1012.28, y=69.00, z=1545.16], MoCEntityKitty['Kitty'/115795, l='MpServer', x=-980.03, y=69.00, z=1467.22], MoCEntityBoar['Boar'/128083, l='MpServer', x=-1079.50, y=65.00, z=1589.50], EntityPig['Pig'/126034, l='MpServer', x=-1002.38, y=72.00, z=1538.47], EntityItem['item.item.agricraft:seedCarrot'/142417, l='MpServer', x=-1052.28, y=61.13, z=1508.31], MoCEntityKitty['Kitty'/115797, l='MpServer', x=-988.38, y=68.00, z=1467.16], MoCEntityTurkey['Turkey'/128085, l='MpServer', x=-1070.75, y=64.00, z=1589.84], EntityPig['Pig'/126036, l='MpServer', x=-1006.86, y=72.00, z=1536.90], EntityHorse['Horse'/128087, l='MpServer', x=-1059.50, y=64.00, z=1577.50], EntityPig['Pig'/126038, l='MpServer', x=-1015.72, y=66.00, z=1548.50], MoCEntitySnake['Snake'/115801, l='MpServer', x=-975.50, y=67.00, z=1475.50], EntityHorse['Horse'/128089, l='MpServer', x=-1061.50, y=64.00, z=1576.50], EntityPig['Pig'/126040, l='MpServer', x=-1001.35, y=72.70, z=1538.47], MoCEntitySnake['Snake'/115805, l='MpServer', x=-977.50, y=67.00, z=1478.50], MoCEntityBunny['Bunny'/115809, l='MpServer', x=-966.00, y=67.00, z=1474.66], EntityHorse['Horse'/128097, l='MpServer', x=-1058.50, y=64.00, z=1579.50], MoCEntityBunny['Bunny'/115811, l='MpServer', x=-967.50, y=67.00, z=1472.50], MoCEntityBunny['Bunny'/115813, l='MpServer', x=-965.50, y=67.00, z=1470.50], EntityPig['Pig'/126053, l='MpServer', x=-970.50, y=71.00, z=1554.50], EntityHorse['Horse'/128101, l='MpServer', x=-1060.16, y=64.00, z=1574.06], MoCEntityBird['Bird'/115815, l='MpServer', x=-919.84, y=72.00, z=1467.72], EntityPig['Pig'/126055, l='MpServer', x=-973.50, y=72.00, z=1553.50], EntityPig['Pig'/126057, l='MpServer', x=-971.78, y=72.00, z=1552.47], MoCEntityFox['Fox'/128104, l='MpServer', x=-1048.47, y=64.00, z=1581.97], EntityPig['Pig'/126059, l='MpServer', x=-970.19, y=72.00, z=1553.81], MoCEntityGoat['Goat'/128106, l='MpServer', x=-1058.50, y=63.00, z=1591.50], MoCEntityBird['Bird'/115821, l='MpServer', x=-917.84, y=72.00, z=1464.16], EntityCow['Cow'/126061, l='MpServer', x=-981.38, y=72.00, z=1559.69], MoCEntityGoat['Goat'/128108, l='MpServer', x=-1060.50, y=63.00, z=1591.50], MoCEntityBird['Bird'/115823, l='MpServer', x=-916.50, y=72.00, z=1469.50], EntityCow['Cow'/126063, l='MpServer', x=-984.38, y=72.00, z=1558.22], EntityCow['Cow'/126065, l='MpServer', x=-984.75, y=72.00, z=1560.22], EntityCow['Cow'/126067, l='MpServer', x=-987.81, y=72.00, z=1558.22], MoCEntityMouse['Mouse'/113778, l='MpServer', x=-1086.50, y=72.00, z=1437.50], MoCEntityBoar['Boar'/126069, l='MpServer', x=-946.50, y=64.00, z=1550.50], MoCEntityGoat['Goat'/134262, l='MpServer', x=-974.84, y=64.00, z=1617.50], MoCEntityMouse['Mouse'/113780, l='MpServer', x=-1086.50, y=72.00, z=1435.50], EntityCow['Cow'/128116, l='MpServer', x=-1043.50, y=64.00, z=1591.50], MoCEntityBoar['Boar'/126071, l='MpServer', x=-949.50, y=64.00, z=1550.50], EntityCow['Cow'/128118, l='MpServer', x=-1043.50, y=64.00, z=1589.50], EntityCow['Cow'/128120, l='MpServer', x=-1045.50, y=64.00, z=1589.50], MoCEntitySnake['Snake'/126075, l='MpServer', x=-949.50, y=64.00, z=1548.50], EntityCow['Cow'/128122, l='MpServer', x=-1042.50, y=65.00, z=1587.50], EntityChicken['Chicken'/128124, l='MpServer', x=-1022.50, y=65.00, z=1583.50], EntityItem['item.item.string'/134271, l='MpServer', x=-1028.13, y=19.13, z=1616.72], MoCEntityKitty['Kitty'/134268, l='MpServer', x=-1095.56, y=63.00, z=1617.53], MoCEntityBunny['Bunny'/134274, l='MpServer', x=-1025.50, y=63.00, z=1620.50], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/142466, l='MpServer', x=-1034.69, y=67.13, z=1510.75], EntityChicken['Chicken'/128128, l='MpServer', x=-1026.34, y=64.00, z=1586.44], MoCEntityBunny['Bunny'/134272, l='MpServer', x=-1029.50, y=63.00, z=1622.50], EntityChicken['Chicken'/128130, l='MpServer', x=-1018.56, y=66.00, z=1575.56], MoCEntityBird['Bird'/134278, l='MpServer', x=-1035.50, y=64.00, z=1631.50], EntityChicken['Chicken'/128132, l='MpServer', x=-1020.81, y=66.00, z=1583.34], MoCEntityBird['Bird'/134276, l='MpServer', x=-1038.63, y=63.00, z=1627.13], MoCEntityMouse['Mouse'/126086, l='MpServer', x=-934.50, y=67.00, z=1547.50], MoCEntityDuck['Duck'/128134, l='MpServer', x=-1000.50, y=66.00, z=1590.50], MoCEntityMouse['Mouse'/126088, l='MpServer', x=-933.50, y=68.00, z=1544.50], MoCEntityDuck['Duck'/128136, l='MpServer', x=-1001.50, y=66.00, z=1591.50], MoCEntityBird['Bird'/126091, l='MpServer', x=-912.47, y=69.00, z=1546.88], MoCEntityBird['Bird'/134280, l='MpServer', x=-1035.75, y=64.00, z=1628.47], MoCEntityKitty['Kitty'/128138, l='MpServer', x=-1006.44, y=65.00, z=1601.78], MoCEntityBird['Bird'/126093, l='MpServer', x=-912.50, y=69.00, z=1549.50], MoCEntityKitty['Kitty'/128140, l='MpServer', x=-1011.70, y=66.00, z=1589.50], EntityLavaMonster['Lava Monster'/138387, l='MpServer', x=-999.50, y=1.50, z=1595.50], MoCEntityBird['Bird'/128161, l='MpServer', x=-989.50, y=67.00, z=1585.50], MoCEntityBird['Bird'/128163, l='MpServer', x=-989.47, y=67.00, z=1586.56], MoCEntityBird['Bird'/128165, l='MpServer', x=-996.16, y=66.00, z=1593.53], EntityPig['Pig'/128167, l='MpServer', x=-988.50, y=67.00, z=1586.50], EntityPig['Pig'/128169, l='MpServer', x=-991.47, y=66.00, z=1585.47], EntityPig['Pig'/128171, l='MpServer', x=-992.81, y=66.00, z=1586.81], EntityPig['Pig'/128173, l='MpServer', x=-993.22, y=66.00, z=1588.53], EntitySheep['Sheep'/128176, l='MpServer', x=-980.50, y=68.00, z=1581.50], EntityItem['item.item.string'/132272, l='MpServer', x=-1022.13, y=18.13, z=1614.88], EntitySheep['Sheep'/128178, l='MpServer', x=-980.50, y=68.00, z=1577.50], EntitySheep['Sheep'/128180, l='MpServer', x=-976.50, y=67.00, z=1582.22], EntitySheep['Sheep'/128182, l='MpServer', x=-976.50, y=67.00, z=1583.81], EntityPig['Pig'/128184, l='MpServer', x=-952.50, y=67.00, z=1587.50], EntityPig['Pig'/128186, l='MpServer', x=-954.50, y=67.00, z=1584.50], EntityPig['Pig'/128188, l='MpServer', x=-954.50, y=67.00, z=1582.50], EntityPig['Pig'/128190, l='MpServer', x=-952.50, y=68.00, z=1591.50], MoCEntityBunny['Bunny'/128193, l='MpServer', x=-940.50, y=64.00, z=1578.50], MoCEntityBunny['Bunny'/128195, l='MpServer', x=-939.50, y=64.00, z=1576.50], MoCEntityBunny['Bunny'/128197, l='MpServer', x=-939.50, y=64.00, z=1577.50], MoCEntityBoar['Boar'/113863, l='MpServer', x=-1052.50, y=70.00, z=1441.78], MoCEntityBird['Bird'/128199, l='MpServer', x=-947.50, y=65.00, z=1582.50], MoCEntityBoar['Boar'/113865, l='MpServer', x=-1052.50, y=70.00, z=1440.19], MoCEntityBigCat['BigCat'/117961, l='MpServer', x=-1132.50, y=64.00, z=1497.50], MoCEntityBird['Bird'/128201, l='MpServer', x=-948.50, y=65.00, z=1581.50], MoCEntityRaccoon['Raccoon'/113867, l='MpServer', x=-1040.28, y=68.00, z=1434.44], MoCEntityRaccoon['Raccoon'/113869, l='MpServer', x=-1044.41, y=71.00, z=1442.16], EntitySpider['Spider'/136399, l='MpServer', x=24.09, y=-45.40, z=37.66], EntityItem['item.tile.mushroom1'/117971, l='MpServer', x=-1009.31, y=6.13, z=1500.88], EntityItem['item.tile.mushroom2'/117972, l='MpServer', x=-1004.41, y=15.13, z=1506.22], MoCEntityMouse['Mouse'/113878, l='MpServer', x=-1000.75, y=68.00, z=1442.53], MoCEntityBear['Bear'/128214, l='MpServer', x=-912.50, y=64.00, z=1583.50], MoCEntityMouse['Mouse'/113880, l='MpServer', x=-1003.53, y=69.00, z=1435.75], MoCEntityBoar['Boar'/113884, l='MpServer', x=-986.47, y=70.00, z=1437.50], MoCEntityBoar['Boar'/113886, l='MpServer', x=-989.22, y=71.00, z=1450.31], MoCEntityBoar['Boar'/117982, l='MpServer', x=-994.50, y=68.00, z=1506.47], MoCEntityMouse['Mouse'/113888, l='MpServer', x=-997.78, y=69.00, z=1447.53], MoCEntityBoar['Boar'/117984, l='MpServer', x=-998.94, y=68.00, z=1497.84], MoCEntityMouse['Mouse'/117986, l='MpServer', x=-983.63, y=62.00, z=1486.94], MoCEntityDuck['Duck'/117988, l='MpServer', x=-1003.28, y=68.00, z=1503.53], MoCEntityDuck['Duck'/117990, l='MpServer', x=-1010.69, y=69.00, z=1506.78], EntityZombie['Zombie'/136426, l='MpServer', x=-26.76, y=-44.64, z=36.98], EntitySheep['Sheep'/117992, l='MpServer', x=-972.75, y=67.00, z=1500.44], EntitySheep['Sheep'/117996, l='MpServer', x=-961.69, y=66.00, z=1499.69], EntitySheep['Sheep'/117998, l='MpServer', x=-957.75, y=66.00, z=1504.84], EntityChicken['Chicken'/118000, l='MpServer', x=-967.50, y=66.00, z=1509.50], MoCEntityDeer['Deer'/113907, l='MpServer', x=-906.50, y=77.00, z=1432.50], EntityChicken['Chicken'/118002, l='MpServer', x=-966.50, y=66.00, z=1510.50], MoCEntityDeer['Deer'/113909, l='MpServer', x=-908.50, y=76.00, z=1432.50], MoCEntityBird['Bird'/113911, l='MpServer', x=-913.50, y=73.00, z=1441.50], EntityChicken['Chicken'/118006, l='MpServer', x=-965.50, y=66.00, z=1509.50], MoCEntityBird['Bird'/113913, l='MpServer', x=-916.50, y=74.00, z=1440.50], EntitySheep['Sheep'/118012, l='MpServer', x=-954.78, y=66.00, z=1511.38], MoCEntityHorse['WildHorse'/118016, l='MpServer', x=-938.56, y=67.00, z=1493.34], VengeanceSpirit['Vengeance Spirit'/144643, l='MpServer', x=-973.19, y=66.00, z=1487.81], EntityItem['item.item.ItemMutton'/144647, l='MpServer', x=-974.78, y=66.13, z=1490.94], EntityItem['item.tile.cloth.black'/144645, l='MpServer', x=-974.25, y=66.13, z=1491.16], MoCEntityHorse['WildHorse'/118026, l='MpServer', x=-937.50, y=67.00, z=1502.50], MoCEntityHorse['WildHorse'/118030, l='MpServer', x=-940.13, y=67.00, z=1500.03], MoCEntityBear['Bear'/118032, l='MpServer', x=-945.50, y=66.00, z=1496.50], MoCEntityTurkey['Turkey'/118034, l='MpServer', x=-926.50, y=75.00, z=1511.50], MoCEntityTurkey['Turkey'/118036, l='MpServer', x=-916.50, y=68.00, z=1508.50], EntityItem['item.item.string'/132377, l='MpServer', x=-1026.63, y=18.13, z=1612.88], VengeanceSpirit['Vengeance Spirit'/138521, l='MpServer', x=-1094.84, y=3.40, z=1568.81], MoCEntityEnt['Ent'/118044, l='MpServer', x=-918.50, y=69.00, z=1507.50], MoCEntityBunny['Bunny'/118054, l='MpServer', x=-915.41, y=74.00, z=1496.00], MoCEntityBunny['Bunny'/118056, l='MpServer', x=-912.50, y=72.00, z=1498.50], EntityLavaMonster['Lava Monster'/140584, l='MpServer', x=-997.72, y=3.07, z=1481.50], MoCEntityBunny['Bunny'/118058, l='MpServer', x=-913.50, y=72.00, z=1498.50], EntityZombie['Zombie'/136535, l='MpServer', x=-43.44, y=-42.80, z=18.61], EntityItem['item.item.string'/132471, l='MpServer', x=-1021.56, y=19.13, z=1614.88], EntityItem['item.item.string'/132469, l='MpServer', x=-1026.72, y=18.13, z=1612.13], EntityLavaMonster['Lava Monster'/132489, l='MpServer', x=-993.50, y=1.75, z=1582.50], EntityItem['item.item.netherquartz'/132530, l='MpServer', x=-1021.72, y=9.13, z=1576.28], EntityItem['item.item.barley.seed'/126391, l='MpServer', x=-1088.88, y=62.13, z=1507.59], MoCEntityMouse['Mouse'/105912, l='MpServer', x=-1035.16, y=64.00, z=1429.44], EntitySkeleton['Skeleton'/134589, l='MpServer', x=-7.58, y=-44.53, z=45.23], EntityZombie['Zombie'/134592, l='MpServer', x=-0.58, y=-43.53, z=46.69], EntityLavaMonster['Lava Monster'/140747, l='MpServer', x=-1090.50, y=3.06, z=1578.50], EntitySkeleton['Skeleton'/134617, l='MpServer', x=-1011.09, y=40.00, z=1586.34], EntityItem['item.tile.stonebrick'/126428, l='MpServer', x=-1089.13, y=12.13, z=1535.81], EntityItem['item.tile.sandStone.default'/126435, l='MpServer', x=-1087.88, y=55.13, z=1517.84], EntityItem['item.item.witchery:seedsartichoke'/126437, l='MpServer', x=-1083.94, y=60.13, z=1509.13], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/126436, l='MpServer', x=-1084.56, y=61.13, z=1507.84], EntityItem['item.item.witchery:seedssnowbell'/126439, l='MpServer', x=-1082.13, y=62.13, z=1512.94], EntityItem['item.item.barley.seed'/126438, l='MpServer', x=-1083.78, y=60.13, z=1512.88], EntityItem['item.item.gysahl_seeds'/126441, l='MpServer', x=-1082.16, y=61.13, z=1510.41], EntityItem['item.item.witchery:seedssnowbell'/126440, l='MpServer', x=-1084.69, y=61.13, z=1513.38], EntityItem['item.item.agricraft:seedCarrot'/126443, l='MpServer', x=-1077.16, y=64.13, z=1515.38], EntityItem['item.tile.extrabiomes.flower.amaryllis_red'/126442, l='MpServer', x=-1079.75, y=66.13, z=1517.56], EntitySkeleton['Skeleton'/134633, l='MpServer', x=-959.50, y=66.00, z=1511.50], EntityItem['item.item.cotton.seed'/126445, l='MpServer', x=-1076.78, y=64.13, z=1513.31], EntityItem['item.item.seeds'/126444, l='MpServer', x=-1076.88, y=64.13, z=1510.13], MoCEntityScorpion['Scorpion'/134639, l='MpServer', x=-974.16, y=66.00, z=1491.82], EntityItem['item.item.barley.seed'/126447, l='MpServer', x=-1073.28, y=66.13, z=1518.66], EntityItem['item.item.agricraft:seedCarrot'/126446, l='MpServer', x=-1075.25, y=64.13, z=1510.69], EntitySpider['Spider'/136694, l='MpServer', x=-28.85, y=-40.37, z=40.13], EntityItem['item.tile.mushroom2'/130555, l='MpServer', x=-1035.28, y=24.13, z=1578.44], MoCEntityWWolf['WWolf'/134649, l='MpServer', x=-967.16, y=66.00, z=1507.56], EntityItem['item.tile.arsmagica2:tarmaroot'/130556, l='MpServer', x=-994.28, y=24.13, z=1593.59], EntityItem['item.item.ImmersiveEngineering.seed.hemp'/126465, l='MpServer', x=-1074.09, y=65.13, z=1536.69], MoCEntityRat['Rat'/134661, l='MpServer', x=-1008.13, y=68.00, z=1581.00], EntityZombie['Zombie'/134667, l='MpServer', x=-991.50, y=38.00, z=1482.50], EntityZombie['Zombie'/134669, l='MpServer', x=-992.50, y=38.00, z=1479.50], EntityItem['item.item.string'/132646, l='MpServer', x=-1027.88, y=18.13, z=1613.13], EntityItem['item.tile.mushroom10'/132655, l='MpServer', x=-1050.28, y=12.13, z=1578.28], EntityCaveSpider['Cave Spider'/136753, l='MpServer', x=-23.15, y=-51.37, z=30.14], EntityLavaMonster['Lava Monster'/142901, l='MpServer', x=-1100.50, y=3.36, z=1563.50], EntityItem['item.item.seeds_pumpkin'/136772, l='MpServer', x=-1062.81, y=65.13, z=1530.59], MoCEntityDuck['Duck'/130654, l='MpServer', x=-1122.50, y=63.00, z=1613.50], MoCEntityBoar['Boar'/124512, l='MpServer', x=-1030.19, y=67.00, z=1536.78], MoCEntityMouse['Mouse'/130656, l='MpServer', x=-1113.50, y=63.00, z=1612.50], MoCEntityBoar['Boar'/124514, l='MpServer', x=-1034.62, y=67.00, z=1539.80], EntityItem['item.tile.mushroom2'/128620, l='MpServer', x=-1042.81, y=15.13, z=1546.88], MoCEntityElephant['Elephant'/130668, l='MpServer', x=-1092.69, y=63.00, z=1612.72], MoCEntityBoar['Boar'/124530, l='MpServer', x=-1034.38, y=67.00, z=1546.47], MoCEntityBoar['Boar'/124532, l='MpServer', x=-1033.17, y=68.00, z=1526.12], MoCEntityBird['Bird'/124535, l='MpServer', x=-1036.75, y=67.17, z=1537.39], EntityItem['item.tile.mushroom1'/124534, l='MpServer', x=-1044.13, y=8.13, z=1525.13], EntityItem['item.item.cotton.seed'/136821, l='MpServer', x=-1093.25, y=10.13, z=1561.81], MoCEntityBird['Bird'/124537, l='MpServer', x=-1049.06, y=67.00, z=1544.54], MoCEntityBird['Bird'/124539, l='MpServer', x=-1038.31, y=66.00, z=1543.03], MoCEntityDeer['Deer'/124541, l='MpServer', x=-1040.78, y=67.00, z=1540.78], MoCEntityDeer['Deer'/124543, l='MpServer', x=-1038.66, y=67.00, z=1539.22], EntityHorse['Horse'/124545, l='MpServer', x=-1058.50, y=68.00, z=1528.97], EntityHorse['Donkey'/124547, l='MpServer', x=-1055.59, y=68.00, z=1528.28], MoCEntityBunny['Bunny'/124549, l='MpServer', x=-1059.67, y=66.74, z=1544.44], MoCEntityBunny['Bunny'/124551, l='MpServer', x=-1067.25, y=65.00, z=1548.09], MoCEntityBird['Bird'/124553, l='MpServer', x=-1078.50, y=60.00, z=1540.50], MoCEntityBird['Bird'/124555, l='MpServer', x=-1078.22, y=60.00, z=1539.94], EntitySheep['Sheep'/124557, l='MpServer', x=-1097.56, y=12.00, z=1540.16], EntitySheep['Sheep'/124559, l='MpServer', x=-1096.47, y=55.00, z=1541.94], EntityItem['item.tile.gravel'/142989, l='MpServer', x=-1041.71, y=19.83, z=1584.50], EntitySheep['Sheep'/124561, l='MpServer', x=-1094.03, y=12.00, z=1546.69], EntitySheep['Sheep'/124565, l='MpServer', x=-1097.91, y=12.00, z=1541.28], EntityItem['item.item.netherStalkSeeds'/132766, l='MpServer', x=-993.44, y=10.13, z=1543.22], EntityHuman['skyboy'/128673, l='MpServer', x=-1001.50, y=45.00, z=1527.50], EntityItem['item.tile.caveplant1'/132772, l='MpServer', x=-1024.88, y=8.13, z=1614.88], MoCEntityFox['Fox'/114345, l='MpServer', x=-1114.50, y=64.00, z=1442.19], MoCEntityMole['Mole'/114347, l='MpServer', x=-1125.50, y=64.00, z=1439.50], MoCEntityMouse['Mouse'/114349, l='MpServer', x=-1119.44, y=64.00, z=1439.03], MoCEntityMouse['Mouse'/114351, l='MpServer', x=-1123.09, y=64.00, z=1443.03], EntityItem['item.item.agricraft:seedPotato'/132780, l='MpServer', x=-1081.06, y=65.13, z=1511.53], EntityZombie['Zombie'/134834, l='MpServer', x=-14.59, y=-43.53, z=44.43], MoCEntityElephant['Elephant'/114355, l='MpServer', x=-1117.25, y=64.00, z=1432.94], EntitySkeleton['Skeleton'/134841, l='MpServer', x=-12.60, y=-44.53, z=43.85], EntitySkeleton['Skeleton'/136907, l='MpServer', x=-39.46, y=-39.37, z=30.79], MoCEntityBunny['Bunny'/134862, l='MpServer', x=-1070.50, y=64.00, z=1638.50], MoCEntityMole['Mole'/134860, l='MpServer', x=-1075.50, y=63.00, z=1629.50], MoCEntityBunny['Bunny'/134866, l='MpServer', x=-1069.50, y=64.00, z=1636.50], EntityItem['item.item.netherStalkSeeds'/132817, l='MpServer', x=-996.22, y=9.00, z=1537.09], MoCEntityMouse['Mouse'/122583, l='MpServer', x=-1099.44, y=41.55, z=1514.31], MoCEntityKitty['Kitty'/122585, l='MpServer', x=-1104.50, y=50.00, z=1521.50], MoCEntityKitty['Kitty'/122587, l='MpServer', x=-1105.50, y=51.00, z=1521.50], EntityItem['item.tile.gravel'/141023, l='MpServer', x=-1042.50, y=19.13, z=1576.50], MoCEntitySnake['Snake'/122595, l='MpServer', x=-1106.50, y=54.00, z=1518.50], MoCEntityBird['Bird'/134884, l='MpServer', x=-948.38, y=66.00, z=1633.50], MoCEntitySnake['Snake'/122603, l='MpServer', x=-1101.50, y=32.00, z=1521.50], MoCEntityBird['Bird'/134888, l='MpServer', x=-947.50, y=66.00, z=1635.50], MoCEntityOstrich['Ostrich'/122605, l='MpServer', x=-1111.50, y=49.00, z=1526.50], MoCEntityDuck['Duck'/122607, l='MpServer', x=-1087.50, y=62.05, z=1517.50], EntityItem['item.tile.notGate'/130799, l='MpServer', x=-1042.13, y=19.13, z=1616.03], EntityItem['item.tile.pressurePlate'/130798, l='MpServer', x=-1042.28, y=19.13, z=1615.16], EntityItem['item.item.netherStalkSeeds'/132850, l='MpServer', x=-994.25, y=9.00, z=1535.53], EntityItem['item.item.netherStalkSeeds'/132848, l='MpServer', x=-997.28, y=9.00, z=1538.63], EntityZombie['Zombie'/134907, l='MpServer', x=-12.60, y=-46.53, z=41.72], MoCEntityMouse['Mouse'/134905, l='MpServer', x=-912.50, y=66.00, z=1625.50], EntitySheep['Sheep'/124671, l='MpServer', x=-1108.50, y=59.00, z=1534.50], EntitySheep['Sheep'/124673, l='MpServer', x=-1107.78, y=58.00, z=1531.50], EntityItem['item.item.netherStalkSeeds'/132867, l='MpServer', x=-997.31, y=9.00, z=1537.81], EntitySheep['Sheep'/124675, l='MpServer', x=-1103.50, y=60.00, z=1538.50], EntitySheep['Sheep'/124677, l='MpServer', x=-1101.50, y=59.00, z=1537.50], MoCEntityFox['Fox'/124679, l='MpServer', x=-1121.72, y=55.00, z=1529.87], MoCEntityMouse['Mouse'/122630, l='MpServer', x=-1061.84, y=68.00, z=1527.59], EntityZombie['Zombie'/134922, l='MpServer', x=26.40, y=-43.53, z=38.33], MoCEntityBird['Bird'/122632, l='MpServer', x=-1052.63, y=65.00, z=1511.50], EntityItem['item.tile.mushroom10'/132875, l='MpServer', x=-1016.81, y=7.13, z=1610.84], MoCEntityBird['Bird'/122634, l='MpServer', x=-1052.44, y=65.00, z=1511.03], MoCEntityMouse['Mouse'/124682, l='MpServer', x=-903.50, y=68.00, z=1528.50], MoCEntityMole['Mole'/122636, l='MpServer', x=-1059.50, y=66.00, z=1515.50], MoCEntityMole['Mole'/122638, l='MpServer', x=-1055.25, y=66.00, z=1515.94], MoCEntityMouse['Mouse'/122662, l='MpServer', x=-1012.19, y=70.00, z=1506.69], MoCEntitySnake['Snake'/122668, l='MpServer', x=-1010.63, y=66.00, z=1522.28], MoCEntitySnake['Snake'/122670, l='MpServer', x=-1016.09, y=68.00, z=1521.50], MoCEntityFox['Fox'/122672, l='MpServer', x=-1003.13, y=66.00, z=1522.22], MoCEntityFox['Fox'/122674, l='MpServer', x=-1001.47, y=65.00, z=1527.97], EntityPig['Pig'/122676, l='MpServer', x=-1027.53, y=69.00, z=1519.38], EntityPig['Pig'/122678, l='MpServer', x=-1027.97, y=67.00, z=1498.94], MoCEntityAnt['Ant'/116537, l='MpServer', x=-1009.53, y=68.00, z=1437.41], EntityPig['Pig'/122680, l='MpServer', x=-1026.63, y=68.00, z=1528.47], MoCEntityAnt['Ant'/116539, l='MpServer', x=-1005.66, y=68.00, z=1438.31], MoCEntityBird['Bird'/124730, l='MpServer', x=-940.50, y=66.00, z=1529.50], EntityPig['Pig'/122682, l='MpServer', x=-1014.03, y=67.00, z=1519.47], MoCEntityAnt['Ant'/116541, l='MpServer', x=-1006.41, y=69.00, z=1436.81], MoCEntityBird['Bird'/124732, l='MpServer', x=-936.50, y=69.00, z=1531.50], MoCEntitySnake['Snake'/122684, l='MpServer', x=-1027.39, y=69.00, z=1524.11], MoCEntityAnt['Ant'/116543, l='MpServer', x=-1003.63, y=68.00, z=1439.28], MoCEntitySnake['Snake'/122686, l='MpServer', x=-1024.81, y=69.00, z=1519.41], MoCEntityBird['Bird'/124734, l='MpServer', x=-937.63, y=68.00, z=1529.00], MoCEntityBoar['Boar'/124737, l='MpServer', x=-1002.13, y=67.00, z=1531.63], EntityItem['item.tile.mushroom9'/124736, l='MpServer', x=-987.13, y=4.13, z=1537.13], MoCEntityBoar['Boar'/124739, l='MpServer', x=-998.06, y=65.00, z=1529.22], EntityItem['item.item.agricraft:seedPotato'/137042, l='MpServer', x=-1009.78, y=64.13, z=1606.72], MoCEntityMouse['Mouse'/114515, l='MpServer', x=-985.22, y=66.00, z=1462.16], MoCEntityTurkey['Turkey'/122708, l='MpServer', x=-940.50, y=67.00, z=1526.50], MoCEntityBee['Bee'/116567, l='MpServer', x=-995.19, y=69.00, z=1442.97], MoCEntityTurkey['Turkey'/122710, l='MpServer', x=-943.50, y=66.00, z=1526.50], MoCEntityFly['Fly'/116569, l='MpServer', x=-995.44, y=70.00, z=1438.81], MoCEntityBunny['Bunny'/122712, l='MpServer', x=-914.50, y=67.00, z=1512.50], MoCEntityFly['Fly'/116571, l='MpServer', x=-997.75, y=69.00, z=1438.53], MoCEntityBunny['Bunny'/122714, l='MpServer', x=-913.50, y=67.00, z=1512.50], MoCEntityFly['Fly'/116573, l='MpServer', x=-995.59, y=70.00, z=1438.34], MoCEntityBunny['Bunny'/122716, l='MpServer', x=-913.50, y=67.00, z=1514.50], MoCEntityMouse['Mouse'/122718, l='MpServer', x=-903.81, y=66.00, z=1519.13], MoCEntityMouse['Mouse'/122720, l='MpServer', x=-903.25, y=66.00, z=1519.28], MoCEntityGoat['Goat'/114533, l='MpServer', x=-948.50, y=69.00, z=1448.50], MoCEntityBunny['Bunny'/114535, l='MpServer', x=-930.50, y=72.00, z=1452.50], MoCEntityBunny['Bunny'/114537, l='MpServer', x=-928.50, y=72.00, z=1452.50], EntityCreeper['Creeper'/137067, l='MpServer', x=-1027.97, y=23.00, z=1610.44], MoCEntityTurkey['Turkey'/114539, l='MpServer', x=-929.50, y=72.00, z=1459.50], MoCEntityTurkey['Turkey'/114541, l='MpServer', x=-929.50, y=72.00, z=1457.50], EntityStoneCreeper['Stone Creeper'/137069, l='MpServer', x=-1029.44, y=22.00, z=1611.59], EntityZombie['Zombie'/135026, l='MpServer', x=19.40, y=-45.53, z=40.10], MoCEntityBird['Bird'/124805, l='MpServer', x=-1012.53, y=68.00, z=1553.56], MoCEntityBird['Bird'/124807, l='MpServer', x=-1012.72, y=67.81, z=1549.78], MoCEntityBoar['Boar'/114566, l='MpServer', x=-1018.41, y=72.00, z=1448.63], MoCEntityBird['Bird'/124809, l='MpServer', x=-997.53, y=71.00, z=1561.00], MoCEntityBoar['Boar'/114568, l='MpServer', x=-1020.47, y=67.00, z=1446.53], EntitySkeleton['Skeleton'/137099, l='MpServer', x=15.70, y=-60.27, z=15.11], EntityHorse['Horse'/124811, l='MpServer', x=-958.87, y=64.00, z=1541.13], EntityHorse['Horse'/124813, l='MpServer', x=-957.50, y=64.00, z=1540.50], MoCEntitySnake['Snake'/124815, l='MpServer', x=-957.66, y=64.00, z=1545.88], MoCEntitySnake['Snake'/124817, l='MpServer', x=-959.50, y=64.00, z=1543.50], EntityItem['item.item.bone'/145299, l='MpServer', x=-1009.44, y=40.13, z=1585.63], EntityCow['Cow'/124819, l='MpServer', x=-981.50, y=73.00, z=1543.50], EntityHuman['AnderZEL'/137105, l='MpServer', x=-1045.50, y=44.00, z=1453.50], EntityCow['Cow'/124821, l='MpServer', x=-980.50, y=73.00, z=1540.50], EntityCreeper['Creeper'/135063, l='MpServer', x=-1025.50, y=30.00, z=1562.50], EntityCow['Cow'/124823, l='MpServer', x=-983.50, y=73.00, z=1540.50], EntityCow['Cow'/124825, l='MpServer', x=-981.50, y=70.00, z=1538.50], MoCEntityOgre['Ogre'/137117, l='MpServer', x=-1088.53, y=63.00, z=1610.88], EntityChicken['Chicken'/124832, l='MpServer', x=-992.44, y=67.00, z=1531.56], EntityChicken['Chicken'/124836, l='MpServer', x=-982.50, y=71.00, z=1539.50], EntitySpider['Spider'/135077, l='MpServer', x=-1022.50, y=10.00, z=1580.50], MoCEntityAnt['Ant'/116651, l='MpServer', x=-1051.25, y=71.00, z=1466.03], EntityChicken['Chicken'/124842, l='MpServer', x=-982.50, y=73.00, z=1540.50], EntityTrail['unknown'/77741, l='MpServer', x=-1029.13, y=72.33, z=1554.00], EntityChicken['Chicken'/124845, l='MpServer', x=-980.50, y=69.00, z=1536.50], EntitySkeleton['Skeleton'/137137, l='MpServer', x=-964.50, y=69.00, z=1587.50], EntityZombie['Zombie'/137143, l='MpServer', x=-1039.44, y=36.00, z=1563.94], EntityCreeper['Creeper'/135099, l='MpServer', x=-985.34, y=17.00, z=1514.97], MoCEntitySnake['Snake'/114619, l='MpServer', x=-1063.78, y=72.00, z=1459.22], EntityHuman['jadedcat'/135097, l='MpServer', x=-994.50, y=47.00, z=1520.50], EntityCreeper['Creeper'/137145, l='MpServer', x=-1032.50, y=37.00, z=1560.50], MoCEntityRaccoon['Raccoon'/114621, l='MpServer', x=-973.50, y=69.00, z=1453.50], MoCEntityRaccoon['Raccoon'/114623, l='MpServer', x=-973.50, y=70.00, z=1450.50], MoCEntityBunny['Bunny'/126923, l='MpServer', x=-1128.50, y=64.00, z=1562.50], MoCEntityBunny['Bunny'/126925, l='MpServer', x=-1129.94, y=64.00, z=1561.91], MoCEntityBunny['Bunny'/126927, l='MpServer', x=-1131.50, y=64.00, z=1561.50], EntityItem['item.item.netherquartz'/133069, l='MpServer', x=-1017.22, y=10.13, z=1573.88], MoCEntityTurkey['Turkey'/126945, l='MpServer', x=-1106.50, y=64.00, z=1573.50], MoCEntityEnt['Ent'/126947, l='MpServer', x=-1103.47, y=64.00, z=1575.50], MoCEntityEnt['Ent'/126951, l='MpServer', x=-1106.66, y=64.00, z=1576.44], MoCEntityBear['Bear'/114665, l='MpServer', x=-910.25, y=72.00, z=1454.59], MoCEntityBunny['Bunny'/126966, l='MpServer', x=-1095.50, y=64.00, z=1575.50], MoCEntityBunny['Bunny'/126968, l='MpServer', x=-1094.50, y=65.00, z=1572.50], MoCEntityOstrich['Ostrich'/126971, l='MpServer', x=-1070.47, y=66.00, z=1568.25], MoCEntityTurkey['Turkey'/126973, l='MpServer', x=-1067.50, y=64.00, z=1563.50], MoCEntityDuck['Duck'/126975, l='MpServer', x=-1078.16, y=65.00, z=1571.81]]     Retry entities: 0 total; []     Server brand: fml,forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:919)     at net.minecraft.client.main.Main.main(SourceFile:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details:     Minecraft Version: 1.7.10     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 958275176 bytes (913 MB) / 7024934912 bytes (6699 MB) up to 8619819008 bytes (8220 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx9248m -Xms256m     AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 Optifine OptiFine_1.7.10_HD_U_D6 261 mods loaded, 258 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     UCHIJAAAA    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)      UCHIJAAAA    FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAAAA    Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAAAA    AM2-Preloader{0.0.3} [AMCore] (minecraft.jar)      UCHIJAAAA    appliedenergistics2-core{rv3-beta-6} [Applied Energistics 2 Core] (minecraft.jar)      UCHIJAAAA    Aroma1997Core{1.0.2.16} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAAAA    bowinfinityfix{rv0} [Bow Infinity Fix] (minecraft.jar)      UCHIJAAAA    CodeChickenCore{1.0.7.48} [CodeChicken Core] (minecraft.jar)      UCHIJAAAA    Micdoodlecore{} [Micdoodle8 Core] (minecraft.jar)      UCHIJAAAA    NotEnoughItems{1.0.5.120} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.120-universal.jar)      UCHIJAAAA    voltzenginepreloader{0.0.1} [Voltz Engine Preloader] (minecraft.jar)      UCHIJAAAA    xaerominimap_core{1.7.10-1.0} [XaeroMinimapCore] (minecraft.jar)      UCHIJAAAA    xaeroworldmap_core{1.7.10-1.0} [XaeroWorldMapCore] (minecraft.jar)      UCHIJAAAA    OpenModsCore{0.10.1} [OpenModsCore] (minecraft.jar)      UCHIJAAAA    <CoFH ASM>{000} [CoFH ASM] (minecraft.jar)      UCHIJAAAA    FoamFixCore{1.0.4} [FoamFixCore] (minecraft.jar)      UCHIJAAAA    FastCraft{1.25} [FastCraft] (fastcraft-1.25.jar)      UCHIJAAAA    unimixins{0.1.17} [UniMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    unimixins-mixin{0.1.17} [UniMixins: Mixin (UniMix)] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    unimixins-compat{0.1.17} [UniMixins: Compatibility] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixingasm{0.3} [UniMixins: Mixingasm] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    spongemixins{2.0.1} [UniMixins: SpongeMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixinbooterlegacy{1.2.1} [UniMixins: MixinBooterLegacy] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    gasstation{0.5.1} [UniMixins: GasStation] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    gtnhmixins{2.2.0} [UniMixins: GTNHMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    mixinextras{0.1.17} [UniMixins: MixinExtras] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAAAA    AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar)      UCHIJAAAA    arsmagica2{1.4.0.009} [Ars Magica 2] (1.7.10_AM2-1.4.0.009.jar)      UCHIJAAAA    DamageIndicatorsMod{3.3.2} [Damage Indicators] ([1.7.10]DamageIndicatorsMod-3.3.2.jar)      UCHIJAAAA    bspkrsCore{6.16} [bspkrsCore] ([1.7.10]bspkrsCore-universal-6.16.jar)      UCHIJAAAA    FloatingRuins{1.7.10.r02} [FloatingRuins] ([1.7.10]FloatingRuins-universal-1.7.10.r02.jar)      UCHIJAAAA    movillages{1.4.2} [Mo' Villages] ([1.7.10]MoVillages-1.4.2.jar)      UCHIJAAAA    abyssalcraft{1.9.1.3} [AbyssalCraft] (AbyssalCraft-1.7.10-1.9.1.3-FINAL.jar)      UCHIJAAAA    CoFHCore{1.7.10R3.1.4} [CoFH Core] (CoFHCore-[1.7.10]3.1.4-329.jar)      UCHIJAAAA    BuildCraft|Core{7.1.25} [BuildCraft] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Energy{7.1.25} [BC Energy] (buildcraft-7.1.25.jar)      UCHIJAAAA    ActuallyAdditions{1.7.10-r21} [Actually Additions] (ActuallyAdditions-1.7.10-r21.jar)      UCHIJAAAA    IC2{2.2.827-experimental} [IndustrialCraft 2] (industrialcraft-2-2.2.827-experimental.jar)      UCHIJAAAA    AdvancedSolarPanel{1.7.10-3.5.1} [Advanced Solar Panels] (AdvancedSolarPanel_1.7.10_Edition.jar)      UCHIJAAAA    Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar)      UCHIJAAAA    adventurebackpack{1.7.10-0.8b} [Adventure Backpack] (adventurebackpack-1.7.10-0.8c.jar)      UCHIJAAAA    aether_legacy{v1.1.2.2} [The Aether] (aether-1.7.10-v1.1.2.3.jar)      UCHIJAAAA    AgriCraft{1.7.10-1.5.0} [AgriCraft] (AgriCraft-1.7.10-1.5.0.jar)      UCHIJAAAA    aiimprovements{0.0.1.8} [AI Improvements] (AIImprovements-1.7.10-0.0.1b8.jar)      UCHIJAAAA    antiidconflict{1.3.5} [Anti Id Conflict] (AntiIdConflict-1.3.5-1.7.10.jar)      UCHIJAAAA    appliedenergistics2{rv3-beta-6} [Applied Energistics 2] (appliedenergistics2-rv3-beta-6.jar)      UCHIJAAAA    Aquaculture{1.2.6} [Aquaculture] (Aquaculture-1.7.10-1.2.6.21.jar)      UCHIJAAAA    Aroma1997CoreHelper{1.0.2.16} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAAAA    Aroma1997sDimension{1.0} [Aroma1997's Dimensional World] (Aroma1997s-Dimensional-World-1.7.10-1.1.0.1.jar)      UCHIJAAAA    atum{0.6} [Atum] (Atum-1.7.10-0.6.77.jar)      UCHIJAAAA    AWWayofTime{v1.3.3} [Blood Magic: Alchemical Wizardry] (BloodMagic-1.7.10-1.3.3-17.jar)      UCHIJAAAA    Thaumcraft{4.2.3.5} [Thaumcraft] (Thaumcraft-1.7.10-4.2.3.5.jar)      UCHIJAAAA    Botania{r1.8-249} [Botania] (Botania r1.8-249.jar)      UCHIJAAAA    Avaritia{1.13} [Avaritia] (Avaritia-1.13.jar)      UCHIJAAAA    iChunUtil{4.2.3} [iChunUtil] (iChunUtil-4.2.3.jar)      UCHIJAAAA    BackTools{4.0.0} [BackTools] (BackTools-4.0.0.jar)      UCHIJAAAA    BBG{1.0.0} [BetterBedrockGen] (BBG-1.0.0.jar)      UCHIJAAAA    bdlib{1.9.5.1} [BD Lib] (bdlib-1.9.5.1-mc1.7.10.jar)      UCHIJAAAA    Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar)      UCHIJAAAA    Natura{2.2.0} [Natura] (natura-1.7.10-2.2.0.1.jar)      UCHIJAAAA    BiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar)      UCHIJAAAA    ExtrabiomesXL{3.16.4} [ExtrabiomesXL] (extrabiomesxl_1.7.10-3.16.4.jar)      UCHIJAAAA    Forestry{4.2.16.64} [Forestry for Minecraft] (forestry_1.7.10-4.2.16.64.jar)      UCHIJAAAA    beebetteratbees{0.2} [BeeBetterAtBees] (BeeBetterAtBees-0.3.jar)      UCHIJAAAA    BetterAchievements{0.1.0} [Better Achievements] (BetterAchievements-1.7.10-0.1.0.jar)      UCHIJAAAA    BetterPing{1.0} [Better Ping] (BetterPing-1.7.10-1.0.jar)      UCHIJAAAA    BiblioCraft{1.11.7} [BiblioCraft] (BiblioCraft[v1.11.7][MC1.7.10].jar)      UCHIJAAAA    BiblioWoodsBoP{1.9} [BiblioWoods Biomes O'Plenty Edition] (BiblioWoods[BiomesOPlenty][v1.9].jar)      UCHIJAAAA    BiblioWoodsEBXL{1.4} [BiblioWoods ExtraBiomesXL Edition] (BiblioWoods[ExtraBiomesXL][v1.4].jar)      UCHIJAAAA    BiblioWoodsForestry{1.7} [BiblioWoods Forestry Edition] (BiblioWoods[Forestry][v1.7].jar)      UCHIJAAAA    BiblioWoodsNatura{1.5} [BiblioWoods Natura Edition] (BiblioWoods[Natura][v1.5].jar)      UCHIJAAAA    ThermalFoundation{1.7.10R1.2.6} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.2.6-118.jar)      UCHIJAAAA    ThermalExpansion{1.7.10R4.1.5} [Thermal Expansion] (ThermalExpansion-[1.7.10]4.1.5-248.jar)      UCHIJAAAA    BigReactors{0.4.3A} [Big Reactors] (BigReactors-0.4.3A.jar)      UCHIJAAAA    BinnieCore{2.0.22.7} [Binnie Core] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    Botany{2.0.22.7} [Botany] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    ExtraTrees{2.0.22.7} [Extra Trees] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    Genetics{2.0.22.7} [Genetics] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    ExtraBees{2.0.22.7} [Extra Bees] (binnie-mods-1.7.10-2.0.22.7.jar)      UCHIJAAAA    blur{MC1.7.10-1.0.1-2} [Blur] (Blur-MC1.7.10-1.0.1-2.jar)      UCHIJAAAA    BrandonsCore{1.0.0.12} [Brandon's Core] (BrandonsCore-1.0.0.12.jar)      UCHIJAAAA    BuildCraft|Builders{7.1.25} [BC Builders] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Robotics{7.1.25} [BC Robotics] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Silicon{7.1.25} [BC Silicon] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Transport{7.1.25} [BC Transport] (buildcraft-7.1.25.jar)      UCHIJAAAA    BuildCraft|Factory{7.1.25} [BC Factory] (buildcraft-7.1.25.jar)      UCHIJAAAA    Railcraft{9.12.2.0} [Railcraft] (Railcraft_1.7.10-9.12.2.0.jar)      UCHIJAAAA    TwilightForest{2.4.3} [The Twilight Forest] (TwilightForest-2.4.3.jar)      UCHIJAAAA    ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UCHIJAAAA    chisel{2.9.5.11} [Chisel] (Chisel-2.9.5.11.jar)      UCHIJAAAA    CarpentersBlocks{3.3.8.2} [Carpenter's Blocks] (Carpenter's Blocks v3.3.8.2 - MC 1.7.10.jar)      UCHIJAAAA    ChestTransporter{2.0.6} [Chest Transporter] (ChestTransporter-1.7.10-2.0.6.jar)      UCHIJAAAA    ChickenChunks{1.3.4.19} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.19-universal.jar)      UCHIJAAAA    chococraft{4.1.5} [Clienthax's ChocoCraft] (ChocoCraft-4.1.5.jar)      UCHIJAAAA    CompactSolars{4.4.39.315} [Compact Solar Arrays] (CompactSolars-1.7.10-4.4.39.315-universal.jar)      UCHIJAAAA    ComputerCraft{1.75} [ComputerCraft] (ComputerCraft1.75.jar)      UCHIJAAAA    cosmeticarmorreworked{1.7.10-v7} [CosmeticArmorReworked] (CosmeticArmorReworked-1.7.10-v7.jar)      UCHIJAAAA    CustomSpawner{3.3.0} [DrZhark's CustomSpawner] (CustomMobSpawner 3.3.0.zip)      UCHIJAAAA    dimensionalcake{0.0.1} [Dimensional Cake] (dimensionalcakes-0.0.1.jar)      UCHIJAAAA    DisenchanterMod{1.6} [Disenchanter] (DisenchanterMod-[1.7.10]1.6.jar)      UCHIJAAAA    DraconicEvolution{1.0.2h} [Draconic Evolution] (Draconic-Evolution-1.7.10-1.0.2h.jar)      UCHIJAAAA    MoCreatures{6.3.1} [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v6.3.1.zip)      UCHIJAAAA    DynamicLights{1.3.9a} [Dynamic Lights] (Dynamic.Lights-1.3.9abugfix2024.jar)      UCHIJAAAA    dsurround{1.0.6.4} [Dynamic Surroundings] (DynamicSurroundings-1.7.10-1.0.6.4.jar)      UCHIJAAAA    elementalcreepers{4.3.0} [Elemental Creepers] (Elemental Creepers-universal_1.7.10-4.3.0.jar)      UCHIJAAAA    eplus{3.0.2-d} [Enchanting Plus] (EnchantingPlus-1.7.10-3.0.2-d.jar)      UCHIJAAAA    Enchiridion{1.3} [Enchiridion] (Enchiridion 2-1.7.10-2.0.2a.jar)      UCHIJAAAA    Enchiridion2{2.0.2a} [Enchiridion 2] (Enchiridion 2-1.7.10-2.0.2a.jar)      UCHIJAAAA    endercore{1.7.10-0.2.0.40_beta} [EnderCore] (EnderCore-1.7.10-0.2.0.40_beta.jar)      UCHIJAAAA    endercrop{1.7.10-1.1} [Ender Crop] (endercrop-1.7.10-1.2.jar)      UCHIJAAAA    MineFactoryReloaded{1.7.10R2.8.1} [MineFactory Reloaded] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar)      UCHIJAAAA    EnderIO{1.7.10-2.3.0.430_beta} [Ender IO] (EnderIO-1.7.10-2.3.0.430_beta.jar)      UCHIJAAAA    Roguelike{roguelike-1.5.3-GTNH-master.5+8684ddd572-dirty-master.9+2f9a51e578-dirty} [Roguelike Dungeons] (roguelike-1.5.5.jar)      UCHIJAAAA    enderlicious{Enderlicious} [§5Enderlicious] (enderlicious-1.1.2.jar)      UCHIJAAAA    EnderTech{1.7.10-0.3.2.405} [EnderTech] (EnderTech-1.7.10-0.3.2.405.jar)      UCHIJAAAA    enderutilities{0.5.3} [Ender Utilities] (enderutilities-1.7.10-0.5.3.jar)      UCHIJAAAA    EnderZoo{1.7.10-1.0.15.32} [Ender Zoo] (EnderZoo-1.7.10-1.0.15.32.jar)      UCHIJAAAA    entityculling{@VER@} [EntityCulling] (entityculling-1.6.4-mc1.7.10.jar)      UCHIJAAAA    evilcraft{0.9.13} [EvilCraft] (EvilCraft-1.7.10-0.9.13.jar)      UCHIJAAAA    golems{1.20} [Extra Golems] (Extra-Golems[1.7.10]-1.20.jar)      UCHIJAAAA    extracells{2.4.0} [Extra Cells 2] (ExtraCells-1.7.10-2.4.0.jar)      UCHIJAAAA    golems_addon_tconstruct{1.08} [Tinkers' Golems Addon] (ExtraGolemsTinkersAddon[1.7.10]-1.08.jar)      UCHIJAAAA    ExtraUtilities{1.2.12} [Extra Utilities] (extrautilities-1.2.12.jar)      UCHIJAAAA    harvestcraft{1.7.10j} [Pam's HarvestCraft] (Pam's HarvestCraft 1.7.10Lb.jar)      UCHIJAAAA    ImmersiveEngineering{0.7.7} [Immersive Engineering] (ImmersiveEngineering-0.7.7.jar)      UCHIJAAAA    TConstruct{1.7.10-1.8.8.build988} [Tinkers' Construct] (TConstruct-1.7.10-1.8.8.jar)      UCHIJAAAA    ExtraTiC{1.4.6} [ExtraTiC] (ExtraTiC-1.7.10-1.4.6.jar)      UCHIJAAAA    farlanders{1.2b} [The Farlanders] (farlanders-1.7.10-v1.2b.jar)      UCHIJAAAA    foamfix{@VERSION@} [FoamFix] (FoamFix-1.7.10-universal-1.0.4.jar)      UCHIJAAAA    FoodExpansion{1.0} [Food Expansion] (FoodExpansion1.1.1-mc1.7.10.jar)      UCHIJAAAA    llibrary{1.5.2} [LLibrary] (llibrary-1.5.2-1.7.10.jar)      UCHIJAAAA    fossil{7.3.2} [Fossils and Archeology Revival] (fossilsarcheology-7.3.2.jar)      UCHIJAAAA    GalacticraftCore{3.0.12} [Galacticraft Core] (Galacticraft-1.7-3.0.12.504.jar)      UCHIJAAAA    GalacticraftMars{3.0.12} [Galacticraft Planets] (Galacticraft-1.7-3.0.12.504.jar)      UCHIJAAAA    MagicBees{2.4.4} [Magic Bees] (magicbees-1.7.10-2.4.4.jar)      UCHIJAAAA    gendustry{1.6.3.132} [GenDustry] (gendustry-1.6.3.132-mc1.7.10.jar)      UCHIJAAAA    GraviGun{4.0.0-beta} [GraviGun] (GravityGun-4.0.0-beta.jar)      UCHIJAAAA    gtnhlib{0.5.13} [GTNH Lib] (gtnhlib-0.5.13.jar)      UCHIJAAAA    headcrumbs{1.7.4} [Headcrumbs] (Headcrumbs-1.7.4.jar)      UCHIJAAAA    hexcraft{0.13.2} [HEXCraft] (HEXCraft-1.7.10-0.13.2.jar)      UCHIJAAAA    hexxitgear{1.5.2R1.0} [Hexxit Gear] (HexxitGear-1.7.10-4.0a.jar)      UCHIJAAAA    voltzengine{1.11.0.491} [Voltz Engine] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    icbmclassic{2.16.4.3} [ICBM-Classic] (ICBM-classic-1.7.10-2.16.4b3.jar)      UCHIJAAAA    immersivecavegen{1.2g-hotfix5} [Immersive Cavegen] (immersivecavegen-1.2g-hotfix5.jar)      UCHIJAAAA    immersiveintegration{0.6.8} [Immersive Integration] (immersiveintegration-0.6.8.jar)      UCHIJAAAA    Instrumentus{1.7.10-1.4.1} [Instrumentus] (Instrumentus-1.4.1.jar)      UCHIJAAAA    InventoryPets{1.5.2} [Inventory Pets] (inventorypets-1.7.10-1.5.2-universal.jar)      UCHIJAAAA    inventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar)      UCHIJAAAA    IronChest{6.0.62.742} [Iron Chest] (ironchest-1.7.10-6.0.62.742-universal.jar)      UCHIJAAAA    ironfurnaces{1.2.4} [Iron Furnaces] (ironfurnaces-1.2.4R.jar)      UCHIJAAAA    irontank{1.7.10-1.1.16.16} [Iron Tanks] (irontanks-1.7.10-1.1.16.16.jar)      UCHIJAAAA    jaff{1.4.2_for_1.7.10} [Just a Few Fish] (JustAFewFish-1.4.2_for_1.7.10.jar)      UCHIJAAAA    LavaMonsters{2.2.1} [Lava Monsters] (LavaMonsters-1.7.10-2.2.1.jar)      UCHIJAAAA    legendgear{2.b.2.1} [LegendGear 2] (LegendGear 2-1.7.10-2.b.2.1.jar)      UCHIJAAAA    levels{r3.0.1} [Levels] (Levels-1.7.10-r3.0.1.jar)      UCHIJAAAA    lpb{1.0} [Loading Progress Bar] (Loading-Progress-Bar-v1.0-mc1.7.10.jar)      UCHIJAAAA    login_shield{1.7.10-2-gf6e21a7} [Login Shield] (Login_Shield-1.7.10-2-gf6e21a7.jar)      UCHIJAAAA    lucky{5.1.0} [Lucky Block] (lucky-block-forge-1.7.10-1.0.jar)      UCHIJAAAA    LunatriusCore{1.1.2.21} [LunatriusCore] (LunatriusCore-1.7.10-1.1.2.21-universal.jar)      UCHIJAAAA    Mekanism{9.1.1} [Mekanism] (Mekanism-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    magicalcrops{4.0.0_PUBLIC_BETA_4b} [Magical Crops: Core] (magicalcrops-4.0.0_PUBLIC_BETA_5.jar)      UCHIJAAAA    MekanismGenerators{9.1.1} [MekanismGenerators] (MekanismGenerators-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    MekanismTools{9.1.1} [MekanismTools] (MekanismTools-1.7.10-9.1.1.1031.jar)      UCHIJAAAA    meteors{2.14.3} [Falling Meteors] (meteors-1.7.10-2.14.3.jar)      UCHIJAAAA    MineFactoryReloaded|CompatAppliedEnergistics{1.7.10R2.8.1} [MFR Compat: Applied Energistics] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatBuildCraft{1.7.10R2.8.1} [MFR Compat: BuildCraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatChococraft{1.7.10R2.8.1} [MFR Compat: Chococraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatExtraBiomes{1.7.10R2.8.1} [MFR Compat: ExtraBiomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatForestry{1.7.10R2.8.1} [MFR Compat: Forestry] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatForgeMicroblock{1.7.10R2.8.1} [MFR Compat: ForgeMicroblock] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatIC2{1.7.10R2.8.1} [MFR Compat: IC2] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MrTJPCoreMod{1.1.0.33} [MrTJPCore] (MrTJPCore-1.1.0.33-universal.jar)      UCHIJAAAA    ProjRed|Core{4.7.0pre12.95} [ProjectRed Core] (ProjectRed-1.7.10-4.7.0pre12.95-Base.jar)      UCHIJAAAA    ProjRed|Exploration{4.7.0pre12.95} [ProjectRed Exploration] (ProjectRed-1.7.10-4.7.0pre12.95-World.jar)      UCHIJAAAA    MineFactoryReloaded|CompatProjRed{1.7.10R2.8.1} [MFR Compat ProjectRed] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatRailcraft{1.7.10R2.8.1} [MFR Compat: Railcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatThaumcraft{1.7.10R2.8.1} [MFR Compat: Thaumcraft] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatThermalExpansion{1.7.10R2.8.1} [MFR Compat: Thermal Expansion] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatTConstruct{1.7.10R2.8.1} [MFR Compat: Tinkers' Construct] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatTwilightForest{1.7.10R2.8.1} [MFR Compat: TwilightForest] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    MineFactoryReloaded|CompatVanilla{1.7.10R2.8.1} [MFR Compat: Vanilla] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UCHIJAAAA    testdummy{1.0} [MmmMmmMmmMmm] (MmmMmmMmmMmm-1.7.10-1.9.jar)      UCHIJAAAA    mozombies{2.1.0} [Mo' Zombies] (mo_zombies_2.1.0.jar)      UCHIJAAAA    numina{1.7.10} [Numina] (Numina-0.4.1.106.jar)      UCHIJAAAA    p455w0rdslib{1.0.4} [p455w0rd's Library] (p455w0rdslib-1.7.10-1.0.4.jar)      UCHIJAAAA    ae2wct{1.7.10-rv3-1.8.7.4b} [AE2 Wireless Crafting Terminal] (WirelessCraftingTerminal-1.7.10-rv3-1.8.7.4b.jar)      UCHIJAAAA    powersuits{1.7.10-0.11.1.117} [MachineMuse's Modular Powersuits] (ModularPowersuits-1.7.10-0.11.1.117.jar)      UCHIJAAAA    MoreBows{1.0.10} [More Bows Restrung] (MoreBows-1.0.10.jar)      UCHIJAAAA    MouseTweaks{2.4.4} [Mouse Tweaks] (MouseTweaks-2.4.4-mc1.7.10.jar)      UCHIJAAAA    mowziesmobs{1.2.9} [Mowzie's Mobs] (MowziesMobs-1.2.99.jar)      UCHIJAAAA    cfm{3.4.7} [§9MrCrayfish's Furniture Mod] (MrCrayfishFurnitureModv3.4.7(1.7.10).jar)      UCHIJAAAA    Mystcraft{0.12.3.04} [Mystcraft] (mystcraft-1.7.10-0.12.3.04.jar)      UCHIJAAAA    naturescompass{1.3.1} [Nature's Compass] (NaturesCompass-1.7.10-1.3.1.jar)      UCHIJAAAA    NetherOres{1.7.10R2.3.1} [Nether Ores] (NetherOres-[1.7.10]2.3.1-22.jar)      UCHIJAAAA    notenoughIDs{1.4.3.4} [NotEnoughIDs] (NotEnoughIDs-1.4.3.4.jar)      UCHIJAAAA    NuclearCraft{1.9g} [NuclearCraft] (NuclearCraft-1.9g--1.7.10.jar)      UCHIJAAAA    samsocean{1.7.10-1.0.0} [Classic Oceans] (OceanFloor-1.7.10-1.0.0.jar)      UCHIJAAAA    OpenMods{0.10.1} [OpenMods] (OpenModsLib-1.7.10-0.10.1.jar)      UCHIJAAAA    OpenBlocks{1.6} [OpenBlocks] (OpenBlocks-1.7.10-1.6.jar)      UCHIJAAAA    openmodularturrets{2.3.6} [Open Modular Turrets] (OpenModularTurrets-2.3.6.jar)      UCHIJAAAA    PickleTweaks{1.5} [PickleTweaks] (PickleTweaks-1.6.jar)      UCHIJAAAA    PortalGun{4.0.0-beta-6} [PortalGun] (PortalGun-4.0.0-beta-6-fix-1.jar)      UCHIJAAAA    pressure{1.3.0.fix1} [Pressure Pipes] (pressure-1.3.0.fix1-mc1.7.10.jar)      UCHIJAAAA    primitivemobs{1.0} [Primitive Mobs] (primitivemobs-1.0c-1.7.10.jar)      UCHIJAAAA    ProjectE{1.7.10-PE1.10.1} [ProjectE] (ProjectE-1.7.10-PE1.10.1.jar)      UCHIJAAAA    ProjRed|Transmission{4.7.0pre12.95} [ProjectRed Transmission] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar)      UCHIJAAAA    ProjRed|Transportation{4.7.0pre12.95} [ProjectRed Transportation] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar)      UCHIJAAAA    ProjRed|Compatibility{4.7.0pre12.95} [ProjectRed Compatibility] (ProjectRed-1.7.10-4.7.0pre12.95-Compat.jar)      UCHIJAAAA    ProjRed|Integration{4.7.0pre12.95} [ProjectRed Integration] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar)      UCHIJAAAA    ProjRed|Fabrication{4.7.0pre12.95} [ProjectRed Fabrication] (ProjectRed-1.7.10-4.7.0pre12.95-Fabrication.jar)      UCHIJAAAA    ProjRed|Illumination{4.7.0pre12.95} [ProjectRed Illumination] (ProjectRed-1.7.10-4.7.0pre12.95-Lighting.jar)      UCHIJAAAA    ProjRed|Expansion{4.7.0pre12.95} [ProjectRed Expansion] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar)      UCHIJAAAA    quantumflux{1.7.10-1.3.4} [QuantumFlux] (QuantumFlux-1.7.10-1.3.4.jar)      UCHIJAAAA    RandomThings{2.2.4} [Random Things] (RandomThings-2.2.4.jar)      UCHIJAAAA    reborncore{1.1.0.15} [RebornCore] (RebornCore-1.1.0.15-universal.jar)      UCHIJAAAA    rfutilities{0.5-hotfix4} [RFUtilities] (RFUtilities-MC1.7.10-0.5-hotfix4.jar)      UCHIJAAAA    secretroomsmod{4.7.1} [The SecretRoomsMod] (secretroomsmod-1.7.10-4.7.1.413.jar)      UCHIJAAAA    simplecore{1.1.1.3} [SimpleCore API] (simplecore-1.7.10-1.1.1.3.jar)      UCHIJAAAA    simpleores{1.6.1.4} [SimpleOres 2] (simpleores-1.7.10-1.6.1.4.jar)      UCHIJAAAA    SophisticatedWolves{3.2.0} [SophisticatedWolves] (Sophisticated Wolves 3.2.0.jar)      UCHIJAAAA    Stackie{1.6.0.36} [Stackie] (Stackie-1.7.10-1.6.0.36-universal.jar)      UCHIJAAAA    StevesFactoryManager{A93} [Steve's Factory Manager] (StevesFactoryManagerA93.jar)      UCHIJAAAA    StevesAddons{0.10.16} [Steve's Addons] (StevesAddons-1.7.10-0.10.16.jar)      UCHIJAAAA    StevesCarts{2.0.0.b18} [Steve's Carts 2] (StevesCarts2.0.0.b18.jar)      UCHIJAAAA    StorageDrawers{1.7.10-1.10.9} [Storage Drawers] (StorageDrawers-1.7.10-1.10.9.jar)      UCHIJAAAA    Sync{4.0.1} [Sync] (Sync-4.0.1.jar)      UCHIJAAAA    techreborn{0.7.21.1131} [TechReborn] (TechReborn-1.7.10-0.7.21.1131-universal.jar)      UCHIJAAAA    thaumcraftneiplugin{@VERSION@} [Thaumcraft NEI Plugin] (thaumcraftneiplugin-1.7.10-1.7a.jar)      UCHIJAAAA    thebetweenlands{1.0.6-alpha} [The Betweenlands] (TheBetweenlands-1.0.6-alpha-universal.jar)      UCHIJAAAA    erebus{0.4.7} [Erebus] (TheErebus-0.4.7.jar)      UCHIJAAAA    ThermalDynamics{1.7.10R1.2.1} [Thermal Dynamics] (ThermalDynamics-[1.7.10]1.2.1-172.jar)      UCHIJAAAA    TiCTooltips{1.2.5} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.2.5.jar)      UCHIJAAAA    tumbleweed{1.7.10-0.2} [Tumbleweed] (tumbleweed-1.7.10-0.2.jar)      UCHIJAAAA    ultimate_unicorn_mod{1.5.17} [Wings, Horns, and Hooves, the Ultimate Unicorn Mod!] (ultimate_unicorn_mod-1.7.10-1.5.17.jar)      UCHIJAAAA    vampirism{0.7.9} [Vampirism] (Vampirism-1.7.10-0.7.9.jar)      UCHIJAAAA    VanillaPlus{1.5.1} [VanillaPlus] (VanillaPlus-1.7.10-1.5.1.jar)      UCHIJAAAA    VeinMiner{0.36.0_1.7.10-28a7f13} [Vein Miner] (VeinMiner-1.7.10-0.36.0.496+28a7f13.jar)      UCHIJAAAA    VeinMinerModSupport{0.36.0_1.7.10-28a7f13} [Mod Support] (VeinMiner-1.7.10-0.36.0.496+28a7f13.jar)      UCHIJAAAA    voltzenginemodflag{1.11.0.491} [VoltzEngine mod protection, flag, and region system] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    voltzenginemodcompat{1.11.0.491} [Voltz Engine Mod Compatibility Loader] (VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar)      UCHIJAAAA    WailaHarvestability{1.1.6} [Waila Harvestability] (WailaHarvestability-mc1.7.10-1.1.6.jar)      UCHIJAAAA    wailaplugins{MC1.7.10-0.2.0-25} [WAILA Plugins] (WAILAPlugins-MC1.7.10-0.2.0-25.jar)      UCHIJAAAA    wawla{1.3.1} [What Are We Looking At] (Wawla-1.0.5.120.jar)      UCHIJAAAA    wildnetherwart{2.1} [Wild Netherwart] (wild_netherwart-1.7.10-v2.1.jar)      UCHIJAAAA    witchery{0.24.1} [Witchery] (witchery-1.7.10-0.24.1.jar)      UCHIJAAAA    wolfarmor{1.3.0} [Wolf Armor and Storage] (wolfarmor-1.3.0.1.jar)      UCHIJAAAA    XaeroMinimapFair{21.10.40} [Xaero's Minimap] (Xaeros_Minimap_FP21.10.40_Forge_1.7.10.jar)      UCHIJAAAA    XaeroWorldMap{1.14.1.32} [Xaero's World Map] (XaerosWorldMap_1.14.1.32_Forge_1.7.10.jar)      UCHIJAAAA    McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UCHIJAAAA    ForgeRelocation{0.0.1.4} [ForgeRelocation] (ForgeRelocation-0.0.1.4-universal.jar)      UCHIJAAAA    MCFrames{1.0} [MCFrames] (ForgeRelocation-0.0.1.4-universal.jar)      UCHIJAAAA    RelocationFMP{0.0.1.2} [RelocationFMP] (ForgeRelocationFMP-0.0.1.2-universal.jar)      UCHIJAAAA    libsandstone{1.0.0} [libsandstone] (LibSandstone-1.0.0.jar)      UCHIJAAAA    IguanaTweaksTConstruct{1.7.10-2.1.6.163} [Iguana Tinker Tweaks] (IguanaTinkerTweaks-1.7.10-2.1.6.jar)      UCHIJAAAA    jaopca{1.7.10-W.0.6.25} [JAOPCA] (JAOPCA-1.7.10-W.0.6.25.jar)      UCHIJAAAA    UniDict{1.7.10-2.9.2} [UniDict] (UniDict-1.7.10-2.9.2.jar)      UCHIJAAAA    ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar)      UD    MineFactoryReloaded|CompatAtum{1.7.10R2.8.1} [MFR Compat: Atum] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UD    MineFactoryReloaded|CompatBackTools{1.7.10R2.8.1} [MFR Compat: BackTools] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      UD    MineFactoryReloaded|CompatSufficientBiomes{1.7.10R2.8.1} [MFR Compat: Sufficient Biomes] (MineFactoryReloaded-[1.7.10]2.8.1-174.jar)      GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 551.76' Renderer: 'NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2'     OpenModsLib class transformers: [stencil_patches:FINISHED],[movement_callback:FINISHED],[player_damage_hook:FINISHED],[map_gen_fix:FINISHED],[gl_capabilities_hook:FINISHED],[player_render_hook:FINISHED]     Class transformer null safety: all safe     CoFHCore: -[1.7.10]3.1.4-329     AE2 Version: beta rv3-beta-6 for Forge 10.13.4.1448     Mantle Environment: DO NOT REPORT THIS CRASH! Unsupported mods in environment: optifine     ThermalFoundation: -[1.7.10]1.2.6-118     ThermalExpansion: -[1.7.10]4.1.5-248     MineFactoryReloaded: -[1.7.10]2.8.1-174     TConstruct Environment: Environment healthy.     NetherOres: -[1.7.10]2.3.1-22     ThermalDynamics: -[1.7.10]1.2.1-172     List of loaded APIs:          * AbyssalCraftAPI (1.7) from AbyssalCraft-1.7.10-1.9.1.3-FINAL.jar         * ActuallyAdditionsAPI (3) from ActuallyAdditions-1.7.10-r21.jar         * ae2wct|API (1.7.10-rv3-1.8.6b) from WirelessCraftingTerminal-1.7.10-rv3-1.8.7.4b.jar         * AgriCraftAPI (1.0) from AgriCraft-1.7.10-1.5.0.jar         * appliedenergistics2|API (rv3) from appliedenergistics2-rv3-beta-6.jar         * Baubles|API (1.0.1.10) from Baubles-1.7.10-1.0.1.10.jar         * BetterAchievements|API (0.1.0) from BetterAchievements-1.7.10-0.1.0.jar         * BiomesOPlentyAPI (1.0.0) from BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar         * BloodMagicAPI (1.3.3-13) from BloodMagic-1.7.10-1.3.3-17.jar         * BotaniaAPI (76) from Botania r1.8-249.jar         * BuildCraftAPI|blocks (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|blueprints (1.5) from buildcraft-7.1.25.jar         * BuildCraftAPI|boards (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|core (1.0) from extrautilities-1.2.12.jar         * BuildCraftAPI|crops (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|events (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|facades (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|filler (4.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|fuels (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|gates (4.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|items (1.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|library (2.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|lists (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|power (1.3) from buildcraft-7.1.25.jar         * BuildCraftAPI|recipes (3.1) from buildcraft-7.1.25.jar         * BuildCraftAPI|robotics (3.0) from buildcraft-7.1.25.jar         * BuildCraftAPI|statements (1.1) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tablet (1.0) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tiles (1.2) from Railcraft_1.7.10-9.12.2.0.jar         * BuildCraftAPI|tools (1.0) from extrautilities-1.2.12.jar         * BuildCraftAPI|transport (4.1) from Railcraft_1.7.10-9.12.2.0.jar         * CarpentersBlocks|API (3.3.7) from Carpenter's Blocks v3.3.8.2 - MC 1.7.10.jar         * ChiselAPI (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Carving (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Rendering (0.1.1) from Chisel-2.9.5.11.jar         * CoFHAPI (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|block (1.7.10R1.1.0) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHAPI|core (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|energy (1.7.10R1.0.7) from StevesAddons-1.7.10-0.10.16.jar         * CoFHAPI|fluid (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|inventory (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|item (1.7.10R1.0.10) from Mekanism-1.7.10-9.1.1.1031.jar         * CoFHAPI|modhelpers (1.7.10R1.1.0) from NuclearCraft-1.9g--1.7.10.jar         * CoFHAPI|tileentity (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHAPI|transport (1.7.10R1.1.0) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHAPI|world (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|audio (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui|container (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|gui|element (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|gui|element|listbox (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|gui|slot (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|inventory (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|render (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|render|particle (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util|helpers (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|util|position (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar         * CoFHLib|world (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * CoFHLib|world|feature (1.7.10R1.0.4B1) from EnderTech-1.7.10-0.3.2.405.jar         * ComputerCraft|API (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|FileSystem (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Lua (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Media (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Peripheral (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Permissions (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Redstone (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Turtle (1.75) from ComputerCraft1.75.jar         * DraconicEvolution|API (1.2) from Draconic-Evolution-1.7.10-1.0.2h.jar         * EnderIOAPI (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Redstone (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Teleport (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * EnderIOAPI|Tools (0.0.2) from EnderIO-1.7.10-2.3.0.430_beta.jar         * ForestryAPI|apiculture (4.8.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|arboriculture (4.2.1) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|circuits (3.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|core (5.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|farming (2.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|food (1.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|fuels (2.0.1) from TechReborn-1.7.10-0.7.21.1131-universal.jar         * ForestryAPI|genetics (4.7.1) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|hives (4.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|lepidopterology (1.3.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|mail (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|multiblock (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|recipes (5.4.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|storage (3.0.0) from forestry_1.7.10-4.2.16.64.jar         * ForestryAPI|world (2.1.0) from forestry_1.7.10-4.2.16.64.jar         * ForgeRelocation|API (0.0.1.4) from ForgeRelocation-0.0.1.4-universal.jar         * Fossils and Archeology Revival API (7.3.1) from fossilsarcheology-7.3.2.jar         * Galacticraft API (1.1) from Galacticraft-1.7-3.0.12.504.jar         * gendustryAPI (2.3.0) from gendustry-1.6.3.132-mc1.7.10.jar         * IC2API (1.0) from industrialcraft-2-2.2.827-experimental.jar         * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.7.7.jar         * MekanismAPI|core (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|energy (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|gas (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|infuse (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|laser (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|reactor (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|recipe (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * MekanismAPI|transmitter (9.0.0) from NuclearCraft-1.9g--1.7.10.jar         * MekanismAPI|util (9.0.0) from Mekanism-1.7.10-9.1.1.1031.jar         * Mystcraft|API (0.1) from mystcraft-1.7.10-0.12.3.04.jar         * OpenBlocks|API (1.1) from OpenBlocks-1.7.10-1.6.jar         * pressureAPI (1.3.0.fix1) from pressure-1.3.0.fix1-mc1.7.10.jar         * ProjectEAPI (7) from ProjectE-1.7.10-PE1.10.1.jar         * RailcraftAPI|bore (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|carts (1.6.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|core (1.5.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|crafting (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|electricity (2.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|events (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|fuel (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|helpers (1.1.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|items (1.0.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|locomotive (1.1.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|signals (2.3.0) from Railcraft_1.7.10-9.12.2.0.jar         * RailcraftAPI|tracks (2.3.0) from Railcraft_1.7.10-9.12.2.0.jar         * reborncoreAPI (1.1.0.15) from RebornCore-1.1.0.15-universal.jar         * StorageDrawersAPI (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|config (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|event (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|inventory (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|pack (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|registry (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|render (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage-attribute (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * techrebornAPI (0.7.21.1131) from TechReborn-1.7.10-0.7.21.1131-universal.jar         * Thaumcraft|API (4.2.2.0) from Railcraft_1.7.10-9.12.2.0.jar         * VeinMinerApi (0.3) from VeinMiner-1.7.10-0.36.0.496+28a7f13.jar         * VoltzEngineAPI (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|crafting-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|data (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|energy (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|energy-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|event (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|explosive-items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|explosives (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|items (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|recipe (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|tile (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|tools (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * VoltzEngineAPI|weapons (0.11.0) from VoltzEngine-1.7.10-1.11.0b491-withCodingLib0.2.8.jar         * WailaAPI (1.2) from Waila-1.5.10_1.7.10.jar     Chisel: Errors like "[FML]: Unable to lookup ..." are NOT the cause of this crash. You can safely ignore these errors. And update forge while you're at it.     EnderIO: Found the following problem(s) with your installation:                   * Optifine is installed. This is NOT supported.                   * An unknown AE2 API is installed (rv3 from appliedenergistics2-rv3-beta-6.jar).                     Ender IO was build against API version rv2 and may or may not work with a newer version.                   * The RF API that is being used (1.7.10R1.0.2 from <unknown>) differes from that that is reported as being loaded (1.7.10R1.0.7 from StevesAddons-1.7.10-0.10.16.jar).                     It is a supported version, but that difference may lead to problems.                  This may have caused the error. Try reproducing the crash WITHOUT this/these mod(s) before reporting it.     Stencil buffer state: Function set: GL30, pool: forge, bits: 8     Forestry : Warning: You have mods that change the behavior of Minecraft, ForgeModLoader, and/or Minecraft Forge to your client:  Optifine These may have caused this error, and may not be supported. Try reproducing the crash WITHOUT these mods, and report it then.     AE2 Integration: IC2:ON, RotaryCraft:OFF, RC:ON, BuildCraftCore:ON, BuildCraftTransport:ON, BuildCraftBuilder:ON, RF:ON, RFItem:ON, MFR:ON, DSU:ON, FZ:OFF, FMP:ON, RB:OFF, CLApi:OFF, Waila:ON, InvTweaks:ON, NEI:ON, CraftGuide:OFF, Mekanism:ON, ImmibisMicroblocks:OFF, BetterStorage:OFF, OpenComputers:OFF, PneumaticCraft:OFF     Launched Version: forge-10.13.4.1614     LWJGL: 2.9.1     OpenGL: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 551.76, NVIDIA Corporation     GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported.     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs: []     Current Language: English (US)     Profiler Position: N/A (disabled)     Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used     Anisotropic Filtering: Off (1)     OptiFine Version: OptiFine_1.7.10_HD_U_D6     Render Distance Chunks: 8     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     OpenGlVersion: 4.6.0 NVIDIA 551.76     OpenGlRenderer: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2     OpenGlVendor: NVIDIA Corporation     CpuCount: 4
    • Also doubting if my usage of awardStat is correct. It just looks like this right now: player.awardStat(SampleModRegistry.FIREWORK_BOOSTS_USED.getId()); but there are places vanilla Minecraft uses the function like this: .awardStat(Stats.CUSTOM.get(Stats.DAMAGE_BLOCKED_BY_SHIELD)
    • Make a test without fancytrinkets
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.