perromercenary00
Members-
Posts
849 -
Joined
-
Last visited
-
Days Won
5
Everything posted by perromercenary00
-
good days 1.9 has been realized so i set in the quest to update mi mod to 1.9 and then become the issues first of all i have to update the tools i made to work whith blocks and items for some reason they change the name of MovingObjectPosition to RayTraceResult but thats not to mod things i made a class to show mesages in screen as i use items public static void chatr(EntityPlayer playerIn, String mensaje){ playerIn.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + mensaje)); } this don't works anymore, from the bedBlock class i get this if (playerIn != null) { //ITextComponent chatComponent playerIn.addChatComponentMessage(new TextComponentTranslation("tile.bed.occupied", new Object[0])); } but this dont directly prints on screen custom text, this take the text from some lang file somewhere in the code i been folowing the classes but i dont understand how to set to show the content of just a plain text string ############# ? first i need the pieze of code to print on player chat a custom string mesage , just like the block coordinates of the block im looking at (things for i need to use the raytrace in several of mi items and entityes) ? the second is how i set in mi lang files customs strings to later retrive it whith the playerIn.addChatComponentMessage(new TextComponentTranslation("tile.bed.occupied", new Object[0])); thing i suppose something like "mercenarymod:mensaje001us" well thanks for reading
-
ya is true forge 1.8 is heavyer than forge a 1.7 as 1.7 was heavier than 1.6 i been sufering the struggle coz i have a low profile pc and play minecraft from the 1.64 i have tto make upgrades from time to time to play some mods are especialy heavy mi mod is a heavy one and du not know exactly why. i notice an increase in the memory usage in forge that happens from the forge version 1521 the last one i found whithout this memory "feature" is the forge-1.8-11.14.3.1520-mdk if i use mi mod in 1520 works just fine but if i use it in a newer the game becomes laggy even if i set 4gigas the ram to minecraft profile
-
Should I update my project to 1.8.9?
perromercenary00 replied to yoshiquest's topic in Modder Support
i have the same dilemma but i chose to stop to develop what i alredy have made in 1.8.0 mi mod only has little more than a year and is only like 70% of whats suppouse to be i see the change in the weapon system in 1.9 whith the shield now default so is most likely i will have to make everithing again from scrach once forge 1.9 get launched, i hope this hapend in the next weeks i gona rest until, and then i gonna start again -
[1.8] send package to the Local world error <SOLVED>
perromercenary00 replied to perromercenary00's topic in Modder Support
i just realize the error i wass tinking like public static class Handler0 implements IMessageHandler<mensajeMercenarioalServidor, IMessage> { and mensajeMercenarioalServidor where only methods from the same class, but are two diferent classes in the same file soo i wass asking the variables from class when i must take them from the object message iu do this and fix the trouble package mercenarymod.eventos; import io.netty.buffer.ByteBuf; import mercenarymod.Mercenary; import net.minecraft.client.Minecraft; import net.minecraft.client.multiplayer.WorldClient; import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.util.BlockPos; import net.minecraft.util.IThreadListener; import net.minecraft.world.World; import net.minecraft.world.WorldServer; import net.minecraftforge.fml.common.network.ByteBufUtils; import net.minecraftforge.fml.common.network.simpleimpl.IMessage; import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; import net.minecraftforge.fml.common.network.simpleimpl.MessageContext; import net.minecraftforge.fml.common.network.simpleimpl.IMessage; import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler; import net.minecraftforge.fml.common.network.simpleimpl.MessageContext; //############################################################################################3 public class mensajeMercenarioalMundo implements IMessage { private String texto0 = "000000"; private byte MODO = 0; private int x = 0; private int y = 0; private int z = 0; private int ID = 0; private int VALOR = 0; private int ENTITYID = 0; // ############################################################################################3 public mensajeMercenarioalMundo() { } // ############################################################################################3 // send plain string public mensajeMercenarioalMundo(String text) { this.MODO = 0; texto0 = text; } // ############################################################################################3 // send blockpos + id + VALOR public mensajeMercenarioalMundo(BlockPos pos, byte id, int type) { this.MODO = 1; this.x = pos.getX(); this.y = pos.getY(); this.z = pos.getZ(); this.ID = id; this.VALOR = type; } // ############################################################################################3 // send xyz + id + VALOR public mensajeMercenarioalMundo(int x, int y, int z, byte id, int type) { this.MODO = 2; this.x = x; this.y = y; this.z = z; this.ID = id; this.VALOR = type; } // ############################################################################################3 // send entityId + id + VALOR public mensajeMercenarioalMundo(int entityId, byte id, int type) { this.MODO = 3; this.ENTITYID = entityId; this.ID = id; this.VALOR = type; } // ############################################################################################3 // recibe the mesage and convert it again as @Override public void fromBytes(ByteBuf buf) { buf.capacity(); System.out.println("capacidad =" + buf.capacity()); this.MODO = buf.readByte(); switch (MODO) { case 0: { setText(ByteBufUtils.readUTF8String(buf)); } ; break; case 1: case 2: { this.x = buf.readInt(); this.y = buf.readInt(); this.z = buf.readInt(); this.ID = buf.readInt(); this.VALOR = buf.readInt(); } ; break; case 3: { this.ENTITYID = buf.readInt(); this.ID = buf.readInt(); this.VALOR = buf.readInt(); } ; break; } // // this class is very useful in general for writing more complex // objects } // ############################################################################################3 // Send text as byteBuf to the server side @Override public void toBytes(ByteBuf buf) { // ByteBufUtils.writeVarInt(buf, MODO, 4); // byte // 0 = modo // buf.clear(); buf.writeByte(MODO); switch (MODO) { case 0: { ByteBufUtils.writeUTF8String(buf, getText()); } ; break; case 1: case 2: { buf.writeInt(x); buf.writeInt(y); buf.writeInt(z); buf.writeInt(ID); buf.writeInt(VALOR); } ; break; case 3: { buf.writeInt(ENTITYID); buf.writeInt(ID); buf.writeInt(VALOR); } ; break; } // ByteBufUtils.writeUTF8String(buf, getText()); } // ############################################################################################3 public String getText() { return texto0; } public void setText(String text) { this.texto0 = text; } // ####### public byte getModo() { return MODO; } public void setModo(byte m) { this.MODO = m; } // ####### public int getX() { return x; } public void setX(int m) { this.x = m; } // ####### public int getY() { return y; } public void setY(int m) { this.y = m; } // ####### public int getZ() { return z; } public void setZ(int m) { this.z = m; } // ####### public int getENTITYID() { return ENTITYID; } public void setENTITYID(int m) { this.ENTITYID = m; } // ####### public int getID() { return ID; } public void setID(int m) { this.ID = m; } // ####### public int getVALOR() { return VALOR; } public void setVALOR(int m) { this.VALOR = m; } public static class Handler0 implements IMessageHandler<mensajeMercenarioalMundo, IMessage> { @Override public IMessage onMessage(final mensajeMercenarioalMundo message, final MessageContext ctx) { //IThreadListener mainThread = (WorldServer) ctx.getServerHandler().playerEntity.worldObj; IThreadListener mainThread = Minecraft.getMinecraft() ; mainThread.addScheduledTask(new Runnable() { @Override public void run() { String texto0 = message.getText(); byte MODO = message.getModo(); int x = message.getX(); int y = message.getY(); int z = message.getZ(); int ID = message.getID(); int VALOR = message.getVALOR(); int ENTITYID = message.getENTITYID(); EntityPlayer playerIn = Minecraft.getMinecraft().thePlayer; switch (message.getModo()) { case 0: CambiarParametrosEnArmas.armas(playerIn, texto0); ; break; case 1: case 2: CambiarParametrosEnTileEntityes.te(playerIn, x, y, z, ID, VALOR); ; break; case 3: CambiarParametrosEnEntidades.en(ENTITYID, playerIn, ID, VALOR); break; } //System.out.println( "\nMODO ="+MODO+" \nx="+x+" \ny="+y+" \nz="+z+" \nID="+ID+" \nVALOR="+VALOR+" \nENTITYID="+ENTITYID+" \ntexto0="+texto0 ); } }); return null; } } } [21:08:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.eventos.mensajeMercenarioalMundo$Handler0$1:run:306]: MODO =3 x=0 y=0 z=0 ID=0 VALOR=300 ENTITYID=1630 texto0=000000 [21:08:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnEntidades:en:16]: !!!!!!!!!! CambiarParametrosEnEntidades(true en=entity.modmercenario.entidadArmaMercenaria00.name) [21:08:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:receiveClientEvent:155]: receiveClientEvent(2, 66002548) rc mundo =net.minecraft.client.multiplayer.WorldClient@6e576b5a [21:08:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.eventos.mensajeMercenarioalMundo$Handler0$1:run:306]: MODO =3 x=0 y=0 z=0 ID=2 VALOR=66002548 ENTITYID=1630 texto0=000000 [21:08:24] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:348]: onUpdate(2) mundo=false [21:08:24] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:349]: shotinInID=300 [21:08:24] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:350]: numerodeserie=66002548 [21:08:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:348]: onUpdate(2) mundo=true [21:08:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:349]: shotinInID=300 [21:08:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:350]: numerodeserie=66002548 [21:08:25] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:357]: onUpdate(10) mundo=false [21:08:25] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:358]: shotinInID=300 [21:08:25] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:359]: numerodeserie=66002548 [21:08:25] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:357]: onUpdate(10) mundo=true [21:08:25] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:358]: shotinInID=300 [21:08:25] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:359]: numerodeserie=66002548 [21:10:14] [server thread/INFO]: Saving and pausing game... so thanks -
[1.8] send package to the Local world error <SOLVED>
perromercenary00 replied to perromercenary00's topic in Modder Support
sip eso era i pass over the EntityPlayer playerIn = ctx.getServerHandler().playerEntity; like five times whithout notice know i have another doub to test it im sending 2 packets from the server side of this entity to the local side but only the second reach to System.out.println() i set in mensajeMercenarioalMundo.class i could be posible than i only cand send a package per tick ,or is something wrong whith my code in this test i'm seting the values of serial(numerodeserie) and shotinInId the two are int values and i'm sending one afther the other from server to client but only the second one reach the client side // ################################################################################################################# @Override /** * Called to update the entity's position/logic. */ public void onUpdate() { super.onUpdate(); World mundo = this.worldObj; boolean mundoB = mundo.isRemote; boolean habilitado = false; if ( ticksExisted == 0) { boolean matar = false; if (!mundoB) { System.out.println("Enviando mensaje desde el mundo="+mundoB); Mercenary.network.sendToAll(new mensajeMercenarioalMundo( this.getEntityId(), (byte)0 , this.shotinInID ) ); Mercenary.network.sendToAll(new mensajeMercenarioalMundo( this.getEntityId(), (byte)2 , this.numerodeserie ) ); } } if ( ticksExisted == 2) { System.out.println("onUpdate(2) mundo="+mundoB); System.out.println("shotinInID="+shotinInID); System.out.println("numerodeserie="+numerodeserie); } if ( ticksExisted == 10) { System.out.println("onUpdate(10) mundo="+mundoB); System.out.println("shotinInID="+shotinInID); System.out.println("numerodeserie="+numerodeserie); } if ( ticksExisted == 200) { this.setDead(); } in the console i get //server side this are the values im sending shotinInID=306 and numerodeserie=66002548 [17:33:55] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=false [17:33:56] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=306 [17:33:56] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=66002548 //but here only got numerodeserie=66002548 and shotinInID remain in zero [17:33:56] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=true [17:33:56] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=0 [17:33:56] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=66002548 [17:33:56] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=false [17:33:56] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=306 [17:33:56] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=66002548 [17:33:56] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=true [17:33:56] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=0 [17:33:56] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=66002548 thanks for reading -
[1.8] send package to the Local world error <SOLVED>
perromercenary00 replied to perromercenary00's topic in Modder Support
thanks for reply i leave it like this IThreadListener mainThread = Minecraft.getMinecraft(); and now get net.minecraft.client.network.NetHandlerPlayClient cannot be cast to net.minecraft.network.NetHandlerPlayServer [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.armaMercenaria00:onItemRightClick:222]: onItemRightClick mundo=false [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.armaMercenaria00:onItemRightClick:223]: ser=0 eam ser=0 id=377 [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:333]: Enviando mensaje desde el mundo=false [15:04:07] [Netty Local Client IO #0/INFO] [sTDOUT]: [mercenarymod.eventos.mensajeMercenarioalMundo:fromBytes:89]: capacidad =13 [15:04:07] [Netty Local Client IO #0/INFO] [sTDOUT]: [mercenarymod.eventos.mensajeMercenarioalMundo:fromBytes:89]: capacidad =13 [15:04:07] [Client thread/FATAL] [FML]: Exception caught executing FutureTask: java.util.concurrent.ExecutionException: java.lang.ClassCastException: net.minecraft.client.network.NetHandlerPlayClient cannot be cast to net.minecraft.network.NetHandlerPlayServer java.util.concurrent.ExecutionException: java.lang.ClassCastException: net.minecraft.client.network.NetHandlerPlayClient cannot be cast to net.minecraft.network.NetHandlerPlayServer at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_65] at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_65] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:715) [FMLCommonHandler.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1077) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:376) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.ClassCastException: net.minecraft.client.network.NetHandlerPlayClient cannot be cast to net.minecraft.network.NetHandlerPlayServer at net.minecraftforge.fml.common.network.simpleimpl.MessageContext.getServerHandler(MessageContext.java:36) ~[MessageContext.class:?] at mercenarymod.eventos.mensajeMercenarioalMundo$Handler0$1.run(mensajeMercenarioalMundo.java:279) ~[mensajeMercenarioalMundo$Handler0$1.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_65] at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_65] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714) ~[FMLCommonHandler.class:?] ... 15 more [15:04:07] [Client thread/FATAL] [FML]: Exception caught executing FutureTask: java.util.concurrent.ExecutionException: java.lang.ClassCastException: net.minecraft.client.network.NetHandlerPlayClient cannot be cast to net.minecraft.network.NetHandlerPlayServer java.util.concurrent.ExecutionException: java.lang.ClassCastException: net.minecraft.client.network.NetHandlerPlayClient cannot be cast to net.minecraft.network.NetHandlerPlayServer at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_65] at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_65] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:715) [FMLCommonHandler.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1077) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:376) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:117) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.ClassCastException: net.minecraft.client.network.NetHandlerPlayClient cannot be cast to net.minecraft.network.NetHandlerPlayServer at net.minecraftforge.fml.common.network.simpleimpl.MessageContext.getServerHandler(MessageContext.java:36) ~[MessageContext.class:?] at mercenarymod.eventos.mensajeMercenarioalMundo$Handler0$1.run(mensajeMercenarioalMundo.java:279) ~[mensajeMercenarioalMundo$Handler0$1.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_65] at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_65] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714) ~[FMLCommonHandler.class:?] ... 15 more [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=false [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=305 [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=0 [15:04:07] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=true [15:04:07] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=0 [15:04:07] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=0 [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=false [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=305 [15:04:07] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=0 [15:04:07] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=true [15:04:07] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=0 [15:04:07] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=0 [15:04:09] [server thread/INFO]: Saving and pausing game... [15:04:09] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [15:04:09] [server thread/INFO]: Saving chunks for level 'New World'/Nether [15:04:09] [server thread/INFO]: Saving chunks for level 'New World'/The End long ago in 1.7 have the same trouble but not remenber how i solve this may it must add something else -
goodays i could fix mi class to send packages to the server side from client now i making the other one the one to send packages from the server to the client but has an error and the package dont'n reach the target entity and i think is here in the line 260 the class whith the trouble is here https://gist.github.com/anonymous/026260692f53be92f3be and the working counter part for the server messages https://gist.github.com/anonymous/f677411edf035ee650e2 //IThreadListener mainThread = (WorldServer) ctx.getServerHandler().playerEntity.worldObj; // or Minecraft.getMinecraft().thePlayer.worldObj on the client IThreadListener mainThread = (WorldServer) Minecraft.getMinecraft().thePlayer.worldObj; // or ctx.getServerHandler().playerEntity.worldObj on server how must be declare this line to get a IThreadListener in the local client side Full error out put [Console output redirected to file:/home/usuario/eclipseOutput.txt] Picked up _JAVA_OPTIONS: -Xmx2g Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [14:01:19] [main/INFO] [GradleStart]: Extra: [] [14:01:19] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /home/usuario/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [14:01:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [14:01:19] [main/INFO] [FML]: Forge Mod Loader version 11.14.3.1520 for Minecraft 1.8 loading [14:01:19] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Linux:amd64:3.16.0-4-amd64, installed at /opt/jdk1.8.0_65/jre [14:01:19] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [14:01:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [14:01:19] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [14:01:19] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [14:01:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:01:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [14:01:20] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [14:01:21] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [14:01:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [14:01:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [14:01:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:01:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [14:01:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [14:01:21] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [14:01:22] [Client thread/INFO]: Setting user: Player639 [14:01:28] [Client thread/INFO]: LWJGL Version: 2.9.1 [14:01:29] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ---- // Ooh. Shiny. Time: 7/03/16 02:01 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.8 Operating System: Linux (amd64) version 3.16.0-4-amd64 Java Version: 1.8.0_65, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 886997208 bytes (845 MB) / 1056309248 bytes (1007 MB) up to 2130051072 bytes (2031 MB) JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2' [14:01:29] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [14:01:29] [Client thread/INFO] [FML]: MinecraftForge v11.14.3.1520 Initialized [14:01:29] [Client thread/INFO] [FML]: Replaced 204 ore recipies [14:01:29] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [14:01:30] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [14:01:30] [Client thread/INFO] [FML]: Searching /home/usuario/Modding/forge-1.8-1520-modmercenario/run/mods for mods [14:01:30] [Client thread/INFO] [modmercenario]: Mod modmercenario is missing the required element 'name'. Substituting modmercenario [14:01:35] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [14:01:36] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at CLIENT [14:01:36] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at SERVER [14:01:37] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario [14:01:37] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [14:01:37] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [14:01:37] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [14:01:37] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [14:01:37] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [14:01:40] [Client thread/INFO] [FML]: Applying holder lookups [14:01:40] [Client thread/INFO] [FML]: Holder lookups applied [14:01:40] [Client thread/INFO] [FML]: Injecting itemstacks [14:01:40] [Client thread/INFO] [FML]: Itemstack injection complete [14:01:40] [Client thread/INFO] [sTDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. [14:01:40] [Client thread/ERROR]: Couldn't initialize twitch stream [14:01:40] [sound Library Loader/INFO]: Starting up SoundSystem... [14:01:41] [Thread-8/INFO]: Initializing LWJGL OpenAL [14:01:41] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [14:01:41] [Thread-8/INFO]: OpenAL initialized. [14:01:41] [sound Library Loader/INFO]: Sound engine started [14:01:45] [Client thread/INFO] [FML]: Max texture size: 16384 [14:01:45] [Client thread/INFO]: Created: 16x16 textures-atlas [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:verticalTrapdoorM00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilMP5T5_9mm#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t01#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=true,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lectorDeTarjetas#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=west not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#normal not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=down not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=true,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=false,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=true,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t02#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t03#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_45acp#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=true,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=east not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=false,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=north not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=false,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t04#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=true,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=false,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:taladroPerforador#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrandeBlocke#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=true,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=false,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t05#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:c4#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=false,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=south not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM92_9mm#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido01#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t06#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_45acp#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=false,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:radioMercenario00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=false,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=true,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaMediana#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireNoSolido00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrande#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRobleOscuro00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=false,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=false,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:relogDelaPuerta#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=true,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_45acp#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=true,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=true,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pantalonDeMercader00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=true,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t07#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAbedul00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#normal not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAcacia00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil57ar_5728#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRoble00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabPicea00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabJungla00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMercenaria00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM93R_9mm#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=false,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=false,powered=true not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil90PNF_5728#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t08#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:levelCard#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t00#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:baseDelAsensor#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=up not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puertaMercenaria3x3#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t09#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=true,powered=false not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:idDeBlockes#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found [14:01:46] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola57NF_5728#inventory not found [14:01:48] [Client thread/INFO] [FML]: Injecting itemstacks [14:01:48] [Client thread/INFO] [FML]: Itemstack injection complete [14:01:48] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [14:01:48] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario [14:01:48] [Client thread/INFO]: SoundSystem shutting down... [14:01:48] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [14:01:48] [sound Library Loader/INFO]: Starting up SoundSystem... [14:01:49] [Thread-10/INFO]: Initializing LWJGL OpenAL [14:01:49] [Thread-10/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [14:01:49] [Thread-10/INFO]: OpenAL initialized. [14:01:49] [sound Library Loader/INFO]: Sound engine started [14:01:51] [Client thread/INFO] [FML]: Max texture size: 16384 [14:01:53] [Client thread/WARN]: Texture modmercenario:textures/blocks/ascensor/ascensorbase.png with size 24x24 limits mip level from 4 to 3 [14:01:56] [Client thread/INFO]: Created: 4096x4096 textures-atlas [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA01#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:verticalTrapdoorM00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t01#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=true,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lectorDeTarjetas#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=west not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#normal not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=down not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=true,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=false,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=true,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:extructuras/pegarExtructura#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t02#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t03#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA01#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=true,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=east not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=false,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=north not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=false,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t04#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=true,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:extructuras/copiarExtructura#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=false,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrandeBlocke#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=true,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA02#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=false,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t05#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:c4#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=false,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=south not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido01#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t06#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=north,open=false,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:radioMercenario00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=false,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=true,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaMediana#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireNoSolido00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrande#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRobleOscuro00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=false,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=false,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:relogDelaPuerta#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=true,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=true,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:armaduras/pantalonDeMercader00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=down,open=true,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pantalonDeMercader00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=east,open=true,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t07#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAbedul00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#normal not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAcacia00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRoble00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabPicea00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabJungla00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMercenaria00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=west,open=false,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=south,open=false,powered=true not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t08#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA02#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:itemblockes/girable#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t00#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:baseDelAsensor#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#facing=up not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t09#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#facing=up,open=true,powered=false not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:idDeBlockes#inventory not found [14:02:02] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN modmercenario [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: domain modmercenario is missing 6 textures [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: domain modmercenario has 1 location: [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: mod modmercenario resources at /home/usuario/Modding/forge-1.8-1520-modmercenario/bin [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain modmercenario are: [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/puertas/spruce_Borde00.png [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/puertas/spruce_Doble00.png [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/explosivos/perforacionConExplosivo.png [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/charcoal.png [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/armasdefuego/COLT1911/fire_layer_1.png [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/armasdefuego/cargador76239/cargador76239_CG.png [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain modmercenario [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [14:02:02] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [14:02:12] [server thread/INFO]: Starting integrated minecraft server version 1.8 [14:02:12] [server thread/INFO]: Generating keypair [14:02:12] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [14:02:12] [server thread/INFO] [FML]: Applying holder lookups [14:02:12] [server thread/INFO] [FML]: Holder lookups applied [14:02:13] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@45c8cfde) [14:02:13] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@45c8cfde) [14:02:13] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@45c8cfde) [14:02:13] [server thread/INFO]: Preparing start region for level 0 [14:02:14] [server thread/INFO]: Preparing spawn area: 9% [14:02:15] [server thread/INFO]: Preparing spawn area: 59% [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:333]: Enviando mensaje desde el mundo=false [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:333]: Enviando mensaje desde el mundo=false [14:02:17] [server thread/INFO]: Changing view distance to 4, from 10 [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=false [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=0 [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=0 [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=false [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=0 [14:02:17] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=0 [14:02:18] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=false [14:02:18] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=0 [14:02:18] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=0 [14:02:18] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=false [14:02:18] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=0 [14:02:18] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=0 [14:02:19] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [14:02:19] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [14:02:19] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [14:02:19] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [14:02:19] [server thread/INFO] [FML]: [server thread] Server side modded connection established [14:02:19] [server thread/INFO]: Player639[local:E:19193a5b] logged in with entity id 309 at (68.30000001192093, 18.0, -196.00709476346518) [14:02:19] [server thread/INFO]: Player639 joined the game [14:02:19] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [14:02:19] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [14:02:19] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [14:02:19] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [14:02:20] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3255ms behind, skipping 65 tick(s) [14:02:21] [server thread/INFO]: Saving and pausing game... [14:02:21] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [14:02:21] [server thread/INFO]: Saving chunks for level 'New World'/Nether [14:02:21] [server thread/INFO]: Saving chunks for level 'New World'/The End [14:02:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=true [14:02:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=0 [14:02:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=0 [14:02:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:344]: onUpdate(2) mundo=true [14:02:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:345]: shotinInID=0 [14:02:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:346]: numerodeserie=0 [14:02:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=true [14:02:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=0 [14:02:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=0 [14:02:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:353]: onUpdate(10) mundo=true [14:02:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:354]: shotinInID=0 [14:02:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:355]: numerodeserie=0 [14:02:35] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.armaMercenaria00:onItemRightClick:222]: onItemRightClick mundo=false [14:02:35] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.armaMercenaria00:onItemRightClick:223]: ser=0 eam ser=0 id=418 [14:02:35] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.armaMercenaria.entidadArmaMercenaria00:onUpdate:333]: Enviando mensaje desde el mundo=false [14:02:35] [Netty Local Client IO #0/INFO] [sTDOUT]: [mercenarymod.eventos.mensajeMercenarioalMundo:fromBytes:89]: capacidad =13 [14:02:35] [Netty Local Client IO #0/ERROR] [FML]: SimpleChannelHandlerWrapper exception java.lang.ClassCastException: net.minecraft.client.multiplayer.WorldClient cannot be cast to net.minecraft.world.WorldServer at mercenarymod.eventos.mensajeMercenarioalMundo$Handler0.onMessage(mensajeMercenarioalMundo.java:260) ~[mensajeMercenarioalMundo$Handler0.class:?] at mercenarymod.eventos.mensajeMercenarioalMundo$Handler0.onMessage(mensajeMercenarioalMundo.java:1) ~[mensajeMercenarioalMundo$Handler0.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:37) ~[simpleChannelHandlerWrapper.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:17) ~[simpleChannelHandlerWrapper.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:103) ~[simpleChannelInboundHandler.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:4.0.15.Final] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:4.0.15.Final] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:4.0.15.Final] at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:88) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:144) [NetworkManager.class:?] at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:469) [NetworkManager.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:103) [simpleChannelInboundHandler.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) [DefaultChannelHandlerContext.class:4.0.15.Final] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:382) [NetworkDispatcher.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:249) [NetworkDispatcher.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:50) [NetworkDispatcher.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:103) [simpleChannelInboundHandler.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:4.0.15.Final] at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:312) [LocalChannel.class:4.0.15.Final] at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:44) [LocalChannel.class:4.0.15.Final] at io.netty.channel.local.LocalChannel$6.run(LocalChannel.java:298) [LocalChannel$6.class:4.0.15.Final] at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.15.Final] at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:101) [singleThreadEventExecutor$2.class:4.0.15.Final] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65] [14:02:35] [Netty Local Client IO #0/ERROR] [FML]: There was a critical exception handling a packet on channel canalM00 java.lang.ClassCastException: net.minecraft.client.multiplayer.WorldClient cannot be cast to net.minecraft.world.WorldServer at mercenarymod.eventos.mensajeMercenarioalMundo$Handler0.onMessage(mensajeMercenarioalMundo.java:260) ~[mensajeMercenarioalMundo$Handler0.class:?] at mercenarymod.eventos.mensajeMercenarioalMundo$Handler0.onMessage(mensajeMercenarioalMundo.java:1) ~[mensajeMercenarioalMundo$Handler0.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:37) ~[simpleChannelHandlerWrapper.class:?] at net.minecraftforge.fml.common.network.simpleimpl.SimpleChannelHandlerWrapper.channelRead0(SimpleChannelHandlerWrapper.java:17) ~[simpleChannelHandlerWrapper.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:103) ~[simpleChannelInboundHandler.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) ~[DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) ~[DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) ~[MessageToMessageDecoder.class:4.0.15.Final] at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) ~[DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) ~[DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) ~[DefaultChannelPipeline.class:4.0.15.Final] at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[EmbeddedChannel.class:4.0.15.Final] at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:88) [FMLProxyPacket.class:?] at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:144) [NetworkManager.class:?] at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:469) [NetworkManager.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:103) [simpleChannelInboundHandler.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) [DefaultChannelHandlerContext.class:4.0.15.Final] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleClientSideCustomPacket(NetworkDispatcher.java:382) [NetworkDispatcher.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:249) [NetworkDispatcher.class:?] at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:50) [NetworkDispatcher.class:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:103) [simpleChannelInboundHandler.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:338) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:324) [DefaultChannelHandlerContext.class:4.0.15.Final] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:4.0.15.Final] at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:312) [LocalChannel.class:4.0.15.Final] at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:44) [LocalChannel.class:4.0.15.Final] at io.netty.channel.local.LocalChannel$6.run(LocalChannel.java:298) [LocalChannel$6.class:4.0.15.Final] at io.netty.channel.local.LocalEventLoop.run(LocalEventLoop.java:33) [LocalEventLoop.class:4.0.15.Final] at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:101) [singleThreadEventExecutor$2.class:4.0.15.Final] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65] [14:02:35] [server thread/INFO]: Player639 lost connection: TextComponent{text='Disconnected', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}} [14:02:35] [server thread/INFO]: Player639 left the game [14:02:35] [server thread/INFO]: Stopping singleplayer server as player logged out [14:02:35] [server thread/INFO]: Stopping server [14:02:35] [server thread/INFO]: Saving players [14:02:35] [server thread/INFO]: Saving worlds [14:02:35] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [14:02:35] [server thread/INFO]: Saving chunks for level 'New World'/Nether [14:02:35] [server thread/INFO]: Saving chunks for level 'New World'/The End [14:02:36] [server thread/INFO] [FML]: Unloading dimension 0 [14:02:36] [server thread/INFO] [FML]: Unloading dimension -1 [14:02:36] [server thread/INFO] [FML]: Unloading dimension 1 [14:02:36] [server thread/INFO] [FML]: Applying holder lookups [14:02:36] [server thread/INFO] [FML]: Holder lookups applied thanks for reading
-
good days, i have little issue becoze the class i make long ago to send packages only send strings and now im maken tile entityes and this dont works for that and i have to fix it whiout fucking upo everiting else i made that requires send packages, as mi guns or villagers soo i think in make this package class whith a variable modo thath means 0 = im sending a plain string 1 = im sending a blockPos and id and type values 2 = im sending x y z cordinathe plus id and type 3 = im sendind data to an especific entity plus id and type sooo long lets say i wana set something in modo 2 thats and byte mode, a int x, a int y, a int z, a int id, and a int type. all in only a ByteBuf to send it in a package to the server side like a big binary number but the class ByteBuf only has an method ByteBufUtils.readVarInt(buf, 4); like is an int it only would retribe 32bit of whatever is stored in the ByteBuf but everything i wanna send sum like 164bits #### how i arrange this 6 values in the ByteBuf and later how i retrive the 6 values in the ByteBuf in the server side soo long i have this https://gist.github.com/anonymous/74a468c1afd2aafc4b4b thanks for reading
-
just fixed imede the clock works whith the solar angle float f = this.worldObj.getCelestialAngleRadians(1.0F); worldtime is not synced whith th sun position if you the /time set comand world time dont'n change and becoze this is for control the doors from mi custom settlement to close the door at down and open again in the dust
-
yea i wass thinking tile entityes was just for storing things i make another tileEntity this one tickiable https://gist.github.com/anonymous/484ec7d902c2050f11ae but realize something else the orinal plan was to get the world time and do something like tiempo = this.worldObj.getWorldTime(); int hour = tiempo % 24000 / 1000; int min = tiempo % 1000; but just realize than WorldTime is not synced whith day/nigth cicle if i do and an /set time 100 to set the sun to the first hour in the morning WorldTime is not afected so if i do an if (hour == 6) { //is the midday } this would be acurated at all to get when close or open the doors i need the sun position in the sky or well the value od the visible clock based on sun position or something ¿¿ some idea ??
-
i do in but 1.8 may is not the same but you have to make a custom Gui class whith an custom container class and a custom slot class designed whith a boolean to enable or dissable the player interacction way the item can be seen in the gui but cannot be taken soo is long work so bether begins here http://www.minecraftforum.net/forums/mapping-and-modding/mapping-and-modding-tutorials/1571597-forge-1-6-4-1-8-custom-inventories-in-items-and http://jabelarminecraft.blogspot.com.co/p/minecraft-modding-containers.html
-
good days im trying to make a block thath ticks every thousand worldTicks to keep track of day|night cicles to close or open a custom door soo i was looking in the crops class becose that block ticks and find a method //###########################################################3 @Override public int tickRate(World worldIn) { return 1000; } but the block is not ticking for block to ticks i have to put in the constructor an this.needsRandomTick= true; but then the block begins to ramdomly tick not every 1000 ticks as i wish to ###### so how i make this block ticks exactly every thousand ticks ?? this is so far what i have https://gist.github.com/anonymous/40e144fcd67df6d7c2ea
-
uichh sometimes qe get little complicated you need something like public void corregirAim(Entity entidadA, Entity entidadB) { if (entidadA != null & entidadB != null) { double xA = entidadA.posX; double yA = entidadA.posY; double zA = entidadA.posZ; float yawA = entidadA.getRotationYawHead(); // shtA.rotationYaw; float pitchA = entidadA.rotationPitch; double xB = entidadB.posX; double yB = entidadB.posY; double zB = entidadB.posZ; float yawB = entidadB.getRotationYawHead(); // shtB.rotationYaw; float pitchB = entidadB.rotationPitch; //doo your things //here and then entidadA.setPositionAndRotation(xA, yA, zA, yawA, pitchA); }}
-
[1.8] help solving issue whith custom elevator
perromercenary00 replied to perromercenary00's topic in Modder Support
i change the build.graddle to dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT' // classpath 'net.minecraftforge.gradle:ForgeGradle:2.0-SNAPSHOT' } } apply plugin: 'net.minecraftforge.gradle.forge' */ // for people who want stable plugins { //id "net.minecraftforge.gradle.forge" version "2.0.1" id "net.minecraftforge.gradle.forge" version "2.0.2" } and i could narrow all the error and fixit but i found a little issue a disturbing one i think is some change made in the code, but i change the graddle version not the forge version still 1520 1577 do the same, for i think has to be whith the graddle but not understand why or how in orden to move the entityes whith the elevator i check for all the entityes in range then i nullified the fall making mob.motionY = 0.0F; mob.fallDistance = 0.0F; and then setting the motionY i need to make the entity go down or up whith the elevator mob.motionY = dezpD; is working for mobs and for the itemEntityes i throw inside the elevator but now its not afecting the entity player that falls from elevator i say is rare coze before it works // ################################################################################################################# //detec entityes in elevators range public void detectarEntidades(World worldIn, BlockPos centro) { int f = 2; BlockPos posMin = centro.add(-f, -3, -f); BlockPos posMax = centro.add(f, 6, f); double centroY = centro.getY(); AxisAlignedBB boundingBox = new AxisAlignedBB(posMin, posMax); lista = worldIn.getEntitiesWithinAABB(Entity.class, boundingBox); int llist = lista.size(); } // ################################################################################################################# //move entityes detected whith the elevator void moverEntidades(World worldIn, BlockPos centro) { double centroY = centro.getY(); int mobId = 0; int ascensorID = this.getEntityId(); float dezpD = 0.0F; if (this.dezplazarse) { dezpD = dezp; } //System.out.println("======> moverEntidades(" + worldIn.isRemote + ", " + centro + " dezpD=" + dezpD + ")"); for (int l = 0; l < lista.size(); l++) { Entity mob = (Entity) lista.get(l); if ( mob != null ) { double ascPosY = this.posY; double mobPosX = 0.0D; double mobPosY = 0.0D; double mobPosZ = 0.0D; mobId = mob.getEntityId(); if (mobId != ascensorID) { System.out.println("# "+l+" mob="+mob.getName() ) ; //system out i set to see if player gets here mob.onGround = true; mob.motionY = dezpD;// 0.05F; mob.fallDistance = 0.0F; mobPosX = mob.posX; mobPosY = mob.posY; mobPosZ = mob.posZ; if (((mobPosY) > (ascPosY - 1)) & ((mobPosY) < (ascPosY + 4))) { mob.setPosition(mobPosX, ascPosY + 1.02D, mobPosZ); } if ((mobPosY) > (centroY + 4)) { mob.setPosition(mobPosX, ascPosY + 5.02D, mobPosZ); } } } } } // ################################################################################################################# i put a system out to check if player gets in and [07:11:54] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:560]: # 0 mob=Player129 [07:11:54] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:560]: # 1 mob=entity.modmercenario.aldeanoMercader.name [07:11:54] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:560]: # 2 mob=entity.modmercenario.aldeanoMercader.name yes it is in the list of entiyes to move ############## soo far this is a new diferent bug ? or has been change the way to aply an motionY to the playerEntity thanks for reading -
[1.8] help solving issue whith custom elevator
perromercenary00 replied to perromercenary00's topic in Modder Support
jum well i got something new iwas working in the forge-1.8-11.14.3.1520-mdk that uses id "net.minecraftforge.gradle.forge" version "2.0.1" the build gradle i post was from the forge-1.8-11.14.4.1577-mdk has id "net.minecraftforge.gradle.forge" version "2.0.2" this is the one im trying to get to work then the at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source) Error come from and issue in graddle 2.0.1 but now i can see the error and just remeber why i hate so much the forge-1.8-11.14.4.1577-mdk and throw it away and keep developing in 1520 the mod, the same code thah runs so nice in 1520 becomes terribly heavy and laggy in 1577 for no aparent reason and the forge-1.8.8-11.15.0.1655-mdk version is little bether whith mi mod soo could be a way to force 1520 to work whith graddle 2.0.2 ?? [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRoble00: 239 (init) -> 239 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:charcoal: 232 (init) -> 232 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoRandom: 198 (init) -> 198 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido00: 225 (init) -> 225 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido01: 226 (init) -> 226 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabJungla00: 242 (init) -> 242 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye: 199 (init) -> 199 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabPicea00: 243 (init) -> 243 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzul_blocke: 248 (init) -> 248 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRoja_blocke: 250 (init) -> 250 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaGrandeBlocke: 234 (init) -> 234 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoNegro: 236 (init) -> 236 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano00: 204 (init) -> 204 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano01: 205 (init) -> 205 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRobleOscuro00: 244 (init) -> 244 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:copiarExtructura: 245 (init) -> 245 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye00: 202 (init) -> 202 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye01: 203 (init) -> 203 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoBlancoColumna: 237 (init) -> 237 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAbedul00: 240 (init) -> 240 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin00_blocke: 211 (init) -> 211 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:callBlock: 228 (init) -> 228 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAcacia00: 241 (init) -> 241 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerde_blocke: 249 (init) -> 249 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:verticalTrapdoorM00: 224 (init) -> 224 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoReja01: 201 (init) -> 201 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata01: 207 (init) -> 207 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata00: 206 (init) -> 206 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_piedra: 4508 (init) -> 4508 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_hierro: 4345 (init) -> 4345 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:papa: 4278 (init) -> 4278 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_nokia: 4321 (init) -> 4321 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_hierro: 4357 (init) -> 4357 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_hierro: 4382 (init) -> 4382 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:redstonemercenaria: 4141 (init) -> 4141 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:reja00: 208 (init) -> 208 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1_Dummy: 4225 (init) -> 4225 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:reja01: 209 (init) -> 209 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:granadaMercenaria_Obsidiana: 4277 (init) -> 4277 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_diamante: 4369 (init) -> 4369 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoBackpack02: 4127 (init) -> 4127 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_piedra: 4420 (init) -> 4420 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocom: 4210 (init) -> 4210 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_acero: 4422 (init) -> 4422 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:botasDeCarbono: 4116 (init) -> 4116 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoBackpack00: 4125 (init) -> 4125 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoBackpack01: 4126 (init) -> 4126 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilAresFMG_blocke: 210 (init) -> 210 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenariaDeMadera_Dummy: 4181 (init) -> 4181 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMarkLancer: 4251 (init) -> 4251 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_nokia: 4347 (init) -> 4347 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_piedra: 4453 (init) -> 4453 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeCarbono: 4115 (init) -> 4115 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_piedra: 4409 (init) -> 4409 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_oro: 4386 (init) -> 4386 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenaria: 4178 (init) -> 4178 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAmarilla_blocke: 247 (init) -> 247 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_redstone: 4377 (init) -> 4377 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cartucho12G_venomous: 4264 (init) -> 4264 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala45acp_standar: 4265 (init) -> 4265 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_nokia: 4310 (init) -> 4310 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeAcero: 4118 (init) -> 4118 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_piedra: 4475 (init) -> 4475 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_obsidiana: 4429 (init) -> 4429 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_hierro: 4492 (init) -> 4492 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_hierro: 4319 (init) -> 4319 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_acero: 4455 (init) -> 4455 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_madera: 4438 (init) -> 4438 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_madera_diamante: 4366 (init) -> 4366 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaMauserC92_Dummy: 4195 (init) -> 4195 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala55645mm_Obsidiana: 4271 (init) -> 4271 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_acero: 4353 (init) -> 4353 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador5728: 4203 (init) -> 4203 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_obsidiana: 4418 (init) -> 4418 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_carbono: 4379 (init) -> 4379 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARH: 4240 (init) -> 4240 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_acero: 4378 (init) -> 4378 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaRedClub_Dummy: 4215 (init) -> 4215 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_esmeralda: 4392 (init) -> 4392 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_acero: 4293 (init) -> 4293 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye00: 202 (init) -> 202 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye01: 203 (init) -> 203 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaDesertEagle_Dummy: 4207 (init) -> 4207 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAbedul00: 240 (init) -> 240 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_piedra: 4302 (init) -> 4302 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_oro: 4474 (init) -> 4474 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:verticalTrapdoorM00: 224 (init) -> 224 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilAresFMG: 4188 (init) -> 4188 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_diamante: 4402 (init) -> 4402 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_madera: 4372 (init) -> 4372 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata01: 207 (init) -> 207 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cascoDeAcero: 4117 (init) -> 4117 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoNinoRata00: 206 (init) -> 206 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_hierro: 4514 (init) -> 4514 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_carbono: 4294 (init) -> 4294 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerdePlanta: 4104 (init) -> 4104 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonMaderaMediano: 4157 (init) -> 4157 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_carbono: 4368 (init) -> 4368 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_esmeralda: 4458 (init) -> 4458 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoBlanco: 235 (init) -> 235 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonHierroMediano: 4154 (init) -> 4154 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador55645: 4246 (init) -> 4246 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_carbono: 4401 (init) -> 4401 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocomS: 4212 (init) -> 4212 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil90PNF_5728: 4197 (init) -> 4197 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_carbono: 4489 (init) -> 4489 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador45acp: 4216 (init) -> 4216 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:granadaMercenaria_Redstone: 4276 (init) -> 4276 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_diamante: 4355 (init) -> 4355 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM93R_9mm: 4187 (init) -> 4187 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_esmeralda: 4344 (init) -> 4344 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AK_Dummy: 4237 (init) -> 4237 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barrilExplosivo: 213 (init) -> 213 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_redstone: 4410 (init) -> 4410 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_acero: 4488 (init) -> 4488 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_nokia: 4332 (init) -> 4332 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin01_blocke: 212 (init) -> 212 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_oro: 4419 (init) -> 4419 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_carbono_diamante: 4365 (init) -> 4365 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHB: 4241 (init) -> 4241 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola1911colt_45acp: 4204 (init) -> 4204 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRojaSemilla: 4105 (init) -> 4105 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_esmeralda: 4329 (init) -> 4329 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHG: 4242 (init) -> 4242 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_carbono: 4467 (init) -> 4467 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_obsidiana: 4484 (init) -> 4484 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_carbono: 4412 (init) -> 4412 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_nokia: 4483 (init) -> 4483 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKG: 4230 (init) -> 4230 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_oro: 4349 (init) -> 4349 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_nokia: 4494 (init) -> 4494 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_oro: 4518 (init) -> 4518 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:taladroPerforador: 4283 (init) -> 4283 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_acero: 4510 (init) -> 4510 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierroalrojo: 4133 (init) -> 4133 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMark2Lancer_Dummy01: 4250 (init) -> 4250 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_obsidiana: 4360 (init) -> 4360 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala55645mm_Redstone: 4270 (init) -> 4270 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_redstone: 4314 (init) -> 4314 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_carbono: 4316 (init) -> 4316 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonHierroCorto: 4152 (init) -> 4152 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_piedra: 4464 (init) -> 4464 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:coalcompreso: 4134 (init) -> 4134 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:granadaMercenaria_Standar: 4275 (init) -> 4275 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:tijeraslargasMercenarias: 4281 (init) -> 4281 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_nokia: 4395 (init) -> 4395 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala5728mm_standar: 4259 (init) -> 4259 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_madera: 4460 (init) -> 4460 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_nokia: 4516 (init) -> 4516 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeMercader00: 4128 (init) -> 4128 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_acero: 4400 (init) -> 4400 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_acero: 4477 (init) -> 4477 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_esmeralda: 4403 (init) -> 4403 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:revolverMagnum_45acp: 4208 (init) -> 4208 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_diamante: 4343 (init) -> 4343 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_redstone: 4336 (init) -> 4336 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_redstone: 4363 (init) -> 4363 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKB: 4229 (init) -> 4229 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala76239mm_Redstone: 4273 (init) -> 4273 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:yuca_blocke: 251 (init) -> 251 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaObsidiana: 4184 (init) -> 4184 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1G_Dummy: 4227 (init) -> 4227 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_oro: 4312 (init) -> 4312 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMarkLancer_Dummy01: 4253 (init) -> 4253 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_oro: 4375 (init) -> 4375 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_esmeralda: 4414 (init) -> 4414 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barradehierro: 4131 (init) -> 4131 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKB_Dummy: 4238 (init) -> 4238 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:radioMercenario00: 4285 (init) -> 4285 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuchilloTactico: 4340 (init) -> 4340 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireNoSolido00: 227 (init) -> 227 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_madera: 4427 (init) -> 4427 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_hierro: 4470 (init) -> 4470 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_redstone: 4498 (init) -> 4498 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_esmeralda: 4318 (init) -> 4318 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:extintorMercenario: 4280 (init) -> 4280 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_piedra: 4486 (init) -> 4486 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_madera: 4405 (init) -> 4405 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaSPAS12: 4218 (init) -> 4218 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_carbono: 4500 (init) -> 4500 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_redstone: 4303 (init) -> 4303 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_diamante: 4468 (init) -> 4468 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoCarbono: 4163 (init) -> 4163 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_carbono: 4423 (init) -> 4423 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:botasDeLana: 4109 (init) -> 4109 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeLanaNegra: 4113 (init) -> 4113 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:yuca: 4096 (init) -> 4096 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:charcoal: 232 (init) -> 232 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaMediana: 4144 (init) -> 4144 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_hierro: 4415 (init) -> 4415 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_diamante: 4328 (init) -> 4328 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido00: 225 (init) -> 225 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aireSolido01: 226 (init) -> 226 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargador76239: 4247 (init) -> 4247 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_hierro_diamante: 4364 (init) -> 4364 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_esmeralda: 4296 (init) -> 4296 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala5728mm_redstone: 4260 (init) -> 4260 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_acero: 4466 (init) -> 4466 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabPicea00: 243 (init) -> 243 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilAresFMG_Dummy: 4194 (init) -> 4194 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaGrandeBlocke: 234 (init) -> 234 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_obsidiana: 4385 (init) -> 4385 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_acero: 4499 (init) -> 4499 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenario: 4174 (init) -> 4174 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_carbono: 4354 (init) -> 4354 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_carbono: 4478 (init) -> 4478 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRojaPlanta: 4106 (init) -> 4106 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_nokia: 4359 (init) -> 4359 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoMadera: 4165 (init) -> 4165 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenarioDeMadera: 4176 (init) -> 4176 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerde_blocke: 249 (init) -> 249 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AK: 4234 (init) -> 4234 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierba: 4098 (init) -> 4098 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1B_Dummy: 4226 (init) -> 4226 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_piedra: 4335 (init) -> 4335 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM92_9mm: 4186 (init) -> 4186 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_oro: 4408 (init) -> 4408 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_diamante: 4490 (init) -> 4490 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_madera: 4504 (init) -> 4504 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_piedra: 4442 (init) -> 4442 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzulSemilla: 4101 (init) -> 4101 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenaria_Dummy: 4179 (init) -> 4179 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaDesertEagle_45acp: 4206 (init) -> 4206 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_madera: 4298 (init) -> 4298 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_obsidiana: 4396 (init) -> 4396 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_piedra: 4313 (init) -> 4313 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKB: 4235 (init) -> 4235 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:lanzagranadas79M: 4254 (init) -> 4254 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonMaderaCorto: 4155 (init) -> 4155 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKG_Dummy: 4233 (init) -> 4233 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_obsidiana: 4407 (init) -> 4407 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:redstoneCompresa: 4136 (init) -> 4136 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_nokia: 4472 (init) -> 4472 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:FN40GL: 4171 (init) -> 4171 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_oro: 4441 (init) -> 4441 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t08: 222 (init) -> 222 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t09: 223 (init) -> 223 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAmarillaPlanta: 4100 (init) -> 4100 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t04: 218 (init) -> 218 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t05: 219 (init) -> 219 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:taladroMercenario: 4282 (init) -> 4282 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t06: 220 (init) -> 220 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t07: 221 (init) -> 221 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t00: 214 (init) -> 214 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t01: 215 (init) -> 215 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t02: 216 (init) -> 216 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puerta3x3t03: 217 (init) -> 217 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:prueba: 4289 (init) -> 4289 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:lanzagranadas79M_Dummy: 4255 (init) -> 4255 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_madera: 4331 (init) -> 4331 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala76239mm_Obsidiana: 4274 (init) -> 4274 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonHierroLargo: 4153 (init) -> 4153 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaSPAS12_Dummy: 4219 (init) -> 4219 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_obsidiana: 4300 (init) -> 4300 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_esmeralda: 4356 (init) -> 4356 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoPuerta: 200 (init) -> 200 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:limpiarCirculo: 246 (init) -> 246 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_madera: 4309 (init) -> 4309 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_diamante: 4457 (init) -> 4457 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRoble00: 239 (init) -> 239 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:charcoalcompreso: 4135 (init) -> 4135 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARH_Dummy: 4243 (init) -> 4243 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM93R_Dummy: 4192 (init) -> 4192 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:revolverMagnum_Dummy: 4209 (init) -> 4209 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaRedstone: 4183 (init) -> 4183 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_nokia: 4373 (init) -> 4373 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAmarillaSemilla: 4099 (init) -> 4099 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaExplosiva: 4185 (init) -> 4185 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_esmeralda: 4307 (init) -> 4307 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_obsidiana: 4322 (init) -> 4322 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:puertaMercenaria3x3: 4521 (init) -> 4521 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_redstone: 4465 (init) -> 4465 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoTacticoS: 4121 (init) -> 4121 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoTacticoG: 4122 (init) -> 4122 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzul_blocke: 248 (init) -> 248 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_hierro: 4448 (init) -> 4448 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_piedra: 4431 (init) -> 4431 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_redstone: 4476 (init) -> 4476 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_carbono: 4342 (init) -> 4342 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:papa_cocida: 4279 (init) -> 4279 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espadaB_acero_diamante: 4352 (init) -> 4352 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala9mm_redstone: 4257 (init) -> 4257 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabAcacia00: 241 (init) -> 241 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola57NF_Dummy: 4201 (init) -> 4201 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:camael: 4337 (init) -> 4337 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataCarbon: 4159 (init) -> 4159 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_acero: 4367 (init) -> 4367 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKG: 4236 (init) -> 4236 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_obsidiana: 4333 (init) -> 4333 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuerdamercenaria: 4143 (init) -> 4143 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_hierro: 4393 (init) -> 4393 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_obsidiana: 4495 (init) -> 4495 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:flechaMercenariaAcero: 4182 (init) -> 4182 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_madera: 4493 (init) -> 4493 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:acero: 233 (init) -> 233 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:limiteDelAsensor: 231 (init) -> 231 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_madera: 4515 (init) -> 4515 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenarioDeMadera_Dummy: 4177 (init) -> 4177 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHG_Dummy: 4245 (init) -> 4245 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonCarbonCorto: 4149 (init) -> 4149 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barradeacero: 4130 (init) -> 4130 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_esmeralda: 4381 (init) -> 4381 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AK_Dummy: 4231 (init) -> 4231 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilSCARHB_Dummy: 4244 (init) -> 4244 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:arcoMercenario_Dummy: 4175 (init) -> 4175 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_madera: 4482 (init) -> 4482 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barrelAssemblyHierro: 4167 (init) -> 4167 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_oro: 4323 (init) -> 4323 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_diamante: 4380 (init) -> 4380 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilMP5T5_9mm: 4189 (init) -> 4189 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:barrelAssembly: 4166 (init) -> 4166 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_madera: 4358 (init) -> 4358 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonAceroLargo: 4147 (init) -> 4147 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:inertebarradecarbon: 4132 (init) -> 4132 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoRandom: 198 (init) -> 198 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_carbono: 4434 (init) -> 4434 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMarkLancer_Dummy: 4252 (init) -> 4252 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AKB_Dummy: 4232 (init) -> 4232 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_diamante: 4424 (init) -> 4424 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_redstone: 4399 (init) -> 4399 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataHierro: 4161 (init) -> 4161 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_esmeralda: 4436 (init) -> 4436 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonCarbonLargo: 4150 (init) -> 4150 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_hierro: 4371 (init) -> 4371 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:sierraMercenaria: 4284 (init) -> 4284 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:copiarExtructura: 245 (init) -> 245 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_nokia: 4461 (init) -> 4461 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_obsidiana: 4311 (init) -> 4311 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoBlancoColumna: 237 (init) -> 237 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_esmeralda: 4502 (init) -> 4502 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin00_blocke: 211 (init) -> 211 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_obsidiana: 4517 (init) -> 4517 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_obsidiana: 4462 (init) -> 4462 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_piedra: 4324 (init) -> 4324 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:obsidianamercenaria: 4138 (init) -> 4138 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_carbono: 4327 (init) -> 4327 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:yuca_cocida: 4097 (init) -> 4097 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_madera: 4320 (init) -> 4320 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_oro: 4361 (init) -> 4361 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_hierro: 4437 (init) -> 4437 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_nokia: 4406 (init) -> 4406 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1G: 4224 (init) -> 4224 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_nokia: 4439 (init) -> 4439 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoNegroColumna: 238 (init) -> 238 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1B: 4223 (init) -> 4223 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_acero: 4389 (init) -> 4389 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusilMP5T5_Dummy: 4193 (init) -> 4193 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:patadecabra: 4338 (init) -> 4338 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:balaRedClub: 4268 (init) -> 4268 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_oro: 4507 (init) -> 4507 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_acero: 4304 (init) -> 4304 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_oro: 4334 (init) -> 4334 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala45acp_obsidiana: 4267 (init) -> 4267 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_redstone: 4487 (init) -> 4487 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_oro: 4397 (init) -> 4397 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_nokia: 4428 (init) -> 4428 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_hierro: 4459 (init) -> 4459 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargadorRedClub: 4217 (init) -> 4217 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_obsidiana: 4374 (init) -> 4374 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoCarcaj: 4123 (init) -> 4123 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonAceroMediano: 4148 (init) -> 4148 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaVerdeSemilla: 4103 (init) -> 4103 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_acero: 4326 (init) -> 4326 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_oro: 4452 (init) -> 4452 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_piedra: 4350 (init) -> 4350 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_esmeralda: 4491 (init) -> 4491 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_nokia: 4505 (init) -> 4505 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil90PNF_Dummy: 4200 (init) -> 4200 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_oro: 4430 (init) -> 4430 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_esmeralda: 4469 (init) -> 4469 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_madera: 4346 (init) -> 4346 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_obsidiana: 4440 (init) -> 4440 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabJungla00: 242 (init) -> 242 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:carbonomercenario: 4140 (init) -> 4140 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala45acp_redstone: 4266 (init) -> 4266 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:movingParts: 4168 (init) -> 4168 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_redstone: 4443 (init) -> 4443 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala9mm_standar: 4256 (init) -> 4256 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_oro: 4485 (init) -> 4485 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoZombye: 199 (init) -> 199 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil47AKG_Dummy: 4239 (init) -> 4239 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:dinamita: 4287 (init) -> 4287 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:GP25: 4170 (init) -> 4170 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala55645mm_Standar: 4269 (init) -> 4269 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_acero: 4341 (init) -> 4341 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_redstone: 4432 (init) -> 4432 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_oro: 4496 (init) -> 4496 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:slabRobleOscuro00: 244 (init) -> 244 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeAcero: 4119 (init) -> 4119 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_redstone: 4388 (init) -> 4388 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_diamante: 4391 (init) -> 4391 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_diamante: 4479 (init) -> 4479 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoReja01: 201 (init) -> 201 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:esmeraldaGrande: 4145 (init) -> 4145 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_carbono: 4305 (init) -> 4305 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_madera: 4416 (init) -> 4416 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_redstone: 4351 (init) -> 4351 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_hierro_piedra: 4497 (init) -> 4497 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_esmeralda: 4513 (init) -> 4513 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vacio: 4142 (init) -> 4142 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:obsidianaCompresa: 4137 (init) -> 4137 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMark2Lancer_Dummy: 4249 (init) -> 4249 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoHierro: 4164 (init) -> 4164 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_hierro: 4426 (init) -> 4426 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaFM92_Dummy: 4191 (init) -> 4191 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_diamante: 4295 (init) -> 4295 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_madera: 4471 (init) -> 4471 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaMauserC92: 4190 (init) -> 4190 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala5728mm_obsidiana: 4261 (init) -> 4261 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataAcero: 4158 (init) -> 4158 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_carbono: 4445 (init) -> 4445 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:suspensionderedstone: 4173 (init) -> 4173 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_redstone: 4421 (init) -> 4421 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala76239mm_Standar: 4272 (init) -> 4272 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonMaderaLargo: 4156 (init) -> 4156 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeCarbono: 4114 (init) -> 4114 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_diamante: 4501 (init) -> 4501 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_hierro_hierro: 4404 (init) -> 4404 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusil200AK: 4228 (init) -> 4228 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_esmeralda: 4370 (init) -> 4370 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaWinchester1200: 4220 (init) -> 4220 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_nokia: 4299 (init) -> 4299 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil57ar_5728: 4199 (init) -> 4199 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_hierro: 4308 (init) -> 4308 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaRedClub: 4214 (init) -> 4214 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_diamante: 4317 (init) -> 4317 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_diamante: 4435 (init) -> 4435 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_madera_hierro: 4330 (init) -> 4330 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_carbono: 4511 (init) -> 4511 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilM4A1: 4222 (init) -> 4222 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_acero: 4444 (init) -> 4444 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:botasDeAcero: 4120 (init) -> 4120 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonCarbonMediano: 4151 (init) -> 4151 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_hierro_diamante: 4306 (init) -> 4306 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_hierro: 4503 (init) -> 4503 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaRoja_blocke: 250 (init) -> 250 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_redstone: 4509 (init) -> 4509 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_acero_acero: 4433 (init) -> 4433 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_carbono_piedra: 4376 (init) -> 4376 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_diamante: 4512 (init) -> 4512 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_acero: 4315 (init) -> 4315 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_hierro: 4297 (init) -> 4297 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:callBlock: 228 (init) -> 228 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hierbaAzulPlanta: 4102 (init) -> 4102 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_obsidiana: 4451 (init) -> 4451 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_diamante: 4413 (init) -> 4413 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:M203: 4169 (init) -> 4169 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin01: 4292 (init) -> 4292 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_esmeralda: 4480 (init) -> 4480 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:vallestaMercenariaDeMadera: 4180 (init) -> 4180 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_nokia: 4384 (init) -> 4384 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_piedra: 4519 (init) -> 4519 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:maletin00: 4291 (init) -> 4291 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:suspensionderedstoneactivada: 4172 (init) -> 4172 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_madera_esmeralda: 4425 (init) -> 4425 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:canonAceroCorto: 4146 (init) -> 4146 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cargadorFM9X: 4196 (init) -> 4196 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola57NF_5728: 4198 (init) -> 4198 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:culataMadera: 4160 (init) -> 4160 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:baseDelAsensor: 230 (init) -> 230 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_carbono_obsidiana: 4506 (init) -> 4506 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:nokiamercenaria: 4139 (init) -> 4139 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_carbono: 4456 (init) -> 4456 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistola1911colt_Dummy: 4205 (init) -> 4205 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:aceromercenario: 4129 (init) -> 4129 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_diamante: 4446 (init) -> 4446 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeLanaAzul: 4108 (init) -> 4108 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeLanaNegra: 4112 (init) -> 4112 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:subfusil57ar_Dummy: 4202 (init) -> 4202 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:motorDelAscensor: 229 (init) -> 229 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeLanaRoja: 4110 (init) -> 4110 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocomS_Dummy: 4213 (init) -> 4213 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bandanaRoja: 4124 (init) -> 4124 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:escopetaWinchester1200_Dummy: 4221 (init) -> 4221 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_carbono_oro: 4463 (init) -> 4463 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_nokia: 4450 (init) -> 4450 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_acero_hierro: 4481 (init) -> 4481 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:c4: 4288 (init) -> 4288 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cartucho12G_antiEnder: 4263 (init) -> 4263 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_hierro_piedra: 4362 (init) -> 4362 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_carbono_redstone: 4325 (init) -> 4325 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_carbono: 4390 (init) -> 4390 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_esmeralda: 4447 (init) -> 4447 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pistolaSocom_Dummy: 4211 (init) -> 4211 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hoe_acero_oro: 4301 (init) -> 4301 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_madera: 4383 (init) -> 4383 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuarzoNegro: 236 (init) -> 236 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:fusilMark2Lancer: 4248 (init) -> 4248 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pantalonDeLanaRoja: 4111 (init) -> 4111 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_acero_obsidiana: 4348 (init) -> 4348 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano00: 204 (init) -> 204 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:blancoAldeano01: 205 (init) -> 205 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_piedra: 4398 (init) -> 4398 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:baculo: 4286 (init) -> 4286 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_nokia: 4417 (init) -> 4417 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_redstone: 4454 (init) -> 4454 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:hacha_madera_redstone: 4520 (init) -> 4520 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cuchillomercenario: 4339 (init) -> 4339 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:idDeBlockes: 4290 (init) -> 4290 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_hierro_madera: 4449 (init) -> 4449 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:espada_madera_piedra: 4387 (init) -> 4387 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_acero_madera: 4394 (init) -> 4394 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:mangoAcero: 4162 (init) -> 4162 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:cartucho12G_standar: 4262 (init) -> 4262 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:chalecoDeLanaAzul: 4107 (init) -> 4107 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:bala9mm_obsidiana: 4258 (init) -> 4258 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pala_carbono_acero: 4411 (init) -> 4411 (map). [18:39:58] [server thread/INFO] [FML]: Injected new block/item modmercenario:pica_madera_obsidiana: 4473 (init) -> 4473 (map). [18:39:58] [server thread/INFO] [FML]: Applying holder lookups [18:39:58] [server thread/INFO] [FML]: Holder lookups applied [18:39:59] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@376f2e1f) [18:39:59] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@376f2e1f) [18:39:59] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@376f2e1f) [18:39:59] [server thread/INFO]: Preparing start region for level 0 [18:40:00] [server thread/INFO]: Preparing spawn area: 10% [18:40:01] [server thread/INFO]: Preparing spawn area: 40% [18:40:02] [server thread/INFO]: Preparing spawn area: 93% [18:40:03] [server thread/INFO]: Changing view distance to 12, from 10 [18:40:05] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [18:40:05] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [18:40:05] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected] [18:40:05] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [18:40:05] [server thread/INFO] [FML]: [server thread] Server side modded connection established [18:40:05] [server thread/INFO]: Player132[local:E:1032f365] logged in with entity id 378 at (48.61527714437633, 83.0, 260.29962608266794) [18:40:06] [server thread/INFO]: Player132 joined the game [18:40:06] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [18:40:06] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [18:40:06] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [18:40:06] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [18:40:11] [server thread/INFO]: Saving and pausing game... [18:40:11] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [18:40:12] [server thread/INFO]: Saving chunks for level 'New World'/Nether [18:40:12] [server thread/INFO]: Saving chunks for level 'New World'/The End [18:40:12] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 7421ms behind, skipping 148 tick(s) [18:40:26] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3573ms behind, skipping 71 tick(s) [18:40:26] [server thread/INFO]: Player132 has just earned the achievement [Taking Inventory] [18:40:26] [Client thread/INFO]: [CHAT] Player132 has just earned the achievement [Taking Inventory] [18:40:33] [Client thread/INFO]: [CHAT] You do not have permission to use this command [18:40:34] [server thread/INFO]: Saving and pausing game... [18:40:34] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [18:40:35] [server thread/INFO]: Saving chunks for level 'New World'/Nether [18:40:35] [server thread/INFO]: Saving chunks for level 'New World'/The End [18:40:36] [server thread/INFO]: Stopping server [18:40:36] [server thread/INFO]: Saving players [18:40:36] [server thread/INFO]: Saving worlds [18:40:36] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [18:40:36] [server thread/INFO]: Saving chunks for level 'New World'/Nether [18:40:36] [server thread/INFO]: Saving chunks for level 'New World'/The End [18:40:37] [server thread/INFO] [FML]: Unloading dimension 0 [18:40:37] [server thread/INFO] [FML]: Unloading dimension -1 [18:40:37] [server thread/INFO] [FML]: Unloading dimension 1 [18:40:41] [server thread/INFO] [FML]: Applying holder lookups [18:40:41] [server thread/INFO] [FML]: Holder lookups applied [18:40:45] [Client thread/INFO]: Deleting level New World [18:40:45] [Client thread/INFO]: Attempt 1... [18:40:59] [server thread/INFO]: Starting integrated minecraft server version 1.8 [18:40:59] [server thread/INFO]: Generating keypair [18:40:59] [server thread/INFO]: Converting map! [18:40:59] [server thread/INFO]: Scanning folders... [18:40:59] [server thread/INFO]: Total conversion count is 0 [18:40:59] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [18:41:00] [server thread/INFO] [FML]: Applying holder lookups [18:41:00] [server thread/INFO] [FML]: Holder lookups applied [18:41:00] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@2eda3c85) [18:41:00] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@2eda3c85) [18:41:00] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@2eda3c85) [18:41:00] [server thread/INFO]: Preparing start region for level 0 [18:41:01] [server thread/INFO]: Preparing spawn area: 4% [18:41:02] [server thread/INFO]: Preparing spawn area: 6% [18:41:03] [server thread/INFO]: Preparing spawn area: 8% [18:41:04] [server thread/INFO]: Preparing spawn area: 10% [18:41:05] [server thread/INFO]: Preparing spawn area: 13% [18:41:06] [server thread/INFO]: Preparing spawn area: 15% [18:41:07] [server thread/INFO]: Preparing spawn area: 18% [18:41:08] [server thread/INFO]: Preparing spawn area: 21% [18:41:09] [server thread/INFO]: Preparing spawn area: 25% [18:41:10] [server thread/INFO]: Preparing spawn area: 28% [18:41:11] [server thread/INFO]: Preparing spawn area: 32% [18:41:12] [server thread/INFO]: Preparing spawn area: 36% [18:41:13] [server thread/INFO]: Preparing spawn area: 42% [18:41:14] [server thread/INFO]: Preparing spawn area: 47% [18:41:15] [server thread/INFO]: Preparing spawn area: 53% [18:41:16] [server thread/INFO]: Preparing spawn area: 59% [18:41:17] [server thread/INFO]: Preparing spawn area: 64% [18:41:18] [server thread/INFO]: Preparing spawn area: 68% [18:41:19] [server thread/INFO]: Preparing spawn area: 73% [18:41:20] [server thread/INFO]: Preparing spawn area: 80% [18:41:21] [server thread/INFO]: Preparing spawn area: 88% [18:41:22] [server thread/INFO]: Preparing spawn area: 94% [18:41:23] [server thread/INFO]: Preparing spawn area: 98% [18:41:24] [server thread/INFO]: Changing view distance to 12, from 10 [18:41:24] [Netty Local Client IO #1/INFO] [FML]: Server protocol version 2 [18:41:24] [Netty Server IO #3/INFO] [FML]: Client protocol version 2 [18:41:24] [Netty Server IO #3/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],[email protected] [18:41:24] [Netty Local Client IO #1/INFO] [FML]: [Netty Local Client IO #1] Client side modded connection established [18:41:24] [server thread/INFO] [FML]: [server thread] Server side modded connection established [18:41:24] [server thread/INFO]: Player132[local:E:c343b60f] logged in with entity id 684 at (166.5, 91.0, 242.5) [18:41:24] [server thread/INFO]: Player132 joined the game [18:41:24] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [18:41:24] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [18:41:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [18:41:24] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [18:41:33] [server thread/INFO]: Saving and pausing game... [18:41:33] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [18:41:42] [server thread/INFO]: Saving chunks for level 'New World'/Nether [18:41:42] [server thread/INFO]: Saving chunks for level 'New World'/The End [18:41:42] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 17632ms behind, skipping 352 tick(s) [18:42:47] [server thread/INFO]: Player132 has just earned the achievement [Taking Inventory] [18:42:47] [Client thread/INFO]: [CHAT] Player132 has just earned the achievement [Taking Inventory] [18:42:50] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2536ms behind, skipping 50 tick(s) [18:43:35] [Chunk Batcher 1/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes. [18:43:41] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.WorldGenSingleMinable:generate:48]: !!!!!!!!!!!!!!!!!!!!!! generar en =BlockPos{x=-93, y=63, z=-204} [18:43:41] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:54]: !!!!!!!!!!!!!!!!!!!!!! generar en =BlockPos{x=-93, y=63, z=-204} [18:43:44] [Chunk Batcher 1/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes. [18:43:44] [Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes. [18:44:11] [Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes. [18:44:29] [Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes. [18:44:44] [Client thread/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes. [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.WorldGenSingleMinable:generate:48]: !!!!!!!!!!!!!!!!!!!!!! generar en =BlockPos{x=-329, y=77, z=-613} [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:54]: !!!!!!!!!!!!!!!!!!!!!! generar en =BlockPos{x=-329, y=77, z=-613} [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:127]: ############################ [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:293]: min=62 [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:294]: max=76 [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:341]: lista=[blockPos{x=-331, y=76, z=-614}, BlockPos{x=-330, y=76, z=-625}, BlockPos{x=-330, y=69, z=-602}, BlockPos{x=-320, y=73, z=-612}, BlockPos{x=-339, y=76, z=-613}, BlockPos{x=-319, y=74, z=-624}, BlockPos{x=-317, y=62, z=-602}, BlockPos{x=-339, y=74, z=-626}, BlockPos{x=-339, y=72, z=-602}] [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:342]: orden=[6, 2, 8, 3, 5, 7, 0, 1, 4] [18:45:36] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-339, y=76, z=-613} [18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-330, y=76, z=-625} [18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-331, y=76, z=-614} [18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-339, y=74, z=-626} [18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-319, y=74, z=-624} [18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-320, y=73, z=-612} [18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-339, y=72, z=-602} [18:45:37] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-330, y=70, z=-602} [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarAldea:146]: bpos=BlockPos{x=-317, y=69, z=-602} [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:293]: min=62 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:294]: max=76 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:341]: lista=[blockPos{x=-331, y=76, z=-614}, BlockPos{x=-330, y=76, z=-625}, BlockPos{x=-330, y=69, z=-602}, BlockPos{x=-320, y=73, z=-612}, BlockPos{x=-339, y=76, z=-613}, BlockPos{x=-319, y=74, z=-624}, BlockPos{x=-317, y=62, z=-602}, BlockPos{x=-339, y=74, z=-626}, BlockPos{x=-339, y=72, z=-602}] [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.utilidades.util:ordenarPorAltura:342]: orden=[6, 2, 8, 3, 5, 7, 0, 1, 4] [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar11p:623]: ### generar11p=2 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar11p:623]: ### generar11p=4 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar1p:488]: ### generar1p=2 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarCorral:770]: ### generarCorral=5 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar2p:290]: ### generar2p=4 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar1p:488]: ### generar1p=2 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarCorral:770]: ### generarCorral=0 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generarCorral:770]: ### generarCorral=2 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.mundo.extructuras.casa2pisos00:generar1p:488]: ### generar1p=3 [18:45:38] [server thread/INFO] [sTDOUT]: [mercenarymod.blocks.multitextura.puertas.verticalTrapdoorM00:onBlockAdded:158]: onBlockAdded [18:46:53] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 202561ms behind, skipping 4051 tick(s) [18:47:06] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 13795ms behind, skipping 275 tick(s) [18:47:07] [server thread/INFO]: Saving and pausing game... [18:47:07] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [18:47:08] [server thread/INFO]: Saving chunks for level 'New World'/Nether [18:47:08] [server thread/INFO]: Saving chunks for level 'New World'/The End [18:47:16] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4474ms behind, skipping 89 tick(s) [18:47:49] [server thread/INFO]: Changing view distance to 4, from 12 [18:47:57] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5439ms behind, skipping 108 tick(s) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:891]: setMotor(BlockPos{x=-339, y=79, z=-626})Mundo=false [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:899]: es un Motor [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:914]: El motor si tiene energia [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:buscarAscensor:607]: buscarAscensor(false, BlockPos{x=-339, y=79, z=-626}) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:crearAsensor:808]: crearAsensor(false, BlockPos{x=-339, y=74, z=-626}) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setDestino:956]: ))))) setDestino(BlockPos{x=-339, y=76, z=-626}) [18:50:12] [Client thread/INFO]: [CHAT] §3In which Floor am I =1 / 1 [18:50:12] [Client thread/INFO]: [CHAT] §3En que piso estoy =1 / 1 [18:50:12] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=0 [18:50:12] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=0ID=26409 [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=false @@Matar= false t=0 [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:298]: ### la entidad No ha Respondidio Aun0 [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [Netty Server IO #3/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_9726409 PD=97 ID=26409 [18:50:12] [Netty Server IO #3/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-339, y=74, z=-626} dezpD=-0.1) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:crearAsensor:808]: crearAsensor(false, BlockPos{x=-339, y=74, z=-626}) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:745]: abrirPuertas(false, BlockPos{x=-339, y=74, z=-626}) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:757]: abrirPuertas(00) [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:766]: abrirPuertas(01)1 [18:50:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:abrirPuertas:770]: abrirPuertas(02) [18:50:12] [server thread/ERROR]: Encountered an unexpected exception net.minecraft.util.ReportedException: Ticking entity at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:781) ~[MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) ~[integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65] Caused by: java.lang.IllegalArgumentException: Cannot get property PropertyBool{name=powered, clazz=class java.lang.Boolean, values=[true, false]} as it does not exist in BlockState{block=minecraft:air, properties=[]} at net.minecraft.block.state.BlockState$StateImplementation.getValue(BlockState.java:174) ~[blockState$StateImplementation.class:?] at mercenarymod.blocks.multitextura.puertas.puerta3x3t08.estaEnergizada(puerta3x3t08.java:1078) ~[puerta3x3t08.class:?] at mercenarymod.blocks.multitextura.puertas.puerta3x3t08.toggleDoor(puerta3x3t08.java:768) ~[puerta3x3t08.class:?] at mercenarymod.entidades.entidadAscensorMercenario.abrirPuertas(entidadAscensorMercenario.java:772) ~[entidadAscensorMercenario.class:?] at mercenarymod.entidades.entidadAscensorMercenario.onUpdate(entidadAscensorMercenario.java:375) ~[entidadAscensorMercenario.class:?] at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) ~[World.class:?] at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) ~[WorldServer.class:?] at net.minecraft.world.World.updateEntity(World.java:1997) ~[World.class:?] at net.minecraft.world.World.updateEntities(World.java:1823) ~[World.class:?] at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) ~[WorldServer.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) ~[MinecraftServer.class:?] ... 4 more [18:50:17] [server thread/ERROR]: This crash report has been saved to: /home/usuario/Modding/forge-1.8-1577-modmercenario/run/./crash-reports/crash-2016-02-29_18.50.17-server.txt [18:50:17] [server thread/INFO]: Stopping server [18:50:17] [server thread/INFO]: Saving players [18:50:17] [server thread/INFO]: Saving worlds [18:50:17] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [18:50:17] [server thread/INFO]: Saving chunks for level 'New World'/Nether [18:50:17] [server thread/INFO]: Saving chunks for level 'New World'/The End [18:50:18] [server thread/INFO] [FML]: Unloading dimension 0 [18:50:18] [server thread/INFO] [FML]: Unloading dimension -1 [18:50:18] [server thread/INFO] [FML]: Unloading dimension 1 [18:50:18] [server thread/INFO] [FML]: Applying holder lookups [18:50:18] [server thread/INFO] [FML]: Holder lookups applied [18:50:18] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded. -
[1.8] help solving issue whith custom elevator
perromercenary00 replied to perromercenary00's topic in Modder Support
Good days this is the build.graddle https://gist.github.com/anonymous/6c6d56fc8d456dbd6682 -
[1.8] help solving issue whith custom elevator
perromercenary00 replied to perromercenary00's topic in Modder Support
good days aparently i have ################################################# ForgeGradle 2.0-SNAPSHOT https://github.com/MinecraftForge/ForgeGradle ################################################# i delete the .gradlew folder and do he graddle thing but there is no change the levator still comitting the same crash whith the same java.lang.NullPointerException: Unexpected error this is whith forge forge-1.8-11.14.3.1520-mdk i wanna try whith forge-1.8-11.14.4.1577-mdk but for some reason before i du the ./gradlew setupDecompWorkspace --refresh-dependencies ./gradlew eclipse end whith an empty eclipse folder soo eclipse don't works whith 1577, trying to solve and issue i end stuck whith another someone have some idea how to solve this 1577 forge issue thanks for reading -
good days i been working in an elevator and it works, welll at least part of the time the rets of time i get this stupid error when the entity begins to move java.lang.NullPointerException: Unexpected error at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source) and crash the game actually i think the trouble has to be whith the writeEntityToNBT | readEntityFromNBT coz the last time i get the same trouble whith a custome zombie but this time can not solved so could be any other thing package mercenarymod.entidades; import java.util.ArrayList; import java.util.List; import mercenarymod.Mercenary; import mercenarymod.blocks.MercenaryModBlocks; import mercenarymod.blocks.multitextura.ascensor.motorDelAscensor; import mercenarymod.blocks.multitextura.puertas.ayudanteDePuertas; import mercenarymod.blocks.multitextura.puertas.puerta3x3t08; import mercenarymod.eventos.mensajeMercenarioalServidor; import mercenarymod.utilidades.chat; import mercenarymod.utilidades.util; import net.minecraft.block.Block; import net.minecraft.block.state.IBlockState; import net.minecraft.enchantment.Enchantment; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagList; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.BlockPos; import net.minecraft.util.DamageSource; import net.minecraft.util.MathHelper; import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.ResourceLocation; import net.minecraft.util.Vec3; import net.minecraft.world.World; public class entidadAscensorMercenario extends Entity { private int ticksExisted = 0; private int accionTick = 0; private EntityPlayer playerIn; private boolean dontDie = false; private BlockPos motor; private BlockPos origen; private BlockPos destino; private BlockPos puerta; private byte dx = 0; private byte dy = 0; private byte dz = 0; private int motorX = 0; private int motorY = 0; private int motorZ = 0; private int origenB = 0; private short origenX = 0; private short origenY = 0; private short origenZ = 0; private int destinoB = 0; private short destinoX = 0; private short destinoY = 0; private short destinoZ = 0; private byte canPisos = 0; private byte pisoDestino = 0; private byte alturaPisoDestino = 0; private boolean dezplazarse = false; private boolean existo = false; private boolean matar = false; private int matarEn = -1; private boolean descender = false; private byte radio = 1; private float dezp = -0.10F;// -0.05F; private ArrayList<IBlockState> estados = new ArrayList<IBlockState>(); private ArrayList<BlockPos> posiciones = new ArrayList<BlockPos>(); private ArrayList<Byte> px = new ArrayList<Byte>(); private ArrayList<Byte> py = new ArrayList<Byte>(); private ArrayList<Byte> pz = new ArrayList<Byte>(); private List lista = null; private BlockPos puertas[] = new BlockPos[0]; private byte lados[] = new byte[0]; private byte pisos[] = new byte[0]; // ################################################################################################################# public entidadAscensorMercenario(World worldIn) { super(worldIn); this.setSize(3.0F, 1.0F); } // ####################################################################################3 public entidadAscensorMercenario(World worldIn, double x, double y, double z) { super(worldIn); this.setSize(1.0F, 1.0F); this.renderDistanceWeight = 10.0D; this.setPosition(x + 0.5D, y, z + 0.5D); } // ####################################################################################3 public entidadAscensorMercenario(World worldIn, BlockPos motor, EntityPlayer player) { super(worldIn); this.setSize(3.0F, 1.0F); this.renderDistanceWeight = 100.0D; this.setPlayer(player); this.setMotor(motor); } // ################################################################################################################# // ################################################################################################################# @Override protected void entityInit() { this.dataWatcher.addObject(16, Byte.valueOf((byte) 0)); this.dataWatcher.addObject(17, 0.0F); // this.posX this.dataWatcher.addObject(18, 0.0F); // this.posY this.dataWatcher.addObject(19, 0.0F); // this.posZ this.dataWatcher.addObject(20, 0); // this.motorX this.dataWatcher.addObject(21, 0); // this.motorY this.dataWatcher.addObject(22, 0); // this.motorZ // this.origen in byte x 0000 0000 00 byte y 0000 0000 00 byte z 0000 // 0000 0 this.dataWatcher.addObject(23, 0); // this.destino in byte x 0000 0000 00 byte y 0000 0000 00 byte z 0000 // 0000 0 //511 max value this.dataWatcher.addObject(24, 0); this.dataWatcher.addObject(25, 0); // cantidad de pisos x 0000 0000 00 // //piso destino x 0000 0000 00 // this.andar | detenerse y todas // esa cosas 0000 } // ################################################################################################################# public void escribirAlDatawacher() { // if (dezplazarse) { this.dataWatcher.updateObject(17, (float) this.posX); // this.posX this.dataWatcher.updateObject(18, (float) this.posY); // this.posY this.dataWatcher.updateObject(19, (float) this.posZ); // this.posZ } this.dataWatcher.updateObject(20, this.motorX); // this.motorX this.dataWatcher.updateObject(21, this.motorY); // this.motorY this.dataWatcher.updateObject(22, this.motorZ); // this.motorZ origenB = 0; origenB = (((origenX + 512) & 1023) << 20) + (((origenY + 512) & 1023) << 10) + ((origenZ + 512) & 1023); this.dataWatcher.updateObject(23, origenB); // System.out.println("@@@@@@@@ this.origenX ="+this.origenX); destinoB = 0; destinoB = (((destinoX + 512) & 1023) << 20) + (((destinoY + 512) & 1023) << 10) + ((destinoZ + 512) & 1023); this.dataWatcher.updateObject(24, destinoB); descender = (dezp < 0.0F ? true : false); float desp = (descender ? (dezp * -1) : (dezp)); int v00 = 0; v00 += (this.dezplazarse ? 1 : 0); // 0 v00 += (this.existo ? 2 : 0); // 00 v00 += (this.matar ? 4 : 0); // 000 v00 += (this.descender ? 8 : 0); // 0000 v00 += ((canPisos & 63) << 4); // 000000 0000 //max 63 v00 += ((pisoDestino & 63) << 10); // 000000 000000 0000 v00 += ((radio & 15) << 16); // 0000 000000 000000 0000 v00 += ((((int) (desp * 100)) & 1023) << 20); // 0000000000 000000 0000 // 000000 000000 0000 this.dataWatcher.updateObject(25, v00); } // ################################################################################################################# public void leerDelDatawacher() { // if (dezplazarse) { this.posX = this.dataWatcher.getWatchableObjectFloat(17); // this.posX this.posY = this.dataWatcher.getWatchableObjectFloat(18); // this.posY this.posZ = this.dataWatcher.getWatchableObjectFloat(19); // this.posZ } this.motorX = this.dataWatcher.getWatchableObjectInt(20); // this.motorX this.motorY = this.dataWatcher.getWatchableObjectInt(21); // this.motorY this.motorZ = this.dataWatcher.getWatchableObjectInt(22); // this.motorZ this.origenB = this.dataWatcher.getWatchableObjectInt(23); // this.origenB this.origenX = (byte) (((origenB >> 20) & 1023) - 512); this.origenY = (byte) (((origenB >> 10) & 1023) - 512); this.origenZ = (byte) (((origenB) & 1023) - 512); this.destinoB = this.dataWatcher.getWatchableObjectInt(24); // this.destinoB this.destinoX = (byte) (((destinoB >> 20) & 1023) - 512); this.destinoY = (byte) (((destinoB >> 10) & 1023) - 512); this.destinoZ = (byte) (((destinoB) & 1023) - 512); // System.out.println("@@@@@@@@ this.origenX ="+this.origenX); int v00 = this.dataWatcher.getWatchableObjectInt(25); // this.varuables // varias this.dezplazarse = ((v00 & 1) > 0 ? true : false); this.existo = (((v00 >> 1) & 1) > 0 ? true : false); this.matar = (((v00 >> 2) & 1) > 0 ? true : false); this.descender = (((v00 >> 3) & 1) > 0 ? true : false); this.canPisos = (byte) ((v00 >> 4) & 63); this.pisoDestino = (byte) ((v00 >> 10) & 63); this.radio = (byte) ((v00 >> 16) & 15); this.dezp = (float) (((v00 >> 20) & 1023) / 100.0F); // max 1023 if (this.descender) { this.dezp *= (-1); } } // ################################################################################################################# @Override /** * Called to update the entity's position/logic. */ public void onUpdate() { super.onUpdate(); //every 10 ticks read write the datawacher to update variables from server to local entity // ### leer y escribir en el datawacher if ((accionTick % 10) == 0 | (accionTick < 10)) { if (this.worldObj.isRemote) { leerDelDatawacher(); } else { escribirAlDatawacher(); } } //search entityes to be afecte by elevator if (this.origen != null){ detectarEntidades(this.worldObj, this.origen); } //Check if entity has been spawned in the local world for 12 ticks if not kill and abort everyting // ### existe en los dos mundos ? if (!existo) { if ((accionTick < 10)) { System.out.println("Mundo=" + this.worldObj.isRemote + " @@Matar= " + this.matar + " t=" + accionTick); if (this.worldObj.isRemote) { System.out.println("###Mensaje enviado al Servidor t=" + accionTick + "ID=" + this.getEntityId()); String mensaje = "ASCEN_" + "97" + this.getEntityId(); Mercenary.network.sendToServer(new mensajeMercenarioalServidor(mensaje)); } else { System.out.println("### la entidad No ha Respondidio Aun" + accionTick); } } } // ############################3 // kill the server side entity if the local world entity has not send the package to turn existo to true // matar la entidad del servidor si no existe en el mundo local if ((accionTick == 12) & (!this.worldObj.isRemote)) { if (!existo) { System.out.println("\n\n\n\n\n###No existe en el mundo local "); this.setMatar(true); } else { System.out.println("\n\n\n\n\n###Entidad Respondio desde el mundo local "); } } // ############################3 // if values are no loaded kill and abort everyting // si las variables son nulas if (!this.worldObj.isRemote) { if ((accionTick < 12) & (this.motor == null)) { this.setOrigen(this.getPosition()); this.crearAsensor(this.worldObj, origen); this.detectarEntidades(this.worldObj, origen); this.telePortarEntidades(this.worldObj, origen); this.setMatar(true); this.escribirAlDatawacher(); } } // ############################3 // desplazamiento del bloque ascensor // move the elevator origen block if (dezplazarse & existo) { this.setPosition(this.posX, this.posY + dezp, this.posZ); if ((accionTick % 10) == 0) { if (descender) { this.origen = this.origen.down(); } else { this.origen = this.origen.up(); } this.setOrigen(this.origen); // actualizar la posicion de la // entidad if (!this.worldObj.isRemote) { this.eliminarAsensor(this.worldObj, this.origen); } } } // ############################3 // check if origen block has reach destino blockPos // revizar cuando el ascensor llegue asu destino if (dezplazarse & existo) { if ((accionTick % 10) == 0) { // detectarEntidades(this.worldObj, this.getPosition()); // moverEntidades(this.worldObj, this.getPosition()); if (descender) { if ((this.origen.getY() + 2) <= this.destino.getY()) { this.setOrigen(this.destino.down(2)); dezplazarse = false; if (!this.worldObj.isRemote) { this.crearAsensor(this.worldObj, this.destino.down(2)); this.abrirPuertas(this.worldObj, this.destino.down(2)); this.setMatar(true); } this.telePortarEntidades(this.worldObj, this.destino.down(2)); } } if (!descender) { if ((this.origen.getY() + 2) >= this.destino.getY()) { this.setOrigen(this.destino.down(2)); dezplazarse = false; if (!this.worldObj.isRemote) { this.crearAsensor(this.worldObj, this.destino.down(2)); this.abrirPuertas(this.worldObj, this.destino.down(2)); this.setMatar(true); } this.telePortarEntidades(this.worldObj, this.destino.down(2)); } } } } // ############################3 // // move the afected entityes if (this.origen != null){ moverEntidades(this.worldObj, this.origen); } //kill if (this.matar) { System.out.println("XXX Mundo=" + this.worldObj.isRemote + " Matar=" + accionTick); this.setDead(); } //kill afther amount of ticks if (matarEn == accionTick) { System.out.println("XXX Mundo=" + this.worldObj.isRemote + " MatarEn=" + matarEn + " at=" + accionTick); this.setMatar(true); } accionTick++; ticksExisted++; } // ################################################################################################################# //detect the entityes in elevator range public void detectarEntidades(World worldIn, BlockPos centro) { int f = 2; BlockPos posMin = centro.add(-f, -3, -f); BlockPos posMax = centro.add(f, 6, f); double centroY = centro.getY(); AxisAlignedBB boundingBox = new AxisAlignedBB(posMin, posMax); lista = worldIn.getEntitiesWithinAABB(Entity.class, boundingBox); int llist = lista.size(); } // ################################################################################################################# //detect blocks in elevator range void leerBlockes(World worldIn, BlockPos centro) { BlockPos dpos = centro; int x = 0;// centro.getX(); int y = 0;// centro.getY(); int z = 0;// centro.getZ(); int dxmin = x - radio, dxmax = x + radio; int dymin = y - 0, dymax = y + 4; int dzmin = z - radio, dzmax = z + radio; int count = 0; for (int dxi = dxmin; dxi <= dxmax; dxi++) { for (int dyi = dymin; dyi <= dymax; dyi++) { for (int dzi = dzmin; dzi <= dzmax; dzi++) { dpos = centro.add(dxi, dyi, dzi); posiciones.add(dpos); px.add((byte) dxi); py.add((byte) dyi); pz.add((byte) dzi); estados.add(worldIn.getBlockState(dpos)); worldIn.setBlockToAir(dpos); } } } } // ################################################################################################################# // set detected blocks in new position void crearBlockes(World worldIn, BlockPos centro) { // IBlockState aire = Blocks.air.getDefaultState(); // util.cuadradoRellenoDosPuntos(worldIn, null, centro.add(-1, -3, -1), // centro.add(1, 3, 1), aire); for (int dbi = 0; dbi < posiciones.size(); dbi++) { worldIn.setBlockState(centro.add(px.get(dbi), py.get(dbi), pz.get(dbi)), estados.get(dbi)); } for (int dbi = 0; dbi < posiciones.size(); dbi++) { worldIn.setBlockState(centro.add(px.get(dbi), py.get(dbi), pz.get(dbi)), estados.get(dbi)); } } // ################################################################################################################# void moverEntidades(World worldIn, BlockPos centro) { double centroY = centro.getY(); int mobId = 0; int ascensorID = this.getEntityId(); float dezpD = 0.0F; if (this.dezplazarse) { dezpD = dezp; } System.out.println("======> moverEntidades(" + worldIn.isRemote + ", " + centro + " dezpD=" + dezpD + ")"); for (int l = 0; l < lista.size(); l++) { Entity mob = (Entity) lista.get(l); if (mob != null) { double ascPosY = this.posY; double mobPosX = 0.0D; double mobPosY = 0.0D; double mobPosZ = 0.0D; mobId = mob.getEntityId(); if (mobId != ascensorID) { mob.onGround = true; mob.motionY = dezpD;// 0.05F; mob.fallDistance = 0.0F; mobPosX = mob.posX; mobPosY = mob.posY; mobPosZ = mob.posZ; if (((mobPosY) > (ascPosY - 1)) & ((mobPosY) < (ascPosY + 4))) { mob.setPosition(mobPosX, ascPosY + 1.2D, mobPosZ); } if ((mobPosY) > (centroY + 4)) { mob.setPosition(mobPosX, ascPosY + 5.2D, mobPosZ); } } } } } // ################################################################################################################# void telePortarEntidades(World worldIn, BlockPos centro) { System.out.println(")))))) telePortarEntidades(" + worldIn.isRemote + ", " + centro + ")"); double centroY = centro.getY(); double mobPosX = 0.0D; double mobPosY = 0.0D; double mobPosZ = 0.0D; int mobId = 0; int ascensorID = this.getEntityId(); for (int l = 0; l < lista.size(); l++) { Entity mob = (Entity) lista.get(l); if (mob != null) { mobId = mob.getEntityId(); if (mobId != ascensorID) { mobPosX = mob.posX; mobPosY = mob.posY; mobPosZ = mob.posZ; mob.motionY = 0.0F; mob.fallDistance = 0.0F; if (((mobPosY) > (centroY - 1)) & ((mobPosY) < (centroY + 4))) { mob.setPosition(mobPosX, centroY + 1.2D, mobPosZ); } if ((mobPosY) > (centroY + 4)) { mob.setPosition(mobPosX, centroY + 5.2D, mobPosZ); } } } } } // #########################################################################3 public BlockPos buscarAscensor(World worldIn, BlockPos pos) { System.out.println("buscarAscensor(" + worldIn.isRemote + ", " + pos + ")"); BlockPos ascensor = null; BlockPos dpos = pos; for (int as = 0; as < 255; as++) { dpos = dpos.add(0, -1, 0); if (ayudanteDePuertas.isAscensorBlock(worldIn, dpos)) { return dpos; } if (ayudanteDePuertas.isAscensorLimiteBlock(worldIn, dpos)) { as = 256; } if (dpos.getY() < 2) { as = 256; } } crearAsensor(worldIn, pos.down(5)); ascensor = pos.down(5); return ascensor; } // #########################################################################3 public ArrayList<BlockPos> buscarPuertas(World worldIn, BlockPos motorPos) { ArrayList<BlockPos> puertas = new ArrayList<BlockPos>(); ArrayList<Byte> lados = new ArrayList<Byte>(); ArrayList<Byte> pisos = new ArrayList<Byte>(); BlockPos dpos = motorPos; for (int as = 0; as < 250; as++) { dpos = dpos.add(0, -1, 0); boolean puerta = false; byte lado = 0; // binario para tambier guardar el lado de la puerta if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.north(2))) { puerta = true; lado += 1; // puertas.add(dpos.north(2)); } if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.south(2))) { puerta = true; lado += 2; // puertas.add(dpos.south(2)); } if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.east(2))) { puerta = true; lado += 4; // puertas.add(dpos.east(2)); } if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos.west(2))) { puerta = true; lado += 8; // puertas.add(dpos.west(2)); } if (puerta) { puertas.add(dpos); lados.add(lado); pisos.add((byte) dpos.getY()); } if (ayudanteDePuertas.isAscensorLimiteBlock(worldIn, dpos)) { as = 256; } } this.puertas = new BlockPos[puertas.size()]; for (byte l = 0; l < puertas.size(); l++) { this.puertas[l] = puertas.get(l); } this.lados = new byte[lados.size()]; for (byte l = 0; l < lados.size(); l++) { this.lados[l] = lados.get(l); } this.pisos = new byte[pisos.size()]; for (byte l = 0; l < pisos.size(); l++) { this.pisos[l] = pisos.get(l); } this.canPisos = (byte) pisos.size(); return puertas; } // #########################################################################3 public static BlockPos buscarPuertasEnArea3x3x3(World worldIn, BlockPos centro) { int radio = 1; int x = 0;// centro.getX(); int y = 0;// centro.getY(); int z = 0;// centro.getZ(); int dxmin = x - radio, dxmax = x + radio; int dymin = y - radio, dymax = y + radio; int dzmin = z - radio, dzmax = z + radio; BlockPos dpos; for (int dxi = dxmin; dxi <= dxmax; dxi++) { for (int dyi = dymin; dyi <= dymax; dyi++) { for (int dzi = dzmin; dzi <= dzmax; dzi++) { dpos = centro.add(dxi, dyi, dzi); if (ayudanteDePuertas.esUnaPuerta(worldIn, dpos)) { return dpos; } } } } return null; } // #########################################################################3 public void abrirPuertas(World worldIn, BlockPos centro) { System.out.println("abrirPuertas(" + worldIn.isRemote + ", " + centro + ")"); // this.abrirPuertas(this.worldObj, origen); BlockPos dpos = centro.up(2); BlockPos dpuertas[] = new BlockPos[4]; dpuertas[0] = dpos.north(2); dpuertas[1] = dpos.south(2); dpuertas[2] = dpos.west(2); dpuertas[3] = dpos.east(2); System.out.println("abrirPuertas(00)"); for (byte p = 0; p < 4; p++) { IBlockState puertaSt = this.worldObj.getBlockState(dpuertas[p]); Block puertaBlk = puertaSt.getBlock(); if (puertaBlk instanceof puerta3x3t08) { System.out.println("abrirPuertas(01)" + p); puerta3x3t08 puertaAscensor = (puerta3x3t08) puertaBlk; System.out.println("abrirPuertas(02)"); puertaAscensor.toggleDoor(this.worldObj, puerta, false); // abrir } } } // #########################################################################3 public byte enquePisoEstoy(BlockPos puerta) { byte p = -1; int lp = pisos.length; byte altura = (byte) puerta.getY(); if (lp < 1) { this.buscarPuertas(this.worldObj, this.getMotor()); } lp = pisos.length; if (lp > 0) { for (byte l = 0; l < lp; l++) { if (altura == pisos[l]) { return (byte) (l + 1); } } } return p; } // #########################################################################3 public static void crearAsensor(World worldIn, BlockPos pos) { System.out.println("crearAsensor(" + worldIn.isRemote + ", " + pos + ")"); IBlockState base = MercenaryModBlocks.baseDelAsensor.getDefaultState(); IBlockState techo = Blocks.iron_trapdoor.getDefaultState();// MercenaryModBlocks.cuarzoBlanco.getDefaultState(); worldIn.setBlockState(pos.up(4).north(), base); worldIn.setBlockState(pos.up(4).east(), base); worldIn.setBlockState(pos.up(4).west(), base); worldIn.setBlockState(pos.up(4).north().east(), base); worldIn.setBlockState(pos.up(4).north().west(), base); worldIn.setBlockState(pos.up(4).south(), base); worldIn.setBlockState(pos.up(4).south().east(), base); worldIn.setBlockState(pos.up(4).south().west(), base); worldIn.setBlockState(pos.up(4), techo); worldIn.setBlockState(pos.north(), base); worldIn.setBlockState(pos.east(), base); worldIn.setBlockState(pos.west(), base); worldIn.setBlockState(pos.north().east(), base); worldIn.setBlockState(pos.north().west(), base); worldIn.setBlockState(pos.south(), base); worldIn.setBlockState(pos.south().east(), base); worldIn.setBlockState(pos.south().west(), base); // .down(5) worldIn.setBlockState(pos, base); } // #########################################################################3 public static void eliminarAsensor(World worldIn, BlockPos pos) { IBlockState base = Blocks.air.getDefaultState(); IBlockState techo = Blocks.air.getDefaultState(); worldIn.setBlockState(pos.up(4), techo); worldIn.setBlockState(pos.up(4).north(), base); worldIn.setBlockState(pos.up(4).east(), base); worldIn.setBlockState(pos.up(4).west(), base); worldIn.setBlockState(pos.up(4).north().east(), base); worldIn.setBlockState(pos.up(4).north().west(), base); worldIn.setBlockState(pos.up(4).south(), base); worldIn.setBlockState(pos.up(4).south().east(), base); worldIn.setBlockState(pos.up(4).south().west(), base); worldIn.setBlockState(pos, base); worldIn.setBlockState(pos.north(), base); worldIn.setBlockState(pos.east(), base); worldIn.setBlockState(pos.west(), base); worldIn.setBlockState(pos.north().east(), base); worldIn.setBlockState(pos.north().west(), base); worldIn.setBlockState(pos.south(), base); worldIn.setBlockState(pos.south().east(), base); worldIn.setBlockState(pos.south().west(), base); // .down(5) } // #########################################################################3 // ################################################################################################################# @Override public float getEyeHeight() { return 1.74F; } // ######### public void setPlayer(EntityPlayer player) { this.playerIn = player; } public EntityPlayer getPlayer() { return this.playerIn; } // ######### public BlockPos getMotor() { return this.motor; } public boolean setMotor(BlockPos M00) { this.motor = M00; System.out.println("setMotor(" + M00 + ")" + "Mundo=" + this.worldObj.isRemote); if (ayudanteDePuertas.esMotordeAscensor(this.worldObj, M00)) { this.motorX = motor.getX(); this.motorY = motor.getY(); this.motorZ = motor.getZ(); System.out.println("es un Motor"); if (!this.worldObj.isBlockPowered(M00)) { System.out.println("el Motor no tinen energia"); if (playerIn != null) { System.out.println("el player no es nulo"); chat.chatr(playerIn, "There is no power"); chat.chatr(playerIn, "El asensor no tiene Energia"); } } else { System.out.println("El motor si tiene energia"); this.setOrigen(this.buscarAscensor(this.worldObj, M00)); this.buscarPuertas(this.worldObj, M00); } return true; } return false; } // ######### // ######### public BlockPos getOrigen() { return origen; } public void setOrigen(BlockPos p) { this.origen = p; this.origenX = (short) (this.origen.getX() - this.motorX); this.origenY = (short) (this.origen.getY() - this.motorY); this.origenZ = (short) (this.origen.getZ() - this.motorZ); this.setPosition(this.origen.getX() + 0.5D, this.origen.getY(), this.origen.getZ() + 0.5D); if (!this.worldObj.isRemote) { escribirAlDatawacher(); } } // ######### public BlockPos getDestino() { return destino; } public void setDestino(BlockPos d) { destino = d; System.out.println("))))) setDestino(" + d + ")"); this.destinoX = (short) (this.destino.getX() - this.motorX); this.destinoY = (short) (this.destino.getY() - this.motorY); this.destinoZ = (short) (this.destino.getZ() - this.motorZ); } // ######### public BlockPos getPuerta() { return puerta; } public void setPuerta(BlockPos d) { this.puerta = d; } // ######### public byte getCanPisos() { return this.canPisos; } public void setCanPisos(byte b) { this.canPisos = b; } // ######### public byte getPisoDestino() { return this.pisoDestino; } public void setPisoDestino(byte b) { if (canPisos > 0) { if (b < 1) { b = 1; } if (b > this.canPisos) { b = (byte) (this.canPisos); } b -= 1; byte alturaDelPiso = this.pisos[b]; byte alturaDelAscensor = (byte) (this.origen.getY() + 2); this.pisoDestino = (byte) (b + 1); this.setPuerta(this.puertas[b]); this.descender = (alturaDelPiso <= alturaDelAscensor ? true : false); if (this.descender) { if (dezp > 0.0F) { dezp *= -1; } } if (!this.descender) { if (dezp < 0.0F) { dezp *= -1; } } BlockPos dpos = new BlockPos(this.getMotor().getX(), alturaDelPiso, this.getMotor().getZ()); this.setDestino(dpos); } else { this.pisoDestino = 0; } if (!this.worldObj.isRemote) { escribirAlDatawacher(); } } // ######### public byte getAlturaPisoDestino() { return this.alturaPisoDestino; } public void setAlturaPisoDestino(byte b) { this.alturaPisoDestino = b; } // ######### public byte getRadio() { return this.radio; } public void setRadio(byte b) { this.radio = b; } // ######### public boolean getDezplazarse() { return this.dezplazarse; } public void setDezplazarse(boolean b) { this.dezplazarse = b; if (!this.worldObj.isRemote) { escribirAlDatawacher(); } } // ######### public boolean getExisto() { return this.existo; } public void setExisto(boolean b) { this.existo = b; } // ######### public boolean getMatar() { return this.matar; } public void setMatar(boolean m) { this.matar = m; } public void setMatar(int m) { this.matarEn = m; } // ######### public float getDezp() { return this.dezp; } public void setDezp(float f) { this.dezp = f; } public int getFacing() { // TODO Auto-generated method stub return 0; } public int getTipo() { // TODO Auto-generated method stub return 0; } public int getTicksInGround() { // TODO Auto-generated method stub return 100; } public void setStapp(boolean b) { this.matar = b; } /** * (abstract) Protected helper method to write subclass entity data to NBT. */ public void writeEntityToNBT(NBTTagCompound tagCompound) { } // #########################################################################################################################3 /** * (abstract) Protected helper method to read subclass entity data from NBT. */ public void readEntityFromNBT(NBTTagCompound tagCompund) { } // ################################################################################################################# } ERROR [Console output redirected to file:/home/usuario/eclipseOutput.txt] Picked up _JAVA_OPTIONS: -Xmx2g Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [20:29:17] [main/INFO] [GradleStart]: Extra: [] [20:29:17] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /home/usuario/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker] [20:29:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [20:29:17] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [20:29:17] [main/INFO] [FML]: Forge Mod Loader version 11.14.3.1520 for Minecraft 1.8 loading [20:29:17] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Linux:amd64:3.16.0-4-amd64, installed at /opt/jdk1.8.0_65/jre [20:29:17] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [20:29:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:29:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [20:29:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [20:29:18] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [20:29:18] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [20:29:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [20:29:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [20:29:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [20:29:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [20:29:19] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [20:29:20] [Client thread/INFO]: Setting user: Player113 [20:29:24] [Client thread/INFO]: LWJGL Version: 2.9.1 [20:29:25] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:-1]: ---- Minecraft Crash Report ---- // I'm sorry, Dave. Time: 28/02/16 08:29 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.8 Operating System: Linux (amd64) version 3.16.0-4-amd64 Java Version: 1.8.0_65, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 871571728 bytes (831 MB) / 1056309248 bytes (1007 MB) up to 2130051072 bytes (2031 MB) JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2' [20:29:25] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [20:29:25] [Client thread/INFO] [FML]: MinecraftForge v11.14.3.1520 Initialized [20:29:25] [Client thread/INFO] [FML]: Replaced 204 ore recipies [20:29:26] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [20:29:26] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [20:29:26] [Client thread/INFO] [FML]: Searching /home/usuario/Modding/forge-1.8-1520-modmercenario/run/mods for mods [20:29:26] [Client thread/INFO] [modmercenario]: Mod modmercenario is missing the required element 'name'. Substituting modmercenario [20:29:30] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [20:29:30] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at CLIENT [20:29:30] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at SERVER [20:29:31] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario [20:29:31] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [20:29:31] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations [20:29:31] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [20:29:31] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [20:29:31] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [20:29:33] [Client thread/INFO] [FML]: Applying holder lookups [20:29:33] [Client thread/INFO] [FML]: Holder lookups applied [20:29:33] [Client thread/INFO] [FML]: Injecting itemstacks [20:29:33] [Client thread/INFO] [FML]: Itemstack injection complete [20:29:33] [Client thread/INFO] [sTDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's. [20:29:33] [Client thread/ERROR]: Couldn't initialize twitch stream [20:29:34] [sound Library Loader/INFO]: Starting up SoundSystem... [20:29:34] [Thread-8/INFO]: Initializing LWJGL OpenAL [20:29:34] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [20:29:34] [Thread-8/INFO]: OpenAL initialized. [20:29:34] [sound Library Loader/INFO]: Sound engine started [20:29:36] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=false': java.io.FileNotFoundException: modmercenario:models/block/callBlock00.json [20:29:36] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=true': java.lang.IllegalStateException: circular model dependencies involving model modmercenario:block/callBlock00 [20:29:36] [Client thread/INFO] [FML]: Max texture size: 16384 [20:29:37] [Client thread/INFO]: Created: 16x16 textures-atlas [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM92_9mm#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#normal not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:verticalTrapdoorM00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilMP5T5_9mm#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t01#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido01#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t06#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_45acp#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:radioMercenario00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#normal not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaMediana#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireNoSolido00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrande#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:callBlock#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRobleOscuro00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=false not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_45acp#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t02#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t03#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_45acp#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pantalonDeMercader00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t07#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAbedul00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#normal not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAcacia00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil57ar_5728#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRoble00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabPicea00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=true not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabJungla00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM93R_9mm#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t04#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil90PNF_5728#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t08#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:taladroPerforador#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrandeBlocke#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:baseDelAsensor#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t05#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:c4#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puertaMercenaria3x3#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t09#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:idDeBlockes#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola57NF_5728#inventory not found [20:29:37] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found [20:29:38] [Client thread/INFO] [FML]: Injecting itemstacks [20:29:38] [Client thread/INFO] [FML]: Itemstack injection complete [20:29:39] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [20:29:39] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario [20:29:39] [Client thread/INFO]: SoundSystem shutting down... [20:29:39] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [20:29:39] [sound Library Loader/INFO]: Starting up SoundSystem... [20:29:39] [Thread-10/INFO]: Initializing LWJGL OpenAL [20:29:39] [Thread-10/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [20:29:39] [Thread-10/INFO]: OpenAL initialized. [20:29:40] [sound Library Loader/INFO]: Sound engine started [20:29:41] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=false': java.io.FileNotFoundException: modmercenario:models/block/callBlock00.json [20:29:41] [Client thread/WARN] [FML]: Unable to load block model: 'modmercenario:block/callBlock00' for variant: 'modmercenario:callBlock#level=0,powered=true': java.lang.IllegalStateException: circular model dependencies involving model modmercenario:block/callBlock00 [20:29:41] [Client thread/INFO] [FML]: Max texture size: 16384 [20:29:43] [Client thread/WARN]: Texture modmercenario:textures/blocks/ascensor/ascensorbase.png with size 24x24 limits mip level from 4 to 3 [20:29:46] [Client thread/INFO]: Created: 4096x4096 textures-atlas [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#normal not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA01#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:verticalTrapdoorM00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t01#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido01#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t06#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:radioMercenario00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#normal not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaMediana#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireNoSolido00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrande#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:callBlock#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRobleOscuro00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=false not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:extructuras/pegarExtructura#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t02#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:armaduras/pantalonDeMercader00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t03#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA01#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pantalonDeMercader00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t07#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAbedul00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limpiarCirculo#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:copiarExtructura#normal not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabAcacia00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabRoble00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabPicea00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:motorDelAscensor#powered=true not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:slabJungla00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t04#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t08#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CL_LA02#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:itemblockes/girable#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:extructuras/copiarExtructura#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:aireSolido00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:esmeraldaGrandeBlocke#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:fusil200akg/fusilM4A1G_CC_LA02#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:limiteDelAsensor#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:baseDelAsensor#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t05#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:c4#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:puerta3x3t09#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:idDeBlockes#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found [20:29:51] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN modmercenario [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: domain modmercenario is missing 6 textures [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: domain modmercenario has 1 location: [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: mod modmercenario resources at /home/usuario/Modding/forge-1.8-1520-modmercenario/bin [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain modmercenario are: [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/puertas/spruce_Borde00.png [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/puertas/spruce_Doble00.png [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/explosivos/perforacionConExplosivo.png [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/charcoal.png [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/armasdefuego/COLT1911/fire_layer_1.png [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/armasdefuego/cargador76239/cargador76239_CG.png [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain modmercenario [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [20:29:51] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [20:29:55] [server thread/INFO]: Starting integrated minecraft server version 1.8 [20:29:55] [server thread/INFO]: Generating keypair [20:29:55] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [20:29:55] [server thread/INFO] [FML]: Applying holder lookups [20:29:55] [server thread/INFO] [FML]: Holder lookups applied [20:29:55] [server thread/INFO] [FML]: Loading dimension 0 (Copy of New World) (net.minecraft.server.integrated.IntegratedServer@242b7e00) [20:29:55] [server thread/INFO] [FML]: Loading dimension 1 (Copy of New World) (net.minecraft.server.integrated.IntegratedServer@242b7e00) [20:29:56] [server thread/INFO] [FML]: Loading dimension -1 (Copy of New World) (net.minecraft.server.integrated.IntegratedServer@242b7e00) [20:29:56] [server thread/INFO]: Preparing start region for level 0 [20:29:57] [server thread/INFO]: Preparing spawn area: 13% [20:29:58] [server thread/INFO]: Preparing spawn area: 57% [20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=false @@Matar= false t=0 [20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:298]: ### la entidad No ha Respondidio Aun0 [20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:crearAsensor:808]: crearAsensor(false, BlockPos{x=-5, y=80, z=99}) [20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:telePortarEntidades:568]: )))))) telePortarEntidades(false, BlockPos{x=-5, y=80, z=99}) [20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=80, z=99} dezpD=0.0) [20:30:00] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:426]: XXX Mundo=false Matar=0 [20:30:00] [server thread/INFO]: Changing view distance to 2, from 10 [20:30:02] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [20:30:02] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [20:30:02] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [20:30:02] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [20:30:02] [server thread/INFO] [FML]: [server thread] Server side modded connection established [20:30:02] [server thread/INFO]: Player113[local:E:2fc9ff97] logged in with entity id 585 at (-5.001053786649635, 80.99999999701977, 99.72515080212197) [20:30:02] [server thread/INFO]: Player113 joined the game [20:30:02] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [20:30:02] [server thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [20:30:02] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:281]: [20:30:02] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.tickHandlerArmas:onEntityJoinToWorld:282]: dif=NORMAL [20:30:04] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4571ms behind, skipping 91 tick(s) [20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:891]: setMotor(BlockPos{x=-5, y=86, z=99})Mundo=false [20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:899]: es un Motor [20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setMotor:914]: El motor si tiene energia [20:30:09] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:buscarAscensor:607]: buscarAscensor(false, BlockPos{x=-5, y=86, z=99}) [20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=0 [20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=0ID=823 [20:30:09] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823 [20:30:09] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.gui.guis.guiMenuMercenario05:<init>:58]: pisosN2 [20:30:09] [Client thread/INFO] [sTDOUT]: [mercenarymod.gui.guis.guiMenuMercenario05:<init>:59]: ascensorID823 [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=1 [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=1ID=823 [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=2 [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=2ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=3 [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=3ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=4 [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=4ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:286]: Mundo=true @@Matar= false t=5 [20:30:10] [Client thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:onUpdate:290]: ###Mensaje enviado al Servidor t=5ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_97823 PD=97 ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=0.0) [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:515]: ###Mensaje recivido en el Servidor ASCEN_02823 PD=2 ID=823 [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.eventos.CambiarParametrosEnArmas:armas:529]: es instancia de entidadAscensorMercenario [20:30:10] [Netty Server IO #1/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:setDestino:956]: ))))) setDestino(BlockPos{x=-5, y=75, z=99}) [20:30:11] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=81, z=99} dezpD=-0.1) [20:30:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=80, z=99} dezpD=-0.1) [20:30:12] [server thread/INFO] [sTDOUT]: [mercenarymod.entidades.entidadAscensorMercenario:moverEntidades:527]: ======> moverEntidades(false, BlockPos{x=-5, y=80, z=99} dezpD=-0.1) [20:30:14] [server thread/INFO]: Stopping server [20:30:14] [server thread/INFO]: Saving players [20:30:14] [server thread/INFO]: Saving worlds [20:30:14] [server thread/INFO]: Saving chunks for level 'Copy of New World'/Overworld [20:30:15] [server thread/INFO]: Saving chunks for level 'Copy of New World'/Nether [20:30:15] [server thread/INFO]: Saving chunks for level 'Copy of New World'/The End [20:30:16] [server thread/INFO] [FML]: Unloading dimension 0 [20:30:16] [server thread/INFO] [FML]: Unloading dimension -1 [20:30:16] [server thread/INFO] [FML]: Unloading dimension 1 [20:30:16] [server thread/INFO] [FML]: Applying holder lookups [20:30:16] [server thread/INFO] [FML]: Holder lookups applied [20:30:17] [Client thread/FATAL]: Unreported exception thrown! java.lang.NullPointerException at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source) ~[CrashReportCategory.class:?] at net.minecraft.crash.CrashReport.makeCategoryDepth(Unknown Source) ~[CrashReport.class:?] at net.minecraft.crash.CrashReport.makeCategory(Unknown Source) ~[CrashReport.class:?] at net.minecraft.world.World.updateEntities(Unknown Source) ~[World.class:?] at net.minecraft.client.Minecraft.runTick(Unknown Source) ~[Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Unknown Source) ~[Minecraft.class:?] at net.minecraft.client.Minecraft.run(Unknown Source) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Unknown Source) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [20:30:17] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:-1]: ---- Minecraft Crash Report ---- // Oh - I know what I did wrong! Time: 28/02/16 08:30 PM Description: Unexpected error java.lang.NullPointerException: Unexpected error at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source) at net.minecraft.crash.CrashReport.makeCategoryDepth(Unknown Source) at net.minecraft.crash.CrashReport.makeCategory(Unknown Source) at net.minecraft.world.World.updateEntities(Unknown Source) at net.minecraft.client.Minecraft.runTick(Unknown Source) at net.minecraft.client.Minecraft.runGameLoop(Unknown Source) at net.minecraft.client.Minecraft.run(Unknown Source) at net.minecraft.client.main.Main.main(Unknown Source) 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) 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.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at net.minecraft.crash.CrashReportCategory.firstTwoElementsOfStackTraceMatch(Unknown Source) at net.minecraft.crash.CrashReport.makeCategoryDepth(Unknown Source) at net.minecraft.crash.CrashReport.makeCategory(Unknown Source) at net.minecraft.world.World.updateEntities(Unknown Source) -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityPlayerSP['Player113'/585, l='MpServer', x=-5,00, y=73,00, z=99,73]] Chunk stats: MultiplayerChunkCache: 25, 25 Level seed: 0 Level generator: ID 00 - default, ver 1. Features enabled: false Level generator options: Level spawn location: -124,00,64,00,-56,00 - World: (-124,64,-56), Chunk: (at 4,4,8 in -8,-4; contains blocks -128,0,-64 to -113,255,-49), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1) Level time: 22524 game time, 41283 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: 60 total; [aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/392, l='MpServer', x=0,28, y=75,00, z=87,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/394, l='MpServer', x=-1,50, y=76,00, z=87,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/396, l='MpServer', x=-12,81, y=85,00, z=99,28], aldeanaMercenaria['entity.modmercenario.aldeanaMercenaria.name'/397, l='MpServer', x=-10,56, y=85,00, z=99,91], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/398, l='MpServer', x=-6,47, y=85,00, z=126,28], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/399, l='MpServer', x=-3,47, y=86,00, z=124,81], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/400, l='MpServer', x=-1,69, y=85,00, z=128,47], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/402, l='MpServer', x=-4,66, y=88,00, z=125,47], zombieMercenario['entity.modmercenario.zombieMercenario.name'/404, l='MpServer', x=-1,59, y=35,00, z=141,78], zombieMercenario['entity.modmercenario.zombieMercenario.name'/405, l='MpServer', x=-2,44, y=31,56, z=144,56], zombieMercenario['entity.modmercenario.zombieMercenario.name'/406, l='MpServer', x=-8,50, y=38,00, z=132,50], zombieMercenario['entity.modmercenario.zombieMercenario.name'/407, l='MpServer', x=-11,63, y=34,00, z=130,69], zombiaMercenaria['entity.modmercenario.zombiaMercenaria.name'/408, l='MpServer', x=-10,31, y=35,00, z=131,69], zombieMercenario['entity.modmercenario.zombieMercenario.name'/409, l='MpServer', x=-11,19, y=34,00, z=131,13], zombiaMercenaria['entity.modmercenario.zombiaMercenaria.name'/410, l='MpServer', x=-15,16, y=38,00, z=131,75], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/411, l='MpServer', x=1,28, y=82,00, z=126,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/428, l='MpServer', x=7,31, y=75,00, z=89,69], EntityItem['item.tile.ironTrapdoor'/430, l='MpServer', x=3,41, y=78,00, z=93,22], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/431, l='MpServer', x=6,31, y=75,00, z=88,25], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/432, l='MpServer', x=6,63, y=75,00, z=89,34], EntityBat['Bat'/561, l='MpServer', x=14,01, y=10,28, z=143,95], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/434, l='MpServer', x=8,06, y=75,00, z=89,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/435, l='MpServer', x=15,69, y=74,00, z=110,50], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/436, l='MpServer', x=2,06, y=79,00, z=102,42], fantasmaMercenario['entity.modmercenario.fantasmaMercenario.name'/820, l='MpServer', x=27,03, y=74,00, z=129,30], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/437, l='MpServer', x=8,28, y=75,00, z=94,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/438, l='MpServer', x=15,34, y=73,97, z=110,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/439, l='MpServer', x=9,13, y=76,00, z=94,69], entidadAscensorMercenario['entity.modmercenario.entidadAscensorMercenario.name'/823, l='MpServer', x=-4,50, y=80,90, z=99,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/440, l='MpServer', x=14,63, y=77,00, z=111,50], fantasmaMercenario['entity.modmercenario.fantasmaMercenario.name'/568, l='MpServer', x=23,30, y=67,00, z=102,70], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/441, l='MpServer', x=5,44, y=79,00, z=99,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/442, l='MpServer', x=6,41, y=70,55, z=94,28], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/443, l='MpServer', x=2,86, y=79,00, z=102,69], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/444, l='MpServer', x=4,41, y=79,00, z=103,97], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/445, l='MpServer', x=8,60, y=76,97, z=94,55], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/446, l='MpServer', x=8,28, y=75,43, z=94,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/447, l='MpServer', x=6,69, y=79,00, z=101,19], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/448, l='MpServer', x=7,38, y=78,02, z=95,19], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/450, l='MpServer', x=9,76, y=76,14, z=108,36], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/451, l='MpServer', x=13,44, y=76,02, z=113,19], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/452, l='MpServer', x=5,75, y=76,00, z=113,53], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/453, l='MpServer', x=11,03, y=76,00, z=107,41], aldeanoMercenario['entity.modmercenario.aldeanoMercenario.name'/454, l='MpServer', x=3,47, y=76,00, z=116,47], aldeanaMercenaria['entity.modmercenario.aldeanaMercenaria.name'/455, l='MpServer', x=14,63, y=77,00, z=112,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/456, l='MpServer', x=5,78, y=81,00, z=124,47], zombieMercenario['entity.modmercenario.zombieMercenario.name'/457, l='MpServer', x=7,50, y=32,00, z=141,50], EntityBat['Bat'/463, l='MpServer', x=27,22, y=29,28, z=80,04], zombieMercenario['entity.modmercenario.zombieMercenario.name'/464, l='MpServer', x=22,50, y=38,00, z=91,50], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/465, l='MpServer', x=22,28, y=72,75, z=109,47], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/466, l='MpServer', x=15,13, y=74,00, z=108,59], zombieMercenario['entity.modmercenario.zombieMercenario.name'/467, l='MpServer', x=23,28, y=67,00, z=102,69], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/469, l='MpServer', x=26,28, y=68,00, z=113,06], aldeanoNiñoRata['entity.modmercenario.aldeanoNiñoRata.name'/470, l='MpServer', x=21,25, y=74,16, z=109,50], EntityZombie['Zombie'/734, l='MpServer', x=-52,47, y=41,00, z=155,09], zombieMercenarioE['entity.modmercenario.zombieMercenarioE.name'/754, l='MpServer', x=26,97, y=72,00, z=129,25], zombieMercenario['entity.modmercenario.zombieMercenario.name'/371, l='MpServer', x=-18,66, y=13,00, z=143,84], EntityMinecartChest['container.minecart'/372, l='MpServer', x=-20,50, y=13,00, z=143,72], EntityZombie['Zombie'/757, l='MpServer', x=31,41, y=72,00, z=133,09], EntityPlayerSP['Player113'/585, l='MpServer', x=-5,00, y=73,00, z=99,73]] Retry entities: 0 total; [] Server brand: fml,forge Server type: Integrated singleplayer server Stacktrace: at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(Unknown Source) at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Unknown Source) at net.minecraft.client.Minecraft.run(Unknown Source) at net.minecraft.client.main.Main.main(Unknown Source) 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) 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.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) -- System Details -- Details: Minecraft Version: 1.8 Operating System: Linux (amd64) version 3.16.0-4-amd64 Java Version: 1.8.0_65, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 405520400 bytes (386 MB) / 1056309248 bytes (1007 MB) up to 2130051072 bytes (2031 MB) JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95 FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.3.1520 4 mods loaded, 4 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{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.3.1520.jar) UCHIJAAAA Forge{11.14.3.1520} [Minecraft Forge] (forgeSrc-1.8-11.14.3.1520.jar) UCHIJAAAA modmercenario{1.8} [modmercenario] (bin) Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2' Launched Version: 1.8 LWJGL: 2.9.1 OpenGL: GeForce GT 520/PCIe/SSE2 GL version 4.4.0 NVIDIA 340.93, NVIDIA Corporation GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: No 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) [20:30:17] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:-1]: #@!@# Game crashed! Crash report saved to: #@!@# /home/usuario/Modding/forge-1.8-1520-modmercenario/run/./crash-reports/crash-2016-02-28_20.30.17-client.txt AL lib: (EE) alc_cleanup: 1 device not closed Thanks for reading
-
i wass thinking in made another message class but this one sending binary data rather than string, ihave the one you get whith the tutorials bu t not go too deep whith it the trick of make the this.mc.displayGuiScreen((GuiScreen)null); works nice afthe the actionPerformed(GuiButton guibutton) to close the gui so thanks whith this i set the threath a solved
-
well solved but not as clean as i wanted well idont wana make an Mercenary.network.sendToServer(new mensajeMercenarioalServidor("TE"+posX+","+posY+","+posZ)); and dont get how worklks the thing whith GuiEditSign sooo i use the package to triger a metod to check where the player is looking and if it its the block of the especific kind do stuff for the way mi elevator works there is little risk to chech a wrong block but there is another little issue i wanna make the gui to close before the elevator begins to move but i dont see something like this.close(); gui.close(); // or kill there is way to close the gui from inside code ??
-
well i have of that most of that the question is what would go here if i wanna send the package to the tileEntity in BlockPos{x=-46, y=72, z=328} protected void actionPerformed(GuiButton guibutton) { // id is the id you give your button int dx; int dy; int sx; switch (guibutton.id) { case 0: break; case 1: break; case 2: break; } // Packet code here // PacketDispatcher.sendPacketToServer(packet); //send packet } in the gui for the merchant of mi mod i send the packages this way protected void actionPerformed(GuiButton guibutton) { // id is the id you give your button int dx; int dy; int sx; switch (guibutton.id) { case 1: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("UPapp_"+te.getEntity().getEntityId() )); break; case 2: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BUY_00"+te.getEntity().getEntityId() )); break; case 3: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BUY_01"+te.getEntity().getEntityId() )); break; case 4: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BUY_02"+te.getEntity().getEntityId() )); break; case 5: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BUY_03"+te.getEntity().getEntityId() )); break; case 6: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BUY_04"+te.getEntity().getEntityId() )); break; case 7: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("DWapp_"+te.getEntity().getEntityId() )); break; case 8: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BOT_00"+te.getEntity().getEntityId() )); break; case 9: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BOT_01"+te.getEntity().getEntityId() )); break; case 10: Mercenary.network.sendToServer(new mensajeMercenarioalServidor("BOT_02"+te.getEntity().getEntityId() )); break; } // Packet code here // PacketDispatcher.sendPacketToServer(packet); //send packet } thanks for reading
-
Good nigts i been working in an elevator for mi mod i actualy have more of the elevator is working plus the door, but i missing a control gui to set where i wanna go like is a block after all i been using a tileEntity to store the data soo im trying to make a GUI whith the tileentity Data but get stuck whith the little issue, how i send the data from the presed button in the client side to the tileEntity in the server side to make the elevator works i alredy have package system and has alredy made code to send packages from gui in the local side to especific entity in the server side, but never to tileEntity thanks fro reading
-
Good days im trying to fix a trouble whith mi extrutures spawn system basically the main trouble is than the method i been using to copy and store is using the block id, this dont matter for vainilla blocks but i have create a series of blocks and doors in mi mod soo i want to use them in the extructurs im spawning and the block id for mi blocks surely gona change when someone play mi mod along whith other mods. i dont want to create every of extructures whith code definig every block every state for every position but rater copy all the data from the extructure alredy done and dump it inside another method that recreate the extructure for that i been making some test found this trouble im trying to get the properties rom the blocks to store them in other way, if i ask for per example IBlockState blkst = worldIn.getBlockState(centro); Block blk = blkst.getBlock(); PropertyEnum HINGE = PropertyEnum.create("hinge", BlockDoor.EnumHingePosition.class); EnumHingePosition hinge = (EnumHingePosition) blkst.getValue(HINGE); if (hinge != null){ if (hinge == EnumHingePosition.RIGHT) { System.out.println("hinge=Right"); } else { System.out.println( "hinge=Left"); } } if i cast this over a vainilla door or one o my doors that has the property hinge this works and return left or right but if i cast it over a log or any other block [08:34:32] [server thread/FATAL] [FML]: Exception caught executing FutureTask: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Cannot get property PropertyEnum{name=hinge, clazz=class net.minecraft.block.BlockDoor$EnumHingePosition, values=[left, right]} as it does not exist in BlockState{block=minecraft:log, properties=[axis, variant]} java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Cannot get property PropertyEnum{name=hinge, clazz=class net.minecraft.block.BlockDoor$EnumHingePosition, values=[left, right]} as it does not exist in BlockState{block=minecraft:log, properties=[axis, variant]} at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_65] at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_65] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(Unknown Source) [FMLCommonHandler.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(Unknown Source) [MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(Unknown Source) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(Unknown Source) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(Unknown Source) [MinecraftServer.class:?] at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65] Caused by: java.lang.IllegalArgumentException: Cannot get property PropertyEnum{name=hinge, clazz=class net.minecraft.block.BlockDoor$EnumHingePosition, values=[left, right]} as it does not exist in BlockState{block=minecraft:log, properties=[axis, variant]} at net.minecraft.block.state.BlockState$StateImplementation.getValue(Unknown Source) ~[blockState$StateImplementation.class:?] at mercenarymod.items.prueba.idDeBlockes.onItemRightClick(idDeBlockes.java:268) ~[idDeBlockes.class:?] at net.minecraft.item.ItemStack.useItemRightClick(Unknown Source) ~[itemStack.class:?] at net.minecraft.server.management.ItemInWorldManager.tryUseItem(Unknown Source) ~[itemInWorldManager.class:?] at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(Unknown Source) ~[NetHandlerPlayServer.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(Unknown Source) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(Unknown Source) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.PacketThreadUtil$1.run(Unknown Source) ~[PacketThreadUtil$1.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_65] at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_65] ... 6 more [08:34:32] [Client thread/INFO]: [CHAT] §3nItemUseFirst logically the logs dont have the property hinge, it i make this way io gonna have lott of concurrent.ExecutionException, so i have to ask property if the block has the property before check the getValue() but i dont find a method like "boolean IBlockState.hasProperty("HINGE");" ###### ? is there a method to check if a block state has a property ?? or have to make several catchs in the code to copy the extructure ? or maiby is a bether way to copy an struture and latter spawn it in the world, including my custom blocks of course