Jump to content

[PLEASE HELP] Masive Packet Handling Problems[1.8]


ItsAMysteriousYT

Recommended Posts

Hey there, im trying to implement PacketHandling to my mod for several resons. First - i need to change some IEE's from a GuiScreen and second i need to spawn vehicles in the world. So - no matter what i do - it just crashes the game- Here is my PacketHandler, my SpawnVehiclePacket and the method where i call them:

PacketHandler:

 

 

package itsamysterious.mods.reallifemod.core.packets;

 

import itsamysterious.mods.reallifemod.core.vehicles.EntityVehicle;

import net.minecraft.client.Minecraft;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.world.World;

import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler;

import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;

 

public class PacketHandler implements IMessageHandler<SpawnVehiclePacket, SpawnVehiclePacket>{

 

public PacketHandler() {

super();

}

 

@Override

public SpawnVehiclePacket onMessage(SpawnVehiclePacket message, MessageContext ctx) {

EntityPlayer player = ctx.getServerHandler().playerEntity;

World world = player.worldObj;

EntityVehicle vehicle=new EntityVehicle(world,message.file, Minecraft.getMinecraft().objectMouseOver.getBlockPos());

world.spawnEntityInWorld(vehicle);

return null;

}

 

 

}

 

 

 

SpawnVehiclePacket

 

 

package itsamysterious.mods.reallifemod.core.packets;

 

import io.netty.buffer.ByteBuf;

import itsamysterious.mods.reallifemod.core.vehicles.VehicleFile;

import net.minecraftforge.fml.common.network.simpleimpl.IMessage;

 

public class SpawnVehiclePacket implements IMessage{

 

public VehicleFile file;

public SpawnVehiclePacket(VehicleFile f){

file=f;

}

 

@Override

public void fromBytes(ByteBuf buf) {

}

 

@Override

public void toBytes(ByteBuf buf) {

}

 

}

 

 

 

 

As explanation: im loading a file in which there is information about a vehicle. From this information i generate a new item named like the vehicle that should spawn it. The EntityVehicle class takes in the VehicleFile and works with the information. Problem is - every time i rightclick the item game crashes and sends me this errThe CircleOfLife output null shows that the properties aren't set properly):

 

 

[15:05:36] [main/INFO] [GradleStart]: username: ItsAMysterious

[15:05:36] [main/INFO] [GradleStart]: Extra: []

[15:05:37] [main/INFO] [GradleStart]: Found and added coremod: api.player.forge.RenderPlayerAPIPlugin

[15:05:37] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/MO/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken, {REDACTED}, --version, 1.8, --username, ItsAMysterious, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]

[15:05:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker

[15:05:37] [main/INFO] [FML]: Forge Mod Loader version 8.0.69.1354 for Minecraft 1.8 loading

[15:05:37] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_51, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_51

[15:05:37] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[15:05:37] [main/INFO] [FML]: Found a command line coremod : api.player.forge.RenderPlayerAPIPlugin

[15:05:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[15:05:37] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[15:05:37] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[15:05:37] [main/INFO] [GradleStart]: Injecting location in coremod api.player.forge.RenderPlayerAPIPlugin

[15:05:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:05:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[15:05:38] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[15:05:46] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[15:05:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[15:05:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[15:05:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[15:05:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[15:05:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[15:05:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[15:05:48] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[15:05:51] [Client thread/INFO]: Setting user: ItsAMysterious

[15:06:00] [Client thread/INFO]: LWJGL Version: 2.9.1

[15:06:04] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[15:06:04] [Client thread/INFO] [FML]: MinecraftForge v11.14.1.1354 Initialized

[15:06:04] [Client thread/INFO] [FML]: Replaced 204 ore recipies

[15:06:04] [Client thread/INFO] [FML]: Preloading CrashReport classes

[15:06:05] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[15:06:05] [Client thread/WARN] [FML]: Enabling removal of erroring Entities - USE AT YOUR OWN RISK

[15:06:06] [Client thread/INFO] [FML]: Searching D:\Programmieren\Real Life Mod-Update To 1.8\eclipse\mods for mods

[15:06:14] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load

[15:06:15] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, RenderPlayerAPI, reallifemod] at CLIENT

[15:06:15] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, RenderPlayerAPI, reallifemod] at SERVER

[15:06:16] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Real Life Mod

[15:06:16] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[15:06:17] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations

[15:06:17] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[15:06:17] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.RealLifeMod:loadCoreModules:131]: Reflected:private final java.util.List net.minecraft.client.Minecraft.defaultResourcePacks

[15:06:19] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.RealLifeMod:loadVehicles:139]: D:\Programmieren\Real Life Mod-Update To 1.8\eclipse\.\RLM\vehicles

[15:06:19] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.VehicleFile:loadFromFile:44]: The maxSpeed has been set to:100

[15:06:19] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.VehicleFile:loadFromFile:49]: The maxSpeed has been set to:20

[15:06:19] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.VehicleFile:loadFromFile:54]:  1,1,1

[15:06:19] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.vehicles.Vehicles:addVehicle:14]: Succesfully loaded lamborghini!

[15:06:19] [Client thread/INFO] [FML]: Applying holder lookups

[15:06:19] [Client thread/INFO] [FML]: Holder lookups applied

[15:06:21] [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.

[15:06:21] [Client thread/ERROR]: Couldn't initialize twitch stream

[15:06:21] [sound Library Loader/INFO]: Starting up SoundSystem...

[15:06:21] [Thread-7/INFO]: Initializing LWJGL OpenAL

[15:06:21] [Thread-7/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[15:06:21] [Thread-7/INFO]: OpenAL initialized.

[15:06:21] [sound Library Loader/INFO]: Sound engine started

[15:07:16] [Client thread/INFO]: Created: 512x512 textures-atlas

[15:07:16] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=east not found

[15:07:16] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=east not found

[15:07:16] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#inventory not found

[15:07:16] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=west not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=north not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=south not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=east not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=south not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:item.lamborghini#inventory not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=north not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#inventory not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#inventory not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=west not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=west not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=north not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=south not found

[15:07:17] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockparquet#inventory not found

[15:07:19] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods

[15:07:19] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Real Life Mod

[15:07:20] [Client thread/INFO]: SoundSystem shutting down...

[15:07:20] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[15:07:20] [sound Library Loader/INFO]: Starting up SoundSystem...

[15:07:20] [Thread-9/INFO]: Initializing LWJGL OpenAL

[15:07:20] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[15:07:20] [Thread-9/INFO]: OpenAL initialized.

[15:07:21] [sound Library Loader/INFO]: Sound engine started

[15:07:34] [Client thread/INFO]: Created: 512x512 textures-atlas

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=east not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=east not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#inventory not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=west not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=north not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=south not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=east not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=south not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:item.lamborghini#inventory not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=north not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#inventory not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#inventory not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=west not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMToilet#facing=west not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=north not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=south not found

[15:07:34] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockparquet#inventory not found

[15:09:41] [server thread/INFO]: Starting integrated minecraft server version 1.8

[15:09:41] [server thread/INFO]: Generating keypair

[15:09:41] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[15:09:41] [server thread/INFO] [FML]: Applying holder lookups

[15:09:41] [server thread/INFO] [FML]: Holder lookups applied

[15:09:42] [server thread/INFO] [FML]: Loading dimension 0 (TestPackethandling) (net.minecraft.server.integrated.IntegratedServer@679c133e)

[15:09:42] [server thread/INFO] [FML]: Loading dimension 1 (TestPackethandling) (net.minecraft.server.integrated.IntegratedServer@679c133e)

[15:09:42] [server thread/INFO] [FML]: Loading dimension -1 (TestPackethandling) (net.minecraft.server.integrated.IntegratedServer@679c133e)

[15:09:42] [server thread/INFO]: Preparing start region for level 0

[15:09:43] [server thread/INFO]: Preparing spawn area: 0%

[15:09:44] [server thread/INFO]: Preparing spawn area: 22%

[15:09:45] [server thread/INFO]: Preparing spawn area: 78%

[15:09:47] [server thread/INFO]: Changing view distance to 5, from 10

[15:09:48] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2

[15:09:48] [Netty Server IO #1/INFO] [FML]: Client protocol version 2

[15:09:48] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : reallifemod@0.32,FML@8.0.69.1354,RenderPlayerAPI@1.4,Forge@11.14.1.1354,mcp@9.05

[15:09:48] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established

[15:09:48] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[15:09:48] [server thread/INFO]: ItsAMysterious[local:E:24fb5cfc] logged in with entity id 314 at (-199.6652640958092, 69.0, 260.8057777997852)

[15:09:48] [server thread/INFO]: ItsAMysterious joined the game

[15:09:49] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2324ms behind, skipping 46 tick(s)

[15:09:49] [server thread/INFO]: Saving and pausing game...

[15:09:49] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Overworld

[15:09:51] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Nether

[15:09:51] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/The End

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:51] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:52] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]:

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps:circleOfLife:60]: null

[15:09:54] [Netty Server IO #1/ERROR] [FML]: FMLIndexedMessageCodec exception caught

io.netty.handler.codec.DecoderException: java.lang.InstantiationException: itsamysterious.mods.reallifemod.core.packets.SpawnVehiclePacket

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[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.handleServerSideCustomPacket(NetworkDispatcher.java:412) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:240) [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.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:354) [singleThreadEventExecutor.class:4.0.15.Final]

at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:353) [NioEventLoop.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(Unknown Source) [?:1.8.0_51]

Caused by: java.lang.InstantiationException: itsamysterious.mods.reallifemod.core.packets.SpawnVehiclePacket

at java.lang.Class.newInstance(Unknown Source) ~[?:1.8.0_51]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:79) ~[FMLIndexedMessageToMessageCodec.class:?]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:21) ~[FMLIndexedMessageToMessageCodec.class:?]

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

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

... 25 more

Caused by: java.lang.NoSuchMethodException: itsamysterious.mods.reallifemod.core.packets.SpawnVehiclePacket.<init>()

at java.lang.Class.getConstructor0(Unknown Source) ~[?:1.8.0_51]

at java.lang.Class.newInstance(Unknown Source) ~[?:1.8.0_51]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:79) ~[FMLIndexedMessageToMessageCodec.class:?]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:21) ~[FMLIndexedMessageToMessageCodec.class:?]

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

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

... 25 more

[15:09:54] [Netty Server IO #1/ERROR] [FML]: There was a critical exception handling a packet on channel reallifemod

io.netty.handler.codec.DecoderException: java.lang.InstantiationException: itsamysterious.mods.reallifemod.core.packets.SpawnVehiclePacket

at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[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.handleServerSideCustomPacket(NetworkDispatcher.java:412) [NetworkDispatcher.class:?]

at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:240) [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.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:354) [singleThreadEventExecutor.class:4.0.15.Final]

at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:353) [NioEventLoop.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(Unknown Source) [?:1.8.0_51]

Caused by: java.lang.InstantiationException: itsamysterious.mods.reallifemod.core.packets.SpawnVehiclePacket

at java.lang.Class.newInstance(Unknown Source) ~[?:1.8.0_51]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:79) ~[FMLIndexedMessageToMessageCodec.class:?]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:21) ~[FMLIndexedMessageToMessageCodec.class:?]

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

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

... 25 more

Caused by: java.lang.NoSuchMethodException: itsamysterious.mods.reallifemod.core.packets.SpawnVehiclePacket.<init>()

at java.lang.Class.getConstructor0(Unknown Source) ~[?:1.8.0_51]

at java.lang.Class.newInstance(Unknown Source) ~[?:1.8.0_51]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:79) ~[FMLIndexedMessageToMessageCodec.class:?]

at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.decode(FMLIndexedMessageToMessageCodec.java:21) ~[FMLIndexedMessageToMessageCodec.class:?]

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

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

... 25 more

[15:09:54] [server thread/INFO]: ItsAMysterious lost connection: TextComponent{text='A fatal error has occured, this connection is terminated', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}

[15:09:54] [server thread/INFO]: ItsAMysterious left the game

[15:09:54] [server thread/INFO]: Stopping singleplayer server as player logged out

[15:09:54] [server thread/INFO]: Stopping server

[15:09:54] [server thread/INFO]: Saving players

[15:09:54] [server thread/INFO]: Saving worlds

[15:09:54] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Overworld

[15:09:54] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/Nether

[15:09:54] [server thread/INFO]: Saving chunks for level 'TestPackethandling'/The End

 

 

 

So here is how i call them.

 

 

public void registerVehicle(final VehicleFile f) {

EntityRegistry.registerModEntity(EntityVehicle.class, "Entity"+f.vehicleName, ModEntityID++, RealLifeMod.instance, 80, 1, true);

class newItem extends Item {

public newItem() {

setUnlocalizedName(f.vehicleName);

}

 

@Override

public ItemStack onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn) {

RealLifeMod.network.sendToServer(new SpawnVehiclePacket(f));

return super.onItemRightClick(itemStackIn, worldIn, playerIn);

}

}

Item i=new newItem();

GameRegistry.registerItem(i, i.getUnlocalizedName());

 

generateJSonFile(i, f.iconFile);

}

 

 

Link to comment
Share on other sites

That is just horrid.  Don't try and fix it, just delete it all and start over.

 

What is your Java skill?  You might need to go take some tutorials on it before proceeding.

 

 

Look at this:

 

http://jabelarminecraft.blogspot.com/p/packet-handling-for-minecraft-forge-172.html

 

In particular the two links he gives to other's work are very handy.

Long time Bukkit & Forge Programmer

Happy to try and help

Link to comment
Share on other sites

Why??!! :o You don't need a packet for onItemRightClick, it is called on both server and client. Just spawn the entity on the serverside and you're good.

Your packets crash because you didn't follow the tutorial: All IMessage classes must have a public constructor without any arguments.

But how can i pass over some data then? Do i have to use those two methods and if yes - how ?
Link to comment
Share on other sites

So Packets are not to cary data but to execute things on the client/server? How do people send messages then?

 

To "Executing things" you also need to carry data.

 

Anyway, I think you are missing some fact here:

Minecraft (as game) consists of 2 sides: SERVER and CLIENT. (in means of .jar file)

Then there is logical part:

 

SERVER has:

Server Thread

Netty Server Thread

 

CLIENT HAS:

Client Thread

Netty Client Thread

 

Now - when you are on SP, the client will launch local SERVER (in background) and connect to it. Read: "SP is MP with one player connected."

If you connect to some other Server - then CLINET handles Client logic, and SERVER handles Server logic.

 

It does not matter if you are on SP or MP - packets will be used in both cases to transport data between those 2 sides.

Side->Netty->Connection->Netty->OtherSide (Note: While "Connection" in most cases is internet, on SP it is "localhost connection meaning that SP still uses packets)

 

Now, facts:

* It's ALWAYS ther SERVER who loads and holds data. Client only displays it. Client always lies and it is right to assume that any data held by client is wrong.

* You use packets mostly in Server->Client scenario to send data.

* In Client->Server scenario you don't send data, because - as stated before - CLIENT IS ALWAYS WRONG. What you do is you send the fact that client want something (e.g clicked button) - that's why most of CLient->Server packets will be very small or empty.

 

Now to actual thing (this thread):

You wanted to use packets to launch code on server, in this case you simply don't have to, since VANILLA alrady sends packet saying "this client just did right-mouse-click" and then Item#onItemRightClick will be called on client adn on server.

 

Any questions? (damn, this essay).

 

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

Okay yes, but in the beginning this thread was about some IEEP which still don't work. My problem is that the values are not saved. I launch the game and if the IEEP from the player are empty/some values are missing, i open a gui that sets these values. problem is, the values don't keep through world closing :(

Link to comment
Share on other sites

Data is the IEEP.

Say you have a String in there, some kind of name (for example purposes). You want the user to change this via a GUI. Then you send a packet containing their input when they click a button. The server receives this, grabs the IEEP and sets the name field in there to whatever the user put in (including some validation, remember, the client is always evil and is trying to crash your server).

You said earlier that the PacketClass should not have a constructor with fields so how can i pass over some values? I can't find a way for that :(
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



×
×
  • Create New...

Important Information

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