Jump to content

sending nbt in packets


knokko

Recommended Posts

hello,

 

I am trying to send a nbt tag from sever to client using packets.

But I get a long error at my fromBytes(ByteBuf) method.

There is really much data in the nbt tag.

Does anybody know why I get this error:

 

[11:13:02] [Client thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught

io.netty.handler.codec.DecoderException: net.minecraft.util.ReportedException: Loading NBT data

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[MessageToMessageDecoder.class:?]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:?]

at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?]

at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:247) [NetworkManager.class:?]

at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:321) [PlayerControllerMP.class:?]

at net.minecraft.client.Minecraft.runTick(Minecraft.java:1692) [Minecraft.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1038) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:961) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

Caused by: net.minecraft.util.ReportedException: Loading NBT data

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:186) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

Caused by: java.io.EOFException: Unexpected end of ZLIB input stream

at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:240) ~[?:1.8.0_05]

at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158) ~[?:1.8.0_05]

at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_05]

at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_05]

at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_05]

at net.minecraft.nbt.NBTTagCompound.func_152448_b(NBTTagCompound.java:485) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:177) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

[11:13:02] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception

io.netty.handler.codec.DecoderException: net.minecraft.util.ReportedException: Loading NBT data

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[MessageToMessageDecoder.class:?]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:?]

at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?]

at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:247) [NetworkManager.class:?]

at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:321) [PlayerControllerMP.class:?]

at net.minecraft.client.Minecraft.runTick(Minecraft.java:1692) [Minecraft.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1038) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:961) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

Caused by: net.minecraft.util.ReportedException: Loading NBT data

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:186) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

Caused by: java.io.EOFException: Unexpected end of ZLIB input stream

at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:240) ~[?:1.8.0_05]

at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158) ~[?:1.8.0_05]

at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_05]

at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_05]

at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_05]

at net.minecraft.nbt.NBTTagCompound.func_152448_b(NBTTagCompound.java:485) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:177) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

[11:13:02] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception

io.netty.handler.codec.DecoderException: net.minecraft.util.ReportedException: Loading NBT data

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[MessageToMessageDecoder.class:?]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:?]

at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?]

at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:247) [NetworkManager.class:?]

at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:321) [PlayerControllerMP.class:?]

at net.minecraft.client.Minecraft.runTick(Minecraft.java:1692) [Minecraft.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1038) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:961) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

Caused by: net.minecraft.util.ReportedException: Loading NBT data

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:186) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

Caused by: java.io.EOFException: Unexpected end of ZLIB input stream

at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:240) ~[?:1.8.0_05]

at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158) ~[?:1.8.0_05]

at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_05]

at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_05]

at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_05]

at net.minecraft.nbt.NBTTagCompound.func_152448_b(NBTTagCompound.java:485) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:177) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

[11:13:02] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception

io.netty.handler.codec.DecoderException: net.minecraft.util.ReportedException: Loading NBT data

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[MessageToMessageDecoder.class:?]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:?]

at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?]

at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:247) [NetworkManager.class:?]

at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:321) [PlayerControllerMP.class:?]

at net.minecraft.client.Minecraft.runTick(Minecraft.java:1692) [Minecraft.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1038) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:961) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

Caused by: net.minecraft.util.ReportedException: Loading NBT data

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:186) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

Caused by: java.io.EOFException: Unexpected end of ZLIB input stream

at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:240) ~[?:1.8.0_05]

at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158) ~[?:1.8.0_05]

at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_05]

at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_05]

at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_05]

at net.minecraft.nbt.NBTTagCompound.func_152448_b(NBTTagCompound.java:485) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:177) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

[11:13:02] [Client thread/ERROR] [FML]: There was a critical exception handling a packet on channel knokko RPG

io.netty.handler.codec.DecoderException: net.minecraft.util.ReportedException: Loading NBT data

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[MessageToMessageDecoder.class:?]

at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:?]

at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) ~[DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) ~[DefaultChannelHandlerContext.class:?]

at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) ~[DefaultChannelPipeline.class:?]

at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[EmbeddedChannel.class:?]

at cpw.mods.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:86) [FMLProxyPacket.class:?]

at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:247) [NetworkManager.class:?]

at net.minecraft.client.multiplayer.PlayerControllerMP.updateController(PlayerControllerMP.java:321) [PlayerControllerMP.class:?]

at net.minecraft.client.Minecraft.runTick(Minecraft.java:1692) [Minecraft.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1038) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:961) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_05]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_05]

at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_05]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

Caused by: net.minecraft.util.ReportedException: Loading NBT data

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:186) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

Caused by: java.io.EOFException: Unexpected end of ZLIB input stream

at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:240) ~[?:1.8.0_05]

at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158) ~[?:1.8.0_05]

at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:117) ~[?:1.8.0_05]

at java.io.BufferedInputStream.fill(BufferedInputStream.java:246) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) ~[?:1.8.0_05]

at java.io.BufferedInputStream.read(BufferedInputStream.java:345) ~[?:1.8.0_05]

at java.io.DataInputStream.readFully(DataInputStream.java:195) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:609) ~[?:1.8.0_05]

at java.io.DataInputStream.readUTF(DataInputStream.java:564) ~[?:1.8.0_05]

at net.minecraft.nbt.NBTTagCompound.func_152448_b(NBTTagCompound.java:485) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.NBTTagCompound.func_152446_a(NBTTagCompound.java:56) ~[NBTTagCompound.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152455_a(CompressedStreamTools.java:177) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152456_a(CompressedStreamTools.java:134) ~[CompressedStreamTools.class:?]

at net.minecraft.nbt.CompressedStreamTools.func_152457_a(CompressedStreamTools.java:71) ~[CompressedStreamTools.class:?]

at net.minecraft.network.PacketBuffer.readNBTTagCompoundFromBuffer(PacketBuffer.java:115) ~[PacketBuffer.class:?]

at cpw.mods.fml.common.network.ByteBufUtils.readTag(ByteBufUtils.java:206) ~[byteBufUtils.class:?]

at knokko.rpg.packet.NBTMessage.fromBytes(NBTMessage.java:17) ~[NBTMessage.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:17) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.decodeInto(SimpleIndexedCodec.java:7) ~[simpleIndexedCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:77) ~[FMLIndexedMessageToMessageCodec.class:?]

at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:17) ~[FMLIndexedMessageToMessageCodec.class:?]

at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:?]

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:?]

... 25 more

 

 

Here is the message class:

public class NBTMessage implements IMessage{

public NBTTagCompound nbt;

@Override
public void fromBytes(ByteBuf buf) {
	nbt = ByteBufUtils.readTag(buf);
}

@Override
public void toBytes(ByteBuf buf) {
	ByteBufUtils.writeTag(buf, nbt);
}

public NBTMessage() {}
public NBTMessage(NBTTagCompound compound){
	nbt = compound;
}
public static class Handler implements IMessageHandler<NBTMessage, IMessage> {

	@Override
	public IMessage onMessage(NBTMessage message, MessageContext ctx) {
		System.out.println("nbt = " + message.nbt);
                        WorldData.nbt = message.nbt;
		return null;
	}

}
}

 

This is the method I use that sends and receives the packet:

public static void updateClient(World world){
	if(world != null){
		WorldData data = get(world);
		if(!world.isRemote){
			KnokkoRPG.network.sendToAll(new NBTMessage(data.players));
		}
		if(world.isRemote){
			data.players = nbt;
		}
	}
}

Link to comment
Share on other sites

Ok, I dit what you said.

 

Here is the new message in the console.

Buffer contents: 812026

Buffer contents: 812025

The crash reappeared of course.

 

But I don't know the limit and I know almost nothing about bytes, so is this too much?

 

Here is the toString method of the nbt tag I want to send:

 

{94a18719-249a-4c90-879b-ff3e2b896316 firepunch:-140,c8a54def-8f19-4e50-bdd5-ad5ee0ed0898 windpunch:-149,62bf184f-6b92-4dcc-afb9-7e782bd83120 icepunch:-140,040a63f0-e153-3f49-84a8-b60ca564e69fclass:"hunter",4f05c4ff-1c86-4dc9-ad35-99d9ea71a7ab firepunch:-149,c8f59c25-5dc6-4c61-9d78-dfd14ff8147a windpunch:-140,2730ca38-936b-4929-af94-3ee3829703e6 icepunch:-139,5d3ea3dc-416d-4814-afbf-503d09c0b547 icepunch:-140,5a2d085b-6da2-4614-9098-6f6aed584abf firepunch:-149,2730ca38-936b-4929-af94-3ee3829703e6 paralyzed:-139,5a2d085b-6da2-4614-9098-6f6aed584abf icepunch:-149,643bf47e-a8aa-4d48-9fba-91b605a0e367 firepunch:-139,91ddfc52-dbd9-4fb8-98c3-831708f45368 windpunch:-139,c5716d2a-c80d-46cc-9e63-d576ac73aacc firepunch:-80,3c491164-0d4a-417b-a471-681e0b68cb46 paralyzed:-14,b7b8757b-15ea-4ac5-99d9-7d21ded683d3 paralyzed:-154,a70e22e1-94aa-4bda-a0a9-01eec396be07 icepunch:-154,67664873-f5ad-4257-ad3a-b73e12c12b09 windpunch:-140,a16b97f1-6470-4b35-9435-9b52e1bcf92c firepunch:-143,040a63f0-e153-3f49-84a8-b60ca564e69f icepunch:-154,e2dff180-c1f7-4b30-bb1a-b1485aa9fcf3 firepunch:-73,040a63f0-e153-3f49-84a8-b60ca564e69fmanahunter:1540,66a28aba-b04e-4c2e-80a7-aa5b6caca2d0 windpunch:-55,ccfb5df5-30f4-41e0-930a-e48e19210363 icepunch:-154,040a63f0-e153-3f49-84a8-b60ca564e69flifetime:154,903e16df-0ea2-49f4-ad1f-5ec0c3282767 icepunch:-140,dfc43124-dd54-49fa-af9e-ca7040865cb9 paralyzed:-143,116042e5-e88d-4769-856a-46054b795b58 icepunch:-143,a13a8230-8ce9-4a35-9980-d547a80b4038 firepunch:-140,8056c3cb-e551-41f9-916f-badf1c1646a6 paralyzed:-154,b9c142f0-adfb-4aec-8992-7ddf2805510c firepunch:-154,b104a0f7-d0ac-402c-ad7b-6ba82c186297 firepunch:-154,0d9f328e-fc01-4af1-8556-4072fdd77cd3 firepunch:-55,08c20128-9d86-4749-9531-e07844f203fd firepunch:-138,63970038-6abc-48c9-acc3-160115d20a53 icepunch:-135,63970038-6abc-48c9-acc3-160115d20a53 firepunch:-135,2a215ce6-c4e2-4afb-8996-42976a39de76 windpunch:-144,f8e4197f-592f-45d5-acb9-4875e51300bf icepunch:-154,e9de6336-af19-49e1-b23d-86ec3af88878 windpunch:-105,9f21aa73-f51f-4ca0-894a-28037e41995f paralyzed:-154,10d4a8ff-f623-4916-acb4-3b8a9a415892 firepunch:-138,f8e4197f-592f-45d5-acb9-4875e51300bf paralyzed:-154,6e8d9242-9e49-4c68-86f9-4226ea98c91a firepunch:-149,64de3641-631c-411b-8b96-3861d3cbbdf0 firepunch:-154,088c1337-038a-4b29-b485-38f9f3e9bdb6 firepunch:-149,f21dec2e-11ce-45e2-a3d0-e36aacb96694 paralyzed:-114,a70e22e1-94aa-4bda-a0a9-01eec396be07 windpunch:-154,ccfb5df5-30f4-41e0-930a-e48e19210363 paralyzed:-154,bcbcfe68-9724-458d-b675-5a9d045fed1f windpunch:-154,4df0c667-a464-4962-8e7b-5ae2536e7a69 firepunch:-78,c756a052-8144-4ec2-9929-5d3294c1243c windpunch:-155,2f493792-b78d-4397-b173-ea146afd5dd8 windpunch:-154,4f05c4ff-1c86-4dc9-ad35-99d9ea71a7ab icepunch:-149,ac596001-e61b-4825-b260-7b4cec1da1c8 paralyzed:-149,c590a866-6044-4ec7-8923-231e55675584 paralyzed:-134,59c7c1f2-f3ea-4216-9648-7e3cc0b03a8a paralyzed:-140,a7d6fe95-0370-46d7-b392-31b71222d4b7 firepunch:-2,77cc9b01-6e0d-4e04-9385-aee473eb6153 windpunch:-154,888a41f1-d14c-4ecf-8801-2d2f7f827e07 paralyzed:-140,4828d5b5-abc2-42e5-836f-37f5ba3a8759 paralyzed:-135,8d8ba38c-5fcc-4cdc-af39-87d77a8eccdc windpunch:-138,f72c997a-2aba-4390-a7f6-f5a4ce2c3e0b firepunch:-139,b4ab5e38-fae9-4470-a7f4-9b8495679497 icepunch:-144,477a0d7d-45e9-41b8-bc2b-3fcdcce70a20 windpunch:-119,94a18719-249a-4c90-879b-ff3e2b896316 icepunch:-140,dde526cc-b9eb-434a-88aa-da1b5a688e36 icepunch:-144,ce1d1c74-0472-466b-816a-aadac0b119a2 windpunch:-154,90152c63-9b39-4e47-ace7-ddd18b26d6b4 paralyzed:-140,59c7c1f2-f3ea-4216-9648-7e3cc0b03a8a firepunch:-140,64de3641-631c-411b-8b96-3861d3cbbdf0 icepunch:-154,6e8d9242-9e49-4c68-86f9-4226ea98c91a paralyzed:-149,6e8d9242-9e49-4c68-86f9-4226ea98c91a icepunch:-149,70efe1e7-92c1-4b9c-a298-38e7ed0abe45 firepunch:-154,990c3926-b43b-4e4a-93a0-97e2c5938807 icepunch:-154,cc8961a3-2c14-4443-ab5c-78b534581247 paralyzed:-155,9574ec73-4102-4d34-a956-c6e31a8ea516 firepunch:-143,ce6e9869-47e1-4092-b014-fcce55726130 windpunch:-154,a13a8230-8ce9-4a35-9980-d547a80b4038 paralyzed:-140,93da6276-7b0c-4c10-b7a4-fc5d27696695 icepunch:-139,e2dff180-c1f7-4b30-bb1a-b1485aa9fcf3 icepunch:-73,b0d606bb-1e28-46f9-a778-04f79e2caea1 icepunch:-128,7ff36847-729c-4fbb-852b-7134b7cd3b05 windpunch:-154,623018dd-e4d8-476e-95d5-ab03cf825df0 windpunch:-101,3a69bd4d-8f4d-4af3-8117-1bf57f2aa8df paralyzed:-154,ea3b9c05-7932-40b0-8dc4-cdead2e085e9 icepunch:-101,1d13e8b7-d498-44ac-8bc0-e2d55c5ace5f paralyzed:-154,aa1da797-660e-4545-987a-b7e91481ff8c icepunch:-140,8056c3cb-e551-41f9-916f-badf1c1646a6 firepunch:-154,05a247be-9c3a-4f7e-98b5-c3bc6d8ef6a1 icepunch:-134,2a5a7ff8-566c-4af5-985b-fab74b1c6467 icepunch:-155,22e51e5a-10d8-4799-9a9f-829ae22b641a firepunch:-138,81b13059-28b8-4a00-854c-850e5fa86b2a firepunch:-135,122f442a-d161-4491-a67a-0935ba77ce75 windpunch:-134,bf3fa57d-e3e5-4ea3-a53f-b8c43b761b15 firepunch:-55,4bd6d557-374f-440c-98ef-a8dd16971266 firepunch:-14,01fcd8c5-0b42-4256-bb73-55849190053d windpunch:-154,ae5f0403-061d-45fd-b0db-7423e7c831c2 icepunch:-140,08c20128-9d86-4749-9531-e07844f203fd paralyzed:-138,046114fc-9ecb-4a1b-a57b-4886ecb915f8 paralyzed:-28,ed52b3b6-5643-4f72-9e42-4b0ed9eef09d icepunch:-143,046114fc-9ecb-4a1b-a57b-4886ecb915f8 firepunch:-28,5e3eb1e5-5281-42ca-b6a6-6c838a95da57 icepunch:-154,64de3641-631c-411b-8b96-3861d3cbbdf0 paralyzed:-154,9a14fedb-04da-461a-88e8-a57a6a1b9f87 firepunch:-154,dde526cc-b9eb-434a-88aa-da1b5a688e36 firepunch:-144,040a63f0-e153-3f49-84a8-b60ca564e69f windpunch:-154,bf3fa57d-e3e5-4ea3-a53f-b8c43b761b15 paralyzed:-55,2187696c-67e4-4cc2-a0e5-42ae35a5ba6f paralyzed:-135,842fa053-f3d3-42b9-b624-f32ebffbc352 windpunch:-77,da7d914f-d247-44d6-9a45-497ff5ab9283 paralyzed:-144,01fcd8c5-0b42-4256-bb73-55849190053d icepunch:-154,70efe1e7-92c1-4b9c-a298-38e7ed0abe45 paralyzed:-154,f716da78-46eb-4981-aa3e-6511036b2d33 windpunch:-149,990c3926-b43b-4e4a-93a0-97e2c5938807 paralyzed:-154,f2ded0ed-4173-4359-bc3c-0b3d3b7a0153 firepunch:-154,cdbf06b8-f8a8-4119-ae1c-95938f0bdd10 paralyzed:-55,1533c8a5-bae4-419d-a9d5-7ae7a6d40700 windpunch:-154,17c33ae6-434e-4525-912b-cef079818a18 icepunch:-154,e19470f6-2336-4def-af9c-6adaf3d7a263 paralyzed:-154,903e16df-0ea2-49f4-ad1f-5ec0c3282767 paralyzed:-140,ae593c07-59ff-4606-8eff-f4f2d754656e windpunch:-126,9a14fedb-04da-461a-88e8-a57a6a1b9f87 paralyzed:-154,c2e40430-132f-43de-9dca-b78e780a7c04 windpunch:-140,c42ad7d2-5304-49b9-8191-f51ffd5e84ed icepunch:-154,75fc8a83-8429-4285-97be-5c7b7b004a26 paralyzed:-73,f9f867b7-8aaa-457c-ac18-0b9bd6ab2201 windpunch:-135,b104a0f7-d0ac-402c-ad7b-6ba82c186297 paralyzed:-154,3aeba0e9-9142-449d-887f-eb63c117abd3 paralyzed:-154,0cd5270e-ad5a-41fa-bc7d-48c584def64e windpunch:-144,947a3435-1a94-47c4-a17b-cca1243eb659 windpunch:-154,ed52b3b6-5643-4f72-9e42-4b0ed9eef09d windpunch:-143,3aeba0e9-9142-449d-887f-eb63c117abd3 firepunch:-154,b0d606bb-1e28-46f9-a778-04f79e2caea1 windpunch:-128,1788b2af-b644-4651-9474-f37fe433543c windpunch:-154,08c20128-9d86-4749-9531-e07844f203fd icepunch:-138,79f89a3b-1b76-4b15-ad0c-3e1be82b476b windpunch:-154,1366d098-1b4f-488d-8324-8f47647c38a6 icepunch:-155,3a69bd4d-8f4d-4af3-8117-1bf57f2aa8df firepunch:-154,13d12013-96bf-41bb-ba02-46542caa3c99 firepunch:-106,62bf184f-6b92-4dcc-afb9-7e782bd83120 paralyzed:-140,08bfb791-6e7f-479d-bd50-8feda927b425 windpunch:-135,8d8ba38c-5fcc-4cdc-af39-87d77a8eccdc icepunch:-138,75fc8a83-8429-4285-97be-5c7b7b004a26 firepunch:-73,c520cd7f-468d-42a7-907b-e2477ce5de0b windpunch:-154,2d04ab2d-d00f-484a-9853-ecfe09e5f656 windpunch:-14,f9f867b7-8aaa-457c-ac18-0b9bd6ab2201 icepunch:-135,3db5579f-c072-4509-b29c-bbfa800b06d9 windpunch:-154,b7b8757b-15ea-4ac5-99d9-7d21ded683d3 icepunch:-154,78a64a59-5ea2-4b35-af63-afea03b485b8 icepunch:-140,7ff36847-729c-4fbb-852b-7134b7cd3b05 paralyzed:-154,f21dec2e-11ce-45e2-a3d0-e36aacb96694 firepunch:-114,9574ec73-4102-4d34-a956-c6e31a8ea516 icepunch:-143,bd0a2ed8-5f5a-44a6-87f8-ced7d6f075a7 windpunch:-155,62bf184f-6b92-4dcc-afb9-7e782bd83120 windpunch:-140,9f21aa73-f51f-4ca0-894a-28037e41995f firepunch:-154,bdec048c-8626-4954-95a5-35da06fdc404 windpunch:-154,2d04ab2d-d00f-484a-9853-ecfe09e5f656 paralyzed:-14,8056c3cb-e551-41f9-916f-badf1c1646a6 icepunch:-154,888a41f1-d14c-4ecf-8801-2d2f7f827e07 firepunch:-140,e22d18e3-8b51-4554-a357-c3ac4197a01d icepunch:-155,d577ce65-d53f-42ec-9480-f5365efccde4 windpunch:-2,1788b2af-b644-4651-9474-f37fe433543c icepunch:-154,a7d6fe95-0370-46d7-b392-31b71222d4b7 paralyzed:-2,2187696c-67e4-4cc2-a0e5-42ae35a5ba6f firepunch:-135,3db5579f-c072-4509-b29c-bbfa800b06d9 paralyzed:-154,5d3ea3dc-416d-4814-afbf-503d09c0b547 paralyzed:-140,bdec048c-8626-4954-95a5-35da06fdc404 firepunch:-154,f8e4197f-592f-45d5-acb9-4875e51300bf firepunch:-154,73d2cd34-a60e-4b2c-a2cc-e6a67ef61280 icepunch:-143,903e16df-0ea2-49f4-ad1f-5ec0c3282767 firepunch:-140,4828d5b5-abc2-42e5-836f-37f5ba3a8759 windpunch:-135,38b758bf-00cf-4b6c-abdf-0fc92251b7db paralyzed:-154,77cc9b01-6e0d-4e04-9385-aee473eb6153 paralyzed:-154,13960e1d-d032-4006-a999-e6b936b281cf firepunch:-133,81b13059-28b8-4a00-854c-850e5fa86b2a paralyzed:-135,9a14fedb-04da-461a-88e8-a57a6a1b9f87 icepunch:-154,4df0c667-a464-4962-8e7b-5ae2536e7a69 paralyzed:-78,e9de6336-af19-49e1-b23d-86ec3af88878 paralyzed:-105,643bf47e-a8aa-4d48-9fba-91b605a0e367 icepunch:-139,dfc43124-dd54-49fa-af9e-ca7040865cb9 windpunch:-143,b7b8757b-15ea-4ac5-99d9-7d21ded683d3 firepunch:-154,f716da78-46eb-4981-aa3e-6511036b2d33 icepunch:-149,01fcd8c5-0b42-4256-bb73-55849190053d paralyzed:-154,046114fc-9ecb-4a1b-a57b-4886ecb915f8 icepunch:-28,dde526cc-b9eb-434a-88aa-da1b5a688e36 windpunch:-144,2730ca38-936b-4929-af94-3ee3829703e6 firepunch:-139,9574ec73-4102-4d34-a956-c6e31a8ea516 windpunch:-143,5e3eb1e5-5281-42ca-b6a6-6c838a95da57 windpunch:-154,0d9f328e-fc01-4af1-8556-4072fdd77cd3 icepunch:-55,c590a866-6044-4ec7-8923-231e55675584 windpunch:-134,e2dff180-c1f7-4b30-bb1a-b1485aa9fcf3 paralyzed:-73,90152c63-9b39-4e47-ace7-ddd18b26d6b4 firepunch:-140,4bd6d557-374f-440c-98ef-a8dd16971266 icepunch:-14,1366d098-1b4f-488d-8324-8f47647c38a6 firepunch:-155,040a63f0-e153-3f49-84a8-b60ca564e69frace:"human",2a5a7ff8-566c-4af5-985b-fab74b1c6467 windpunch:-155,f21dec2e-11ce-45e2-a3d0-e36aacb96694 windpunch:-114,3c491164-0d4a-417b-a471-681e0b68cb46 firepunch:-14,66a28aba-b04e-4c2e-80a7-aa5b6caca2d0 paralyzed:-55,b4ab5e38-fae9-4470-a7f4-9b8495679497 paralyzed:-144,643bf47e-a8aa-4d48-9fba-91b605a0e367 paralyzed:-139,d577ce65-d53f-42ec-9480-f5365efccde4 firepunch:-2,168a24ed-ccd4-4e51-89f6-a48f28a80f79 paralyzed:-154,2f493792-b78d-4397-b173-ea146afd5dd8 icepunch:-154,a16b97f1-6470-4b35-9435-9b52e1bcf92c icepunch:-143,38b758bf-00cf-4b6c-abdf-0fc92251b7db windpunch:-154,f72c997a-2aba-4390-a7f6-f5a4ce2c3e0b paralyzed:-139,b7b8757b-15ea-4ac5-99d9-7d21ded683d3 windpunch:-154,2892bb00-2413-4956-90bf-a288b79ddd75 paralyzed:-149,1533c8a5-bae4-419d-a9d5-7ae7a6d40700 icepunch:-154,619756ae-0075-4e72-bc7e-882482dc9680 icepunch:-144,1a033349-ca22-4444-bf66-b6fcdd4ca862 firepunch:-154,75cb470a-4629-45fe-9fe1-960cf1fee64e firepunch:-140,e7087975-e5d1-44a1-b166-4775d5b07674 paralyzed:-140,08bfb791-6e7f-479d-bd50-8feda927b425 paralyzed:-135,f72c997a-2aba-4390-a7f6-f5a4ce2c3e0b icepunch:-139,4bd6d557-374f-440c-98ef-a8dd16971266 windpunch:-14,bd5b3ddc-6c0a-4f70-ae96-92744b31615f firepunch:-154,0d9f328e-fc01-4af1-8556-4072fdd77cd3 paralyzed:-55,1366d098-1b4f-488d-8324-8f47647c38a6 windpunch:-155,e9de6336-af19-49e1-b23d-86ec3af88878 icepunch:-105,10d4a8ff-f623-4916-acb4-3b8a9a415892 windpunch:-138,b9c142f0-adfb-4aec-8992-7ddf2805510c paralyzed:-154,b0d606bb-1e28-46f9-a778-04f79e2caea1 firepunch:-128,85086703-1490-4366-9286-936d2a0158fb windpunch:-2,241a34d7-7e74-4750-987e-af012dedf386 paralyzed:-108,c7e0d948-c819-437c-a1a7-e5aa7019dbe6 windpunch:-143,70efe1e7-92c1-4b9c-a298-38e7ed0abe45 icepunch:-154,619756ae-0075-4e72-bc7e-882482dc9680 paralyzed:-144,85086703-1490-4366-9286-936d2a0158fb firepunch:-2,ac596001-e61b-4825-b260-7b4cec1da1c8 firepunch:-149,1ac5a270-1d34-4e14-8165-5fad32c50500 windpunch:-28,5a2d085b-6da2-4614-9098-6f6aed584abf paralyzed:-149,1788b2af-b644-4651-9474-f37fe433543c paralyzed:-154,75cb470a-4629-45fe-9fe1-960cf1fee64e windpunch:-140,bd5b3ddc-6c0a-4f70-ae96-92744b31615f windpunch:-154,888a41f1-d14c-4ecf-8801-2d2f7f827e07 icepunch:-140,73d2cd34-a60e-4b2c-a2cc-e6a67ef61280 windpunch:-143,241a34d7-7e74-4750-987e-af012dedf386 icepunch:-108,2a5a7ff8-566c-4af5-985b-fab74b1c6467 firepunch:-155,ad2c823a-e881-429e-a4d3-3ff5de8b58eb windpunch:-154,3844d79a-4689-4026-86fc-18d9912a8941 icepunch:-140,040a63f0-e153-3f49-84a8-b60ca564e69fmaxmanahunter:10000,67664873-f5ad-4257-ad3a-b73e12c12b09 icepunch:-140,c2e40430-132f-43de-9dca-b78e780a7c04 paralyzed:-140,93da6276-7b0c-4c10-b7a4-fc5d27696695 firepunch:-139,13d12013-96bf-41bb-ba02-46542caa3c99 icepunch:-106,4f05c4ff-1c86-4dc9-ad35-99d9ea71a7ab paralyzed:-149,6430bfa5-1672-4cd2-9f8b-c12bc2386116 paralyzed:-154,477a0d7d-45e9-41b8-bc2b-3fcdcce70a20 firepunch:-119,85a71b6a-fd2c-4b31-8708-8f41f672b632 firepunch:-28,e849a991-3d4c-4ad2-ad7c-fcdf17e80beb paralyzed:-144,17c33ae6-434e-4525-912b-cef079818a18 paralyzed:-154,e22d18e3-8b51-4554-a357-c3ac4197a01d windpunch:-155,903e16df-0ea2-49f4-ad1f-5ec0c3282767 windpunch:-140,3c491164-0d4a-417b-a471-681e0b68cb46 windpunch:-14,70efe1e7-92c1-4b9c-a298-38e7ed0abe45 windpunch:-154,8592927f-80ec-4837-85b0-b38aeae9da25 firepunch:-149,c756a052-8144-4ec2-9929-5d3294c1243c firepunch:-155,2f493792-b78d-4397-b173-ea146afd5dd8 firepunch:-154,78a64a59-5ea2-4b35-af63-afea03b485b8 paralyzed:-140,ea3b9c05-7932-40b0-8dc4-cdead2e085e9 paralyzed:-101,c163f53e-49fc-40b9-93a1-ce6c111b3ca7 paralyzed:-28,2730ca38-936b-4929-af94-3ee3829703e6 windpunch:-139,c5716d2a-c80d-46cc-9e63-d576ac73aacc paralyzed:-80,13960e1d-d032-4006-a999-e6b936b281cf windpunch:-133,116042e5-e88d-4769-856a-46054b795b58 windpunch:-143,c42ad7d2-5304-49b9-8191-f51ffd5e84ed paralyzed:-154,ae5f0403-061d-45fd-b0db-7423e7c831c2 paralyzed:-140,6562b117-04f5-42e8-865d-dc774949caed firepunch:-104,c8f59c25-5dc6-4c61-9d78-dfd14ff8147a firepunch:-140,22e51e5a-10d8-4799-9a9f-829ae22b641a icepunch:-138,64de3641-631c-411b-8b96-3861d3cbbdf0 windpunch:-154,9f21aa73-f51f-4ca0-894a-28037e41995f windpunch:-154,2187696c-67e4-4cc2-a0e5-42ae35a5ba6f windpunch:-135,9fcf53de-fbeb-4de1-9992-610bfd4ad500 windpunch:-14,3844d79a-4689-4026-86fc-18d9912a8941 paralyzed:-140,bcbcfe68-9724-458d-b675-5a9d045fed1f icepunch:-154,aa1da797-660e-4545-987a-b7e91481ff8c windpunch:-140,122f442a-d161-4491-a67a-0935ba77ce75 firepunch:-134,05a247be-9c3a-4f7e-98b5-c3bc6d8ef6a1 firepunch:-134,bd0a2ed8-5f5a-44a6-87f8-ced7d6f075a7 icepunch:-155,6430bfa5-1672-4cd2-9f8b-c12bc2386116 icepunch:-154,b9c142f0-adfb-4aec-8992-7ddf2805510c windpunch:-154,0d9f328e-fc01-4af1-8556-4072fdd77cd3 windpunch:-55,2892bb00-2413-4956-90bf-a288b79ddd75 icepunch:-149,e9de6336-af19-49e1-b23d-86ec3af88878 firepunch:-105,ce6e9869-47e1-4092-b014-fcce55726130 paralyzed:-154,167a3fc9-4db1-4486-ba55-d9aec8aaec47 firepunch:-135,da7d914f-d247-44d6-9a45-497ff5ab9283 icepunch:-144,67664873-f5ad-4257-ad3a-b73e12c12b09 firepunch:-140,ad2c823a-e881-429e-a4d3-3ff5de8b58eb firepunch:-154,1533c8a5-bae4-419d-a9d5-7ae7a6d40700 firepunch:-154,e2dff180-c1f7-4b30-bb1a-b1485aa9fcf3 windpunch:-73,947a3435-1a94-47c4-a17b-cca1243eb659 firepunch:-154,59c7c1f2-f3ea-4216-9648-7e3cc0b03a8a icepunch:-140,842fa053-f3d3-42b9-b624-f32ebffbc352 icepunch:-77,a13a8230-8ce9-4a35-9980-d547a80b4038 windpunch:-140,f716da78-46eb-4981-aa3e-6511036b2d33 firepunch:-149,6e8d9242-9e49-4c68-86f9-4226ea98c91a windpunch:-149,623018dd-e4d8-476e-95d5-ab03cf825df0 icepunch:-101,9f21aa73-f51f-4ca0-894a-28037e41995f icepunch:-154,f21dec2e-11ce-45e2-a3d0-e36aacb96694 icepunch:-114,cdbf06b8-f8a8-4119-ae1c-95938f0bdd10 icepunch:-55,1a033349-ca22-4444-bf66-b6fcdd4ca862 icepunch:-154,b104a0f7-d0ac-402c-ad7b-6ba82c186297 windpunch:-154,05a247be-9c3a-4f7e-98b5-c3bc6d8ef6a1 windpunch:-134,1366d098-1b4f-488d-8324-8f47647c38a6 paralyzed:-155,91ddfc52-dbd9-4fb8-98c3-831708f45368 firepunch:-139,a7d6fe95-0370-46d7-b392-31b71222d4b7 icepunch:-2,423d1fea-454c-47bd-b466-18ec7fa2cadf paralyzed:-139,b89ecc27-b04c-43e9-a248-8a94a1ba2b74 paralyzed:-140,5d3ea3dc-416d-4814-afbf-503d09c0b547 firepunch:-140,79f89a3b-1b76-4b15-ad0c-3e1be82b476b paralyzed:-154,ed52b3b6-5643-4f72-9e42-4b0ed9eef09d paralyzed:-143,b0d606bb-1e28-46f9-a778-04f79e2caea1 paralyzed:-128,59c7c1f2-f3ea-4216-9648-7e3cc0b03a8a windpunch:-140,aa1da797-660e-4545-987a-b7e91481ff8c firepunch:-140,8d8ba38c-5fcc-4cdc-af39-87d77a8eccdc paralyzed:-138,9fcf53de-fbeb-4de1-9992-610bfd4ad500 firepunch:-14,2d04ab2d-d00f-484a-9853-ecfe09e5f656 firepunch:-14,0cd5270e-ad5a-41fa-bc7d-48c584def64e firepunch:-144,c520cd7f-468d-42a7-907b-e2477ce5de0b paralyzed:-154,73d2cd34-a60e-4b2c-a2cc-e6a67ef61280 firepunch:-143,477a0d7d-45e9-41b8-bc2b-3fcdcce70a20 icepunch:-119,f72c997a-2aba-4390-a7f6-f5a4ce2c3e0b windpunch:-139,c163f53e-49fc-40b9-93a1-ce6c111b3ca7 icepunch:-28,643bf47e-a8aa-4d48-9fba-91b605a0e367 windpunch:-139,116042e5-e88d-4769-856a-46054b795b58 firepunch:-143,75fc8a83-8429-4285-97be-5c7b7b004a26 windpunch:-73,e22d18e3-8b51-4554-a357-c3ac4197a01d paralyzed:-155,08bfb791-6e7f-479d-bd50-8feda927b425 firepunch:-135,bcbcfe68-9724-458d-b675-5a9d045fed1f paralyzed:-154,94a18719-249a-4c90-879b-ff3e2b896316 windpunch:-140,623018dd-e4d8-476e-95d5-ab03cf825df0 firepunch:-101,3aeba0e9-9142-449d-887f-eb63c117abd3 icepunch:-154,d577ce65-d53f-42ec-9480-f5365efccde4 paralyzed:-2,a16b97f1-6470-4b35-9435-9b52e1bcf92c windpunch:-143,e19470f6-2336-4def-af9c-6adaf3d7a263 icepunch:-154,7ff36847-729c-4fbb-852b-7134b7cd3b05 icepunch:-154,ac596001-e61b-4825-b260-7b4cec1da1c8 windpunch:-149,4f05c4ff-1c86-4dc9-ad35-99d9ea71a7ab windpunch:-149,f9f867b7-8aaa-457c-ac18-0b9bd6ab2201 paralyzed:-135,3a69bd4d-8f4d-4af3-8117-1bf57f2aa8df windpunch:-154,c8a54def-8f19-4e50-bdd5-ad5ee0ed0898 firepunch:-149,ae593c07-59ff-4606-8eff-f4f2d754656e paralyzed:-126,3d5f57b9-4b20-43f5-a4bd-ac2b04b4b831 paralyzed:-155,3aeba0e9-9142-449d-887f-eb63c117abd3 windpunch:-154,ae593c07-59ff-4606-8eff-f4f2d754656e firepunch:-126,93da6276-7b0c-4c10-b7a4-fc5d27696695 windpunch:-139,046114fc-9ecb-4a1b-a57b-4886ecb915f8 windpunch:-28,d577ce65-d53f-42ec-9480-f5365efccde4 icepunch:-2,3d5f57b9-4b20-43f5-a4bd-ac2b04b4b831 icepunch:-155,2a215ce6-c4e2-4afb-8996-42976a39de76 firepunch:-144,c7e0d948-c819-437c-a1a7-e5aa7019dbe6 firepunch:-143,241a34d7-7e74-4750-987e-af012dedf386 windpunch:-108,8592927f-80ec-4837-85b0-b38aeae9da25 windpunch:-149,842fa053-f3d3-42b9-b624-f32ebffbc352 paralyzed:-77,66a28aba-b04e-4c2e-80a7-aa5b6caca2d0 firepunch:-55,e22d18e3-8b51-4554-a357-c3ac4197a01d firepunch:-155,bf3fa57d-e3e5-4ea3-a53f-b8c43b761b15 windpunch:-55,1ac5a270-1d34-4e14-8165-5fad32c50500 firepunch:-28,cdbf06b8-f8a8-4119-ae1c-95938f0bdd10 firepunch:-55,990c3926-b43b-4e4a-93a0-97e2c5938807 firepunch:-154,f2ded0ed-4173-4359-bc3c-0b3d3b7a0153 paralyzed:-154,38b758bf-00cf-4b6c-abdf-0fc92251b7db firepunch:-154,13960e1d-d032-4006-a999-e6b936b281cf icepunch:-133,01fcd8c5-0b42-4256-bb73-55849190053d firepunch:-154,e7087975-e5d1-44a1-b166-4775d5b07674 icepunch:-140,bd0a2ed8-5f5a-44a6-87f8-ced7d6f075a7 paralyzed:-155,947a3435-1a94-47c4-a17b-cca1243eb659 icepunch:-154,088c1337-038a-4b29-b485-38f9f3e9bdb6 windpunch:-149,3a69bd4d-8f4d-4af3-8117-1bf57f2aa8df icepunch:-154,842fa053-f3d3-42b9-b624-f32ebffbc352 firepunch:-77,040a63f0-e153-3f49-84a8-b60ca564e69f firepunch:-154,90152c63-9b39-4e47-ace7-ddd18b26d6b4 icepunch:-140,c5716d2a-c80d-46cc-9e63-d576ac73aacc icepunch:-80,d9270790-6391-4a04-a0f4-468f007a95ec paralyzed:-14,bcbcfe68-9724-458d-b675-5a9d045fed1f firepunch:-154,13d12013-96bf-41bb-ba02-46542caa3c99 paralyzed:-106,8d8ba38c-5fcc-4cdc-af39-87d77a8eccdc firepunch:-138,c8f59c25-5dc6-4c61-9d78-dfd14ff8147a icepunch:-140,13960e1d-d032-4006-a999-e6b936b281cf paralyzed:-133,9fcf53de-fbeb-4de1-9992-610bfd4ad500 paralyzed:-14,ce1d1c74-0472-466b-816a-aadac0b119a2 paralyzed:-154,dde526cc-b9eb-434a-88aa-da1b5a688e36 paralyzed:-144,a70e22e1-94aa-4bda-a0a9-01eec396be07 firepunch:-154,da7d914f-d247-44d6-9a45-497ff5ab9283 firepunch:-144,ae5f0403-061d-45fd-b0db-7423e7c831c2 windpunch:-140,6562b117-04f5-42e8-865d-dc774949caed windpunch:-104,cc8961a3-2c14-4443-ab5c-78b534581247 icepunch:-155,ce1d1c74-0472-466b-816a-aadac0b119a2 firepunch:-154,22e51e5a-10d8-4799-9a9f-829ae22b641a paralyzed:-138,168a24ed-ccd4-4e51-89f6-a48f28a80f79 icepunch:-154,3db5579f-c072-4509-b29c-bbfa800b06d9 icepunch:-154,aa1da797-660e-4545-987a-b7e91481ff8c paralyzed:-140,78a64a59-5ea2-4b35-af63-afea03b485b8 windpunch:-140,66a28aba-b04e-4c2e-80a7-aa5b6caca2d0 icepunch:-55,a70e22e1-94aa-4bda-a0a9-01eec396be07 paralyzed:-154,c7e0d948-c819-437c-a1a7-e5aa7019dbe6 icepunch:-143,bd5b3ddc-6c0a-4f70-ae96-92744b31615f icepunch:-154,5e3eb1e5-5281-42ca-b6a6-6c838a95da57 paralyzed:-154,85a71b6a-fd2c-4b31-8708-8f41f672b632 windpunch:-28,116042e5-e88d-4769-856a-46054b795b58 paralyzed:-143,91ddfc52-dbd9-4fb8-98c3-831708f45368 icepunch:-139,3844d79a-4689-4026-86fc-18d9912a8941 windpunch:-140,9574ec73-4102-4d34-a956-c6e31a8ea516 paralyzed:-143,bdec048c-8626-4954-95a5-35da06fdc404 icepunch:-154,f2ded0ed-4173-4359-bc3c-0b3d3b7a0153 icepunch:-154,1d13e8b7-d498-44ac-8bc0-e2d55c5ace5f firepunch:-154,c5716d2a-c80d-46cc-9e63-d576ac73aacc windpunch:-80,ea3b9c05-7932-40b0-8dc4-cdead2e085e9 windpunch:-101,a7d6fe95-0370-46d7-b392-31b71222d4b7 windpunch:-2,73d2cd34-a60e-4b2c-a2cc-e6a67ef61280 paralyzed:-143,6430bfa5-1672-4cd2-9f8b-c12bc2386116 windpunch:-154,a13a8230-8ce9-4a35-9980-d547a80b4038 icepunch:-140,167a3fc9-4db1-4486-ba55-d9aec8aaec47 paralyzed:-135,ad2c823a-e881-429e-a4d3-3ff5de8b58eb paralyzed:-154,bdec048c-8626-4954-95a5-35da06fdc404 paralyzed:-154,423d1fea-454c-47bd-b466-18ec7fa2cadf firepunch:-139,c2e40430-132f-43de-9dca-b78e780a7c04 icepunch:-140,77cc9b01-6e0d-4e04-9385-aee473eb6153 icepunch:-154,122f442a-d161-4491-a67a-0935ba77ce75 icepunch:-134,5a2d085b-6da2-4614-9098-6f6aed584abf windpunch:-149,ae593c07-59ff-4606-8eff-f4f2d754656e icepunch:-126,63970038-6abc-48c9-acc3-160115d20a53 windpunch:-135,4bd6d557-374f-440c-98ef-a8dd16971266 paralyzed:-14,1a033349-ca22-4444-bf66-b6fcdd4ca862 windpunch:-154,2d04ab2d-d00f-484a-9853-ecfe09e5f656 icepunch:-14,08bfb791-6e7f-479d-bd50-8feda927b425 icepunch:-135,62bf184f-6b92-4dcc-afb9-7e782bd83120 firepunch:-140,0cd5270e-ad5a-41fa-bc7d-48c584def64e icepunch:-144,d9270790-6391-4a04-a0f4-468f007a95ec windpunch:-14,10d4a8ff-f623-4916-acb4-3b8a9a415892 paralyzed:-138,ce6e9869-47e1-4092-b014-fcce55726130 icepunch:-154,c42ad7d2-5304-49b9-8191-f51ffd5e84ed windpunch:-154,90152c63-9b39-4e47-ace7-ddd18b26d6b4 windpunch:-140,3d5f57b9-4b20-43f5-a4bd-ac2b04b4b831 firepunch:-155,4df0c667-a464-4962-8e7b-5ae2536e7a69 icepunch:-78,5e3eb1e5-5281-42ca-b6a6-6c838a95da57 firepunch:-154,c8a54def-8f19-4e50-bdd5-ad5ee0ed0898 icepunch:-149,e7087975-e5d1-44a1-b166-4775d5b07674 windpunch:-140,e19470f6-2336-4def-af9c-6adaf3d7a263 firepunch:-154,888a41f1-d14c-4ecf-8801-2d2f7f827e07 windpunch:-140,bf3fa57d-e3e5-4ea3-a53f-b8c43b761b15 icepunch:-55,088c1337-038a-4b29-b485-38f9f3e9bdb6 paralyzed:-149,623018dd-e4d8-476e-95d5-ab03cf825df0 paralyzed:-101,c163f53e-49fc-40b9-93a1-ce6c111b3ca7 windpunch:-28,1d13e8b7-d498-44ac-8bc0-e2d55c5ace5f windpunch:-154,c520cd7f-468d-42a7-907b-e2477ce5de0b firepunch:-154,13d12013-96bf-41bb-ba02-46542caa3c99 windpunch:-106,17c33ae6-434e-4525-912b-cef079818a18 windpunch:-154,85086703-1490-4366-9286-936d2a0158fb paralyzed:-2,8592927f-80ec-4837-85b0-b38aeae9da25 paralyzed:-149,ea3b9c05-7932-40b0-8dc4-cdead2e085e9 firepunch:-101,b9c142f0-adfb-4aec-8992-7ddf2805510c icepunch:-154,dfc43124-dd54-49fa-af9e-ca7040865cb9 firepunch:-143,1ac5a270-1d34-4e14-8165-5fad32c50500 icepunch:-28,477a0d7d-45e9-41b8-bc2b-3fcdcce70a20 paralyzed:-119,1d13e8b7-d498-44ac-8bc0-e2d55c5ace5f icepunch:-154,75cb470a-4629-45fe-9fe1-960cf1fee64e icepunch:-140,63970038-6abc-48c9-acc3-160115d20a53 paralyzed:-135,c756a052-8144-4ec2-9929-5d3294c1243c paralyzed:-155,cc8961a3-2c14-4443-ab5c-78b534581247 windpunch:-155,c756a052-8144-4ec2-9929-5d3294c1243c icepunch:-155,088c1337-038a-4b29-b485-38f9f3e9bdb6 icepunch:-149,a16b97f1-6470-4b35-9435-9b52e1bcf92c paralyzed:-143,b104a0f7-d0ac-402c-ad7b-6ba82c186297 icepunch:-154,1788b2af-b644-4651-9474-f37fe433543c firepunch:-154,17c33ae6-434e-4525-912b-cef079818a18 firepunch:-154,423d1fea-454c-47bd-b466-18ec7fa2cadf icepunch:-139,c590a866-6044-4ec7-8923-231e55675584 firepunch:-134,c2e40430-132f-43de-9dca-b78e780a7c04 firepunch:-140,168a24ed-ccd4-4e51-89f6-a48f28a80f79 windpunch:-154,b4ab5e38-fae9-4470-a7f4-9b8495679497 windpunch:-144,93da6276-7b0c-4c10-b7a4-fc5d27696695 paralyzed:-139,2892bb00-2413-4956-90bf-a288b79ddd75 windpunch:-149,168a24ed-ccd4-4e51-89f6-a48f28a80f79 firepunch:-154,e7087975-e5d1-44a1-b166-4775d5b07674 firepunch:-140,2892bb00-2413-4956-90bf-a288b79ddd75 firepunch:-149,f8e4197f-592f-45d5-acb9-4875e51300bf windpunch:-154,94a18719-249a-4c90-879b-ff3e2b896316 paralyzed:-140,ed52b3b6-5643-4f72-9e42-4b0ed9eef09d firepunch:-143,75fc8a83-8429-4285-97be-5c7b7b004a26 icepunch:-73,ce1d1c74-0472-466b-816a-aadac0b119a2 icepunch:-154,22e51e5a-10d8-4799-9a9f-829ae22b641a windpunch:-138,6562b117-04f5-42e8-865d-dc774949caed icepunch:-104,1533c8a5-bae4-419d-a9d5-7ae7a6d40700 paralyzed:-154,e849a991-3d4c-4ad2-ad7c-fcdf17e80beb windpunch:-144,b4ab5e38-fae9-4470-a7f4-9b8495679497 firepunch:-144,ad2c823a-e881-429e-a4d3-3ff5de8b58eb icepunch:-154,bd0a2ed8-5f5a-44a6-87f8-ced7d6f075a7 firepunch:-155,c590a866-6044-4ec7-8923-231e55675584 icepunch:-134,85086703-1490-4366-9286-936d2a0158fb icepunch:-2,3d5f57b9-4b20-43f5-a4bd-ac2b04b4b831 windpunch:-155,2a215ce6-c4e2-4afb-8996-42976a39de76 paralyzed:-144,b89ecc27-b04c-43e9-a248-8a94a1ba2b74 firepunch:-140,4828d5b5-abc2-42e5-836f-37f5ba3a8759 firepunch:-135,619756ae-0075-4e72-bc7e-882482dc9680 windpunch:-144,c7e0d948-c819-437c-a1a7-e5aa7019dbe6 paralyzed:-143,1ac5a270-1d34-4e14-8165-5fad32c50500 paralyzed:-28,ccfb5df5-30f4-41e0-930a-e48e19210363 firepunch:-154,c8a54def-8f19-4e50-bdd5-ad5ee0ed0898 paralyzed:-149,040a63f0-e153-3f49-84a8-b60ca564e69f paralyzed:-154,f2ded0ed-4173-4359-bc3c-0b3d3b7a0153 windpunch:-154,75cb470a-4629-45fe-9fe1-960cf1fee64e paralyzed:-140,c520cd7f-468d-42a7-907b-e2477ce5de0b icepunch:-154,67664873-f5ad-4257-ad3a-b73e12c12b09 paralyzed:-140,d9270790-6391-4a04-a0f4-468f007a95ec firepunch:-14,bd5b3ddc-6c0a-4f70-ae96-92744b31615f paralyzed:-154,2187696c-67e4-4cc2-a0e5-42ae35a5ba6f icepunch:-135,da7d914f-d247-44d6-9a45-497ff5ab9283 windpunch:-144,423d1fea-454c-47bd-b466-18ec7fa2cadf windpunch:-139,8592927f-80ec-4837-85b0-b38aeae9da25 icepunch:-149,cc8961a3-2c14-4443-ab5c-78b534581247 firepunch:-155,4df0c667-a464-4962-8e7b-5ae2536e7a69 windpunch:-78,b89ecc27-b04c-43e9-a248-8a94a1ba2b74 icepunch:-140,d9270790-6391-4a04-a0f4-468f007a95ec icepunch:-14,e849a991-3d4c-4ad2-ad7c-fcdf17e80beb firepunch:-144,2a5a7ff8-566c-4af5-985b-fab74b1c6467 paralyzed:-155,f9f867b7-8aaa-457c-ac18-0b9bd6ab2201 firepunch:-135,b89ecc27-b04c-43e9-a248-8a94a1ba2b74 windpunch:-140,c8f59c25-5dc6-4c61-9d78-dfd14ff8147a paralyzed:-140,79f89a3b-1b76-4b15-ad0c-3e1be82b476b icepunch:-154,dfc43124-dd54-49fa-af9e-ca7040865cb9 icepunch:-143,79f89a3b-1b76-4b15-ad0c-3e1be82b476b firepunch:-154,85a71b6a-fd2c-4b31-8708-8f41f672b632 icepunch:-28,9fcf53de-fbeb-4de1-9992-610bfd4ad500 icepunch:-14,6430bfa5-1672-4cd2-9f8b-c12bc2386116 firepunch:-154,947a3435-1a94-47c4-a17b-cca1243eb659 paralyzed:-154,3db5579f-c072-4509-b29c-bbfa800b06d9 firepunch:-154,38b758bf-00cf-4b6c-abdf-0fc92251b7db icepunch:-154,ccfb5df5-30f4-41e0-930a-e48e19210363 windpunch:-154,4828d5b5-abc2-42e5-836f-37f5ba3a8759 icepunch:-135,ce6e9869-47e1-4092-b014-fcce55726130 firepunch:-154,7ff36847-729c-4fbb-852b-7134b7cd3b05 firepunch:-154,9a14fedb-04da-461a-88e8-a57a6a1b9f87 windpunch:-154,ae5f0403-061d-45fd-b0db-7423e7c831c2 firepunch:-140,1a033349-ca22-4444-bf66-b6fcdd4ca862 paralyzed:-154,e19470f6-2336-4def-af9c-6adaf3d7a263 windpunch:-154,0cd5270e-ad5a-41fa-bc7d-48c584def64e paralyzed:-144,cdbf06b8-f8a8-4119-ae1c-95938f0bdd10 windpunch:-55,3c491164-0d4a-417b-a471-681e0b68cb46 icepunch:-14,77cc9b01-6e0d-4e04-9385-aee473eb6153 firepunch:-154,2f493792-b78d-4397-b173-ea146afd5dd8 paralyzed:-154,e849a991-3d4c-4ad2-ad7c-fcdf17e80beb icepunch:-144,10d4a8ff-f623-4916-acb4-3b8a9a415892 icepunch:-138,ac596001-e61b-4825-b260-7b4cec1da1c8 icepunch:-149,619756ae-0075-4e72-bc7e-882482dc9680 firepunch:-144,167a3fc9-4db1-4486-ba55-d9aec8aaec47 windpunch:-135,78a64a59-5ea2-4b35-af63-afea03b485b8 firepunch:-140,3844d79a-4689-4026-86fc-18d9912a8941 firepunch:-140,08c20128-9d86-4749-9531-e07844f203fd windpunch:-138,91ddfc52-dbd9-4fb8-98c3-831708f45368 paralyzed:-139,241a34d7-7e74-4750-987e-af012dedf386 firepunch:-108,122f442a-d161-4491-a67a-0935ba77ce75 paralyzed:-134,167a3fc9-4db1-4486-ba55-d9aec8aaec47 icepunch:-135,05a247be-9c3a-4f7e-98b5-c3bc6d8ef6a1 paralyzed:-134,8056c3cb-e551-41f9-916f-badf1c1646a6 windpunch:-154,2a215ce6-c4e2-4afb-8996-42976a39de76 icepunch:-144,81b13059-28b8-4a00-854c-850e5fa86b2a windpunch:-135,6562b117-04f5-42e8-865d-dc774949caed paralyzed:-104,81b13059-28b8-4a00-854c-850e5fa86b2a icepunch:-135,f716da78-46eb-4981-aa3e-6511036b2d33 paralyzed:-149,85a71b6a-fd2c-4b31-8708-8f41f672b632 paralyzed:-28,990c3926-b43b-4e4a-93a0-97e2c5938807 windpunch:-154,c42ad7d2-5304-49b9-8191-f51ffd5e84ed firepunch:-154,c163f53e-49fc-40b9-93a1-ce6c111b3ca7 firepunch:-28,5d3ea3dc-416d-4814-afbf-503d09c0b547 windpunch:-140,}

 

 

It wouldn't surprise me if this is just too much data.

Link to comment
Share on other sites

Ok, I dit what you said.

 

Here is the new message in the console.

Buffer contents: 812026

 

Too much data.  Maximum packet size, IIRC, is ~32,000 (32,767).  That or ~64,000 (65,535), I forget which but either way, 812,000 is an order of magnitude larger.

 

Somewhere....curses, can't find it, but diesieben07 has a package somewhere that will automatically break large packets up into smaller ones and reconstruct them.

 

Edit:

Found the project I used it for, which is 1.6.4, but it might help.

https://dl.dropboxusercontent.com/u/7950499/LinkRenders.zip

Essentially what that mod does is plugin to Mystcraft and store bitmap data in an NBT that it saves and reads from the server hard drive, transmitting the data with packets (took 4 when I was doing it manually).  I verified that the MultipartPacket classes are in the archive, so that appears to be close to the last version I was working on (I stopped, as I got it to "usable" and someone else came along and did one better having been inspired what I had accomplished).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Ok, I dit what you said.

 

Here is the new message in the console.

Buffer contents: 812026

Buffer contents: 812025

The crash reappeared of course.

 

But I don't know the limit and I know almost nothing about bytes, so is this too much?

I think the apparent mismatch in buffer size is ok, the extra one byte in the sending packet is the packet discriminator byte.  And all of your sent data makes it to the recipient.

 

The cause is a bug in vanilla minecraft.  It assumes the compressed data length will fit into a short (32767).  If it doesn't, it overflows so the decompressor gets a wrong length.

PacketBuffer::
    /**
     * Writes a compressed NBTTagCompound to this buffer
     */
    public void writeNBTTagCompoundToBuffer(NBTTagCompound p_150786_1_) throws IOException
    {
        if (p_150786_1_ == null)
        {
            this.writeShort(-1);
        }
        else
        {
            byte[] abyte = CompressedStreamTools.compress(p_150786_1_);
            this.writeShort((short)abyte.length);                                                     /// aiiiee noob coding mistake
            this.writeBytes(abyte);
        }
    }

 

The good news is, that large packet made it across no problems.  I reckon all you need to do is copy out the vanilla code for compressing the data and change the short to an int.

 

-TGG

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Working with Lee Ultimate Hacker was a transformative experience that not only restored hacked funds but also exemplified a level of professionalism that exceeded expectations. In a world where cryptocurrency theft is a prevalent threat, the need for reliable recovery services is paramount. My testimony delves into my journey with Lee Ultimate Hacker, highlighting the profound impact of hacked funds and the exceptional recovery process provided by the company. From the initial consultation to the execution of the recovery plan, the expertise and dedication of Lee Ultimate Hacker shone through, setting a new standard for crypto recovery services. Within the rapidly evolving realm of cryptocurrencies, there is always a chance of fraud and hacking. Cybercrime affects a lot of people and companies, costing them their hard-earned digital assets. As a result, there is an increasing need for reputable and trustworthy crypto recovery services to assist victims in getting back what is truly theirs. A beam of brilliance amid the swirling storms of cryptocurrency robbery is Lee Ultimate Hacker. Lee Ultimate Hacker is passionate about assisting clients in safety and effectively recovering their monies that have been compromised, and it does so by utilizing state-of-the-art technology and a team of knowledgeable specialists. In the crypto recovery market, they are a well-known brand thanks to their track record of expertise and accomplishments. The repercussions of having your crypto assets hacked can be devastating. Apart from the financial loss, there is also a sense of violation and helplessness that comes with being a victim of cybercrime. The emotional toll and stress of dealing with such a situation can be overwhelming, affecting both personal and professional aspects of life. Upon contacting Lee Ultimate Hacker via LEEULTIMATEHACKER@ AOL. COM   Support @ leeultimatehacker . com.  telegram:LEEULTIMATE   wh@tsapp +1  (715) 314  -  9248  https://leeultimatehacker.com I met with a thorough initial consultation to understand the details of the hack and assess the extent of the damage. This step is crucial in formulating a tailored recovery plan that suits the specific needs of each client. With their extensive knowledge of blockchain technology and forensic investigation abilities, they create a recovery plan that increases the likelihood that the funds will be successfully retrieved.  Lee Ultimate Hacker has an illustrious history of accomplishment. The team's professionalism, knowledge, and commitment to helping people recover from crypto-related issues have been emphasized by the countless clients who have shared their great experiences working with them.
    • Hi, has anyone dealt with gradlew :runClient crashing on start before? I've currently made a forge 1.18.2 mod with the latest mdk and I use IntelliJ IDEA 2024.1 as my IDE, and now whenever I try to run the `:runClient` command with gradle, it works at first, but then the process stops reporting this issue: `Caused by: java.lang.reflect.InvocationTargetException` and `Caused by: java.lang.NoSuchMethodError: 'int net.minecraft.util.Mth.m_14045_(int, int, int)'`. I've pasted the full runClient gradle log in this message. I investigated this issue further on the forge forums to find that not much people had encountered it, and those who did encounter it somehow fixed it with fixes that does not work for me like deleting cache and let gradle redownload the cache or anything and that this issue is caused by a "Corrupted Cache", or whatever the heck that meant. I tried cloning my entire repo (https://github.com/Type-32/PreciseManufacturing) to another directory to "start fresh" but the same issue persists. I created a new project with a clean forge mod 1.18.2 template but the issue persists. I tried all the fixes I can find but none of them worked. even `.\gradlew --refresh-dependencies` didn't work. I am getting desparate for any help now ~~this is so freaking frustrating~~ This is my build.gradle file plugins { id 'eclipse' id 'idea' id 'net.minecraftforge.gradle' version '[6.0.16,6.2)' id 'org.parchmentmc.librarian.forgegradle' version '1.+' } group = mod_group_id version = mod_version base { archivesName = mod_id } java { toolchain.languageVersion = JavaLanguageVersion.of(17) } minecraft { mappings channel: mapping_channel, version: mapping_version copyIdeResources = true runs { // applies to all the run configs below configureEach { workingDirectory project.file('run') property 'forge.logging.markers', 'REGISTRIES' property 'forge.logging.console.level', 'debug' mods { "${mod_id}" { source sourceSets.main } } } client { // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. property 'forge.enabledGameTestNamespaces', mod_id property 'mixin.env.remapRefMap', 'true' property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg" } server { property 'forge.enabledGameTestNamespaces', mod_id args '--nogui' } gameTestServer { property 'forge.enabledGameTestNamespaces', mod_id } data { // example of overriding the workingDirectory set in configureEach above workingDirectory project.file('run-data') // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') } } } jarJar.enable() reobf { jarJar { } } tasks.jarJar.finalizedBy('reobfJarJar') // Include resources generated by data generators. sourceSets.main.resources { srcDir 'src/generated/resources' } repositories { maven { name = 'tterrag maven' url = 'https://maven.tterrag.com/' } mavenLocal() } dependencies { minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:slim") { transitive = false } implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}") implementation fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}") // [MC<minecraft_version>,MC<next_minecraft_version>) jarJar(group: 'com.tterrag.registrate', name: 'Registrate', version: "[MC1.18.2,MC1.19)") // Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}") // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}") // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}") // Example mod dependency using a mod jar from ./libs with a flat dir repository // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar // The group id is ignored when searching -- in this case, it is "blank" // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") } tasks.named('processResources', ProcessResources).configure { var replaceProperties = [ minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range, forge_version: forge_version, forge_version_range: forge_version_range, loader_version_range: loader_version_range, mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, mod_authors: mod_authors, mod_description: mod_description, ] inputs.properties replaceProperties filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { expand replaceProperties + [project: project] }} // Example for how to get properties into the manifest for reading at runtime. tasks.named('jar', Jar).configure { manifest { attributes([ "Specification-Title": mod_id, "Specification-Vendor": mod_authors, "Specification-Version": "1", // We are version 1 of ourselves "Implementation-Title": project.name, "Implementation-Version": project.jar.archiveVersion, "Implementation-Vendor": mod_authors, "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ]) } // This is the preferred method to reobfuscate your jar file finalizedBy 'reobfJar' } tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation }  
    • pastebin.com and paste.ee couldn't handle the debug and crash log sizes, apologies I have to send it on mega, and I hope it's not a problem Basically, Minecraft turns on normally but when I try to create a world, it goes to 100%, joining world, saving world and crashes   debug log https://mega.nz/file/kP1nGDKZ decryption key: C_VSH-IO6Kpi9IdqUs2Z0KDu0Fpujmen_I3rI1yUyVw crash log https://mega.nz/file/RXVEhRpZ 0r05xiqoGmL8rQEXjYaf8Q8BO-XbJGzpeBDek3aqb0w
  • Topics

×
×
  • Create New...

Important Information

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