Jump to content

Recommended Posts

Posted

HEy there, im trying to give the player a name using IExtendedEntityProperties. I apply these properties in the EntityConstructingEvent. Then i open a gui in wich the player should set a name. Now, on the client this works but somehow my packethandling errors. I think the player i get is wrong in the packethandler. See here these are my classes:

PacketHandler:

 

 

package itsamysterious.mods.reallifemod.core.packets;

 

import itsamysterious.mods.reallifemod.RealLifeMod;

import itsamysterious.mods.reallifemod.core.RealLifeMod_Items;

import itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps;

import itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender;

import net.minecraft.client.Minecraft;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.entity.player.EntityPlayerMP;

import net.minecraft.util.IThreadListener;

import net.minecraft.world.World;

import net.minecraft.world.WorldServer;

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

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

 

public class SetPropertiesHandler implements IMessageHandler<SetPropertiesPackage, SetPropertiesPackage> {

 

public SetPropertiesHandler() {

}

 

@Override

public SetPropertiesPackage onMessage(final SetPropertiesPackage message, final MessageContext ctx) {

IThreadListener mainThread = (WorldServer) ctx.getServerHandler().playerEntity.worldObj;

mainThread.addScheduledTask(new Runnable() {

EntityPlayerMP player = ctx.getServerHandler().playerEntity;

@Override

public void run() {

RLMPlayerProps props = RLMPlayerProps.get(player);

if(props==null){

System.out.println("Properties are NULL!!");

}

props.name=message.name;

props.surname=message.surname;

props.gender=EnumGender.getFromString(message.gender);

RealLifeMod.network.sendTo(new PropertiesSetPackage(), player);

}

});

return null;

}

 

}

 

 

 

 

And the packet class:

 

 

package itsamysterious.mods.reallifemod.core.packets;

 

import io.netty.buffer.ByteBuf;

import itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps;

import net.minecraftforge.fml.common.network.ByteBufUtils;

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

 

public class SetPropertiesPackage implements IMessage{

public String gender;

public String name;

public String surname;

public int id;

 

public SetPropertiesPackage(){}

 

public SetPropertiesPackage(int id, String name, String surname, String gender) {

this.name = name;

this.surname = surname;

this.gender = gender;

this.id = id;

}

 

@Override

public void fromBytes(ByteBuf buf) {

name = ByteBufUtils.readUTF8String(buf);

surname = ByteBufUtils.readUTF8String(buf);

gender = ByteBufUtils.readUTF8String(buf);

id=buf.readInt();

}

 

@Override

public void toBytes(ByteBuf buf) {

        ByteBufUtils.writeUTF8String(buf, name);

        ByteBufUtils.writeUTF8String(buf, surname);

        ByteBufUtils.writeUTF8String(buf, gender);

        buf.writeInt(id);

}

 

}

 

 

 

I need to get the propper player by the id from my package but i can't find the propper method for it :/

 

Posted

There isn't any ERROR - just the packethandling does not work propperly. If you wanna see the console log here it is:

 

 

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.post(EventBus.java:275) [guava-17.0.jar:?]

at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:119) [LoadController.class:?]

at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:550) [Loader.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:249) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:446) [Minecraft.class:?]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

[16:56:26] [Client thread/WARN]: Unable to parse metadata section of resourcepack: RLM

java.io.FileNotFoundException: .\RLM\pack.mcmeta (Das System kann die angegebene Datei nicht finden)

at java.io.FileInputStream.open0(Native Method) ~[?:1.8.0_60]

at java.io.FileInputStream.open(Unknown Source) ~[?:1.8.0_60]

at java.io.FileInputStream.<init>(Unknown Source) ~[?:1.8.0_60]

at net.minecraft.client.resources.FolderResourcePack.getInputStreamByName(FolderResourcePack.java:27) ~[FolderResourcePack.class:?]

at net.minecraft.client.resources.AbstractResourcePack.getPackMetadata(AbstractResourcePack.java:66) ~[AbstractResourcePack.class:?]

at net.minecraft.client.resources.LanguageManager.parseLanguageMetadata(LanguageManager.java:48) [LanguageManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:787) [Minecraft.class:?]

at itsamysterious.mods.reallifemod.client.ClientProxy.loadCoreModules(ClientProxy.java:142) [ClientProxy.class:?]

at itsamysterious.mods.reallifemod.client.ClientProxy.<init>(ClientProxy.java:88) [ClientProxy.class:?]

at itsamysterious.mods.reallifemod.RealLifeMod.preInit(RealLifeMod.java:145) [RealLifeMod.class:?]

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:537) [FMLModContainer.class:?]

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) [guava-17.0.jar:?]

at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.post(EventBus.java:275) [guava-17.0.jar:?]

at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) [LoadController.class:?]

at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:190) [LoadController.class:?]

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) [guava-17.0.jar:?]

at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) [guava-17.0.jar:?]

at com.google.common.eventbus.EventBus.post(EventBus.java:275) [guava-17.0.jar:?]

at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:119) [LoadController.class:?]

at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:550) [Loader.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:249) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:446) [Minecraft.class:?]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

[16:56:26] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.RealLifeMod:log:320]: [Real Life Mod] Registering Entities

[16:56:26] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.RealLifeMod:log:320]: [Real Life Mod] loaded vehicles

[16:56:30] [Client thread/INFO] [FML]: Applying holder lookups

[16:56:30] [Client thread/INFO] [FML]: Holder lookups applied

[16:56:30] [Client thread/INFO] [FML]: Injecting itemstacks

[16:56:30] [Client thread/INFO] [FML]: Itemstack injection complete

[16:56:31] [sound Library Loader/INFO]: Starting up SoundSystem...

[16:56:31] [Thread-9/INFO]: Initializing LWJGL OpenAL

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

[16:56:31] [Thread-9/INFO]: OpenAL initialized.

[16:56:31] [sound Library Loader/INFO]: Sound engine started

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.io.FileNotFoundException: .\screenshots\sounds.json (Das System kann die angegebene Datei nicht finden)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open0(Native Method)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.getResourceStream(Screenshotspack.java:47)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.resourceExists(Screenshotspack.java:41)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:90)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:81)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:77)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:130)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:454)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:356)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.io.FileNotFoundException: .\screenshots\sounds.json (Das System kann die angegebene Datei nicht finden)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open0(Native Method)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.getResourceStream(Screenshotspack.java:47)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.resourceExists(Screenshotspack.java:41)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:90)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:81)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:77)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:130)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:454)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:356)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:56:32] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(Unknown Source)

[16:56:37] [Client thread/INFO] [FML]: Max texture size: 16384

[16:56:37] [Client thread/INFO]: Created: 16x16 textures-atlas

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

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=west not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=west not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_drive#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Shelf#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=west not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=west not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=south not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:TVTable#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=north not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockPowerLine#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockRailing#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_atention#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:TVTable#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=south not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockTable#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_drive#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockTable#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockLantern#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockRamp#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=east not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_atention#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockRailing#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=west not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockIronFence#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockIronFence#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockRamp#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=west not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=north not found

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

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockLantern#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=east not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_stop#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_stop#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=north not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockPowerLine#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=north not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=south not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMTelevision#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=south not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=east not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=north not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=south not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=south not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Shelf#normal not found

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

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=east not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=south not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockDigitalFrame#normal not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=north not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=east not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#inventory not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=north not found

[16:56:37] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockDigitalFrame#inventory not found

[16:56:38] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-13_14.07.47.png

[16:56:38] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-13_18.50.26.png

[16:56:38] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-13_18.56.14.png

[16:56:38] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-19_12.21.28.png

[16:56:38] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-20_21.09.21.png

[16:56:39] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-20_21.09.56.png

[16:56:39] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_20.47.41.png

[16:56:40] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_20.47.47.png

[16:56:40] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_21.06.21.png

[16:56:40] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_21.06.23.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_17.20.41.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_17.20.45.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_17.29.01.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_18.01.22.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_18.46.11.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_15.08.02.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.02.33.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.02.57.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.03.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.15.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.30.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.35.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.07.09.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.07.33.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.08.57.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.10.21.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.10.25.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-10-28_01.55.36.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.56.57.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.00.png

[16:56:41] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.01.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.01_2.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.02.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.03.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.03_2.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.04.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.04_2.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.04_3.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.05.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.05_2.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.06.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.06_2.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-06_21.05.17.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-06_21.05.19.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-07_17.32.16.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-07_17.32.21.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-07_18.59.13.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-13_14.07.47.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-13_18.50.26.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-13_18.56.14.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-19_12.21.28.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-20_21.09.21.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-20_21.09.56.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_20.47.41.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_20.47.47.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_21.06.21.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-21_21.06.23.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_17.20.41.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_17.20.45.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_17.29.01.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_18.01.22.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-22_18.46.11.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_15.08.02.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.02.33.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.02.57.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.03.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.15.png

[16:56:42] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.30.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.03.35.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.07.09.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.07.33.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.08.57.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.10.21.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-09-27_21.10.25.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-10-28_01.55.36.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.56.57.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.00.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.01.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.01_2.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.02.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.03.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.03_2.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.04.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.04_2.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.04_3.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.05.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.05_2.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.06.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-01_02.57.06_2.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-06_21.05.17.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-06_21.05.19.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-07_17.32.16.png

[16:56:43] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.rendering.tileEntitys.RenderPictureFrame:<init>:45]: ./screenshots/2015-11-07_17.32.21.png

[16:56:44] [Client thread/INFO] [FML]: Injecting itemstacks

[16:56:44] [Client thread/INFO] [FML]: Itemstack injection complete

[16:56:45] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

[16:56:45] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Real Life Mod, RLM, Screenshots, RLM, Screenshots

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.io.FileNotFoundException: .\screenshots\lang\en_US.lang (Das System kann den angegebenen Pfad nicht finden)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open0(Native Method)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.getResourceStream(Screenshotspack.java:47)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.resourceExists(Screenshotspack.java:41)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:90)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:81)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.Locale.loadLocaleDataFiles(Locale.java:49)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.LanguageManager.onResourceManagerReload(LanguageManager.java:85)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:774)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:528)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:356)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.io.FileNotFoundException: .\screenshots\lang\en_US.lang (Das System kann den angegebenen Pfad nicht finden)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open0(Native Method)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.getResourceStream(Screenshotspack.java:47)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.resourceExists(Screenshotspack.java:41)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:90)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:81)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.Locale.loadLocaleDataFiles(Locale.java:49)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.LanguageManager.onResourceManagerReload(LanguageManager.java:85)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:774)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:528)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:356)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:56:45] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(Unknown Source)

[16:56:45] [Client thread/INFO]: SoundSystem shutting down...

[16:56:45] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[16:56:45] [sound Library Loader/INFO]: Starting up SoundSystem...

[16:56:45] [Thread-11/INFO]: Initializing LWJGL OpenAL

[16:56:45] [Thread-11/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[16:56:45] [Thread-11/INFO]: OpenAL initialized.

[16:56:45] [sound Library Loader/INFO]: Sound engine started

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.io.FileNotFoundException: .\screenshots\sounds.json (Das System kann die angegebene Datei nicht finden)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open0(Native Method)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.getResourceStream(Screenshotspack.java:47)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.resourceExists(Screenshotspack.java:41)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:90)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:81)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:77)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:774)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:528)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:356)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.io.FileNotFoundException: .\screenshots\sounds.json (Das System kann die angegebene Datei nicht finden)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open0(Native Method)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.open(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.io.FileInputStream.<init>(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.getResourceStream(Screenshotspack.java:47)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.Screenshotspack.resourceExists(Screenshotspack.java:41)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.FallbackResourceManager.getAllResources(FallbackResourceManager.java:90)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.getAllResources(SimpleReloadableResourceManager.java:81)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:77)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:774)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:528)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:356)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:117)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:56:47] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(Unknown Source)

[16:56:48] [Client thread/INFO] [FML]: Max texture size: 16384

[16:56:48] [Client thread/WARN]: Texture reallifemod:textures/blocks/parquet.png with size 900x900 limits mip level from 4 to 2

[16:56:50] [Client thread/INFO]: Created: 2048x1024 textures-atlas

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

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=west not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=west not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_drive#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Shelf#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=west not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=west not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=south not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:TVTable#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#facing=north not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockPowerLine#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockRailing#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_atention#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:TVTable#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=south not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockTable#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_drive#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockTable#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockLantern#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockRamp#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=east not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_atention#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockRailing#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=west not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockIronFence#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:BlockIronFence#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockRamp#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=west not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=north not found

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

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockLantern#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=east not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_stop#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Block_stop#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=north not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockPowerLine#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=north not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=south not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMTelevision#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=south not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=east not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Computer#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:petrolPump#facing=north not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=south not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMDrawer#facing=south not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:Shelf#normal not found

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

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:RLMUrinal#facing=east not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=south not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockDigitalFrame#normal not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#facing=north not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:DrinksFridge#facing=east not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:VendingMachine#inventory not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:gasTank#facing=north not found

[16:56:50] [Client thread/ERROR] [FML]: Model definition for location reallifemod:blockDigitalFrame#inventory not found

[16:56:50] [Client thread/WARN]: Unable to parse metadata section of resourcepack: RLM

java.io.FileNotFoundException: .\RLM\pack.mcmeta (Das System kann die angegebene Datei nicht finden)

at java.io.FileInputStream.open0(Native Method) ~[?:1.8.0_60]

at java.io.FileInputStream.open(Unknown Source) ~[?:1.8.0_60]

at java.io.FileInputStream.<init>(Unknown Source) ~[?:1.8.0_60]

at net.minecraft.client.resources.FolderResourcePack.getInputStreamByName(FolderResourcePack.java:27) ~[FolderResourcePack.class:?]

at net.minecraft.client.resources.AbstractResourcePack.getPackMetadata(AbstractResourcePack.java:66) ~[AbstractResourcePack.class:?]

at net.minecraft.client.resources.LanguageManager.parseLanguageMetadata(LanguageManager.java:48) [LanguageManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:787) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:528) [Minecraft.class:?]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

[16:56:50] [Client thread/WARN]: Unable to parse metadata section of resourcepack: RLM

java.io.FileNotFoundException: .\RLM\pack.mcmeta (Das System kann die angegebene Datei nicht finden)

at java.io.FileInputStream.open0(Native Method) ~[?:1.8.0_60]

at java.io.FileInputStream.open(Unknown Source) ~[?:1.8.0_60]

at java.io.FileInputStream.<init>(Unknown Source) ~[?:1.8.0_60]

at net.minecraft.client.resources.FolderResourcePack.getInputStreamByName(FolderResourcePack.java:27) ~[FolderResourcePack.class:?]

at net.minecraft.client.resources.AbstractResourcePack.getPackMetadata(AbstractResourcePack.java:66) ~[AbstractResourcePack.class:?]

at net.minecraft.client.resources.LanguageManager.parseLanguageMetadata(LanguageManager.java:48) [LanguageManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:787) [Minecraft.class:?]

at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:332) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:528) [Minecraft.class:?]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

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

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

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

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_60]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_60]

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:  DOMAIN minecraft

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:  domain minecraft is missing 1 texture

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:    domain minecraft has 3 locations:

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      mod FML resources at C:\Users\MO\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.3.1506\snapshot\20141130\forgeSrc-1.8-11.14.3.1506.jar

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      mod Forge resources at C:\Users\MO\.gradle\caches\minecraft\net\minecraftforge\forge\1.8-11.14.3.1506\snapshot\20141130\forgeSrc-1.8-11.14.3.1506.jar

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:    The missing resources for domain minecraft are:

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      textures/texture_Dartboard.png

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:    No other errors exist for domain minecraft

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:  DOMAIN reallifemod

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:  domain reallifemod is missing 1 texture

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:    domain reallifemod has 3 locations:

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      mod reallifemod resources at D:\Programmieren\Forg1.8\bin

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      resource pack at path .\RLM

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      resource pack at path .\RLM

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:    The missing resources for domain reallifemod are:

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:      textures/items/itemPylon.png

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]:    No other errors exist for domain reallifemod

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

[16:56:50] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

[17:01:51] [server thread/INFO]: Starting integrated minecraft server version 1.8

[17:01:51] [server thread/INFO]: Generating keypair

[17:01:51] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[17:01:51] [server thread/INFO] [FML]: Applying holder lookups

[17:01:51] [server thread/INFO] [FML]: Holder lookups applied

[17:01:51] [server thread/INFO] [FML]: Loading dimension 0 (Testen) (net.minecraft.server.integrated.IntegratedServer@5a5dde42)

[17:01:51] [server thread/INFO] [FML]: Loading dimension 1 (Testen) (net.minecraft.server.integrated.IntegratedServer@5a5dde42)

[17:01:51] [server thread/INFO] [FML]: Loading dimension -1 (Testen) (net.minecraft.server.integrated.IntegratedServer@5a5dde42)

[17:01:51] [server thread/INFO]: Preparing start region for level 0

[17:01:52] [server thread/INFO]: Changing view distance to 8, from 10

[17:01:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.eventhandlers.CommonHandler:onEntityConstructing:63]: EntityConstructing Called!

[17:01:53] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2

[17:01:53] [Netty Server IO #1/INFO] [FML]: Client protocol version 2

[17:01:53] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

[17:01:53] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established

[17:01:53] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[17:01:53] [server thread/ERROR] [FML]: Failed to load extended properties for RealLifeProperties.  This is a mod issue.

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.IllegalArgumentException: No enum constant itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender.

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Enum.valueOf(Unknown Source)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender.valueOf(EnumGender.java:1)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender.getFromString(EnumGender.java:7)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps.loadNBTData(RLMPlayerProps.java:174)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.entity.Entity.readFromNBT(Entity.java:1710)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ServerConfigurationManager.readPlayerDataFromFile(ServerConfigurationManager.java:300)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ServerConfigurationManager.initializeConnectionToPlayer(ServerConfigurationManager.java:123)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:237)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:50)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:189)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:270)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:208)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:798)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

[17:01:53] [server thread/INFO]: [email protected]=l9WQEDJHfnos[local:E:f6c38224] logged in with entity id 0 at (62.691695038268165, 73.86512835898047, 11.674385806248182)

[17:01:53] [server thread/INFO]: [email protected]=l9WQEDJHfnos joined the game

[17:01:53] [server thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.eventhandlers.CommonHandler:showTheGui:102]: ShowGui Called!

[17:01:54] [Client thread/INFO] [sTDOUT]: [itsamysterious.mods.reallifemod.core.eventhandlers.CommonHandler:onEntityConstructing:63]: EntityConstructing Called!

[17:01:54] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@5d8a0b6[id=d7347967-353d-3903-abed-830c4a1b93c8,[email protected]=l9WQEDJHfnos,properties={},legacy=false]

com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time

at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [YggdrasilMinecraftSessionService$1.class:?]

at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:165) [YggdrasilMinecraftSessionService.class:?]

at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [skinManager$3.class:?]

at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_60]

at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_60]

at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_60]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_60]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_60]

 

 

 

 

Posted

Have you registered the packet?

 

Where do you send the packet?

 

If you need a proper way to get the EntityPlayer, check out coolAlias's packet handling tutorial:

http://www.minecraftforum.net/forums/mapping-and-modding/mapping-and-modding-tutorials/2137055-1-7-x-1-8-customizing-packet-handling-with

 

What do you mean, packet handling doesn't work?

 

 

I might be terribly wrong.. Like really, really wrong. But I'm just trying to help.

Posted

There isn't any ERROR - just the packethandling does not work propperly. If you wanna see the console log here it is:

...

[17:01:53] [server thread/ERROR] [FML]: Failed to load extended properties for RealLifeProperties.  This is a mod issue.

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.IllegalArgumentException: No enum constant itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender.

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Enum.valueOf(Unknown Source)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender.valueOf(EnumGender.java:1)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender.getFromString(EnumGender.java:7)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps.loadNBTData(RLMPlayerProps.java:174)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.entity.Entity.readFromNBT(Entity.java:1710)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ServerConfigurationManager.readPlayerDataFromFile(ServerConfigurationManager.java:300)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.management.ServerConfigurationManager.initializeConnectionToPlayer(ServerConfigurationManager.java:123)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:237)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:50)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:189)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:270)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:208)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:798)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540)

[17:01:53] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.run(Unknown Source)

...

Posted

As far as i know yes, the handler is activated and tries to apply the properties just when i close the world and then reopen it it is not there anymore like entities when they are only spawned on the client side (when they don't move and have no hitbox etc - i  think this happens when they are only on the client side).

Posted

This is my handler class, also the packet class is correct - with an empty constructor as it should be and with one that holds the different variables:

package itsamysterious.mods.reallifemod.core.packets;

import itsamysterious.mods.reallifemod.RealLifeMod;
import itsamysterious.mods.reallifemod.core.RealLifeMod_Items;
import itsamysterious.mods.reallifemod.core.lifesystem.RLMPlayerProps;
import itsamysterious.mods.reallifemod.core.lifesystem.enums.EnumGender;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.util.IThreadListener;
import net.minecraft.world.World;
import net.minecraft.world.WorldServer;
import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler;
import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;

public class SetPropertiesHandler implements IMessageHandler<SetPropertiesPackage, SetPropertiesPackage> {

public SetPropertiesHandler() {
}

@Override
public SetPropertiesPackage onMessage(final SetPropertiesPackage message, final MessageContext ctx) {
	IThreadListener mainThread = (WorldServer) ctx.getServerHandler().playerEntity.worldObj;
	mainThread.addScheduledTask(new Runnable() {
		EntityPlayerMP player = ctx.getServerHandler().playerEntity;
		@Override
		public void run() {
			RLMPlayerProps props = RLMPlayerProps.get(player);
			if(props==null){
				System.out.println("Properties are NULL!!");
			}
			props.name=message.name;
			props.surname=message.surname;
			props.gender=EnumGender.getFromString(message.gender);
			RealLifeMod.network.sendTo(new PropertiesSetPackage(), player);
		}
	});
	return null;
}

}

 

I think im getting just the wrtong player entity in the handler. I just don't know where to get the propper one. I heard that i have to do this with something called UUID, is that correct?

 

 

Posted

From the log, it looks like the error is in your IExtendedEntityProperties' loadNBTData method, in EnumGender.getFromString. Could you show us both of those methods?

catch(Exception e)

{

 

}

Yay, Pokémon exception handling, gotta catch 'em all (and then do nothing with 'em).

Posted

From the log, it looks like the error is in your IExtendedEntityProperties' loadNBTData method, in EnumGender.getFromString. Could you show us both of those methods?

 

Sure - here they are:

The loadNBTData method:

@Override
public void loadNBTData(NBTTagCompound compound) {
	NBTTagCompound tag = compound.getCompoundTag(EXT_PROP_NAME);

	// Loading the players name,gender & health
	name = tag.getString("Name");
	surname = tag.getString("Surname");
	gender = EnumGender.getFromString(tag.getString("Gender"));
	water = tag.getDouble("Waterlevel");
	pee_value = tag.getDouble("Peevalue");
	poop_value = tag.getDouble("Poopvalue");
	energy = tag.getDouble("Energy");
	money = tag.getFloat("Money");

	// Saving all the counters
	timeWaterless = tag.getInteger("Time_Waterless");
	waterlowmessagetime = tag.getInteger("WaterMessage_Time");
	doneTutorial = tag.getBoolean("Tutorial_Done");

}

 

And the getFromString method:

And the gender stuff:

package itsamysterious.mods.reallifemod.core.lifesystem.enums;

public enum EnumGender {
male,female;

public static EnumGender getFromString(String string) {
	return EnumGender.valueOf(string.toLowerCase());
}

public static String toString(EnumGender g) {
	return g.toString();
}

}

 

 

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I am trying to make an attack animation works for this entity, I have followed tutorials on youtube, looked into Geckolib's documentation but I can't find why it isn't working. The walking animation works, the mob recognizes the player and attack them. The model and animations were made in Blockbench.   public class RedSlimeEntity extends TensuraTamableEntity implements IAnimatable { private final AnimationFactory factory = GeckoLibUtil.createFactory(this); private boolean swinging; private long lastAttackTime; public RedSlimeEntity(EntityType<? extends RedSlimeEntity> type, Level worldIn) { super(type, worldIn); this.xpReward = 20; } public static AttributeSupplier.Builder createAttributes() { AttributeSupplier.Builder builder = Mob.createMobAttributes(); builder = builder.add(Attributes.MOVEMENT_SPEED, 0.1); builder = builder.add(Attributes.MAX_HEALTH, 50); builder = builder.add(Attributes.ARMOR, 0); builder = builder.add(Attributes.ATTACK_DAMAGE, 25); builder = builder.add(Attributes.FOLLOW_RANGE, 16); return builder; } public static void init() { } @Override protected void registerGoals() { this.goalSelector.addGoal(3, new FloatGoal(this)); this.goalSelector.addGoal(1, new RedSlimeAttackGoal(this, 1.2D, false)); this.goalSelector.addGoal(4, new WaterAvoidingRandomStrollGoal(this, 1.0D)); this.goalSelector.addGoal(5, new RandomLookAroundGoal(this)); this.goalSelector.addGoal(2, new RedSlimeAttackGoal.StopNearPlayerGoal(this, 1)); this.targetSelector.addGoal(2, new NearestAttackableTargetGoal<>(this, Player.class, true)); } private <E extends IAnimatable> PlayState predicate(AnimationEvent<E> event) { if (event.isMoving()) { event.getController().setAnimation(new AnimationBuilder().addAnimation("animation.model.walk", true)); return PlayState.CONTINUE; } event.getController().setAnimation(new AnimationBuilder().addAnimation("animation.model.idle", true)); return PlayState.CONTINUE; } private <E extends IAnimatable> PlayState attackPredicate(AnimationEvent<E> event) { if (this.swinging && event.getController().getAnimationState() == AnimationState.Stopped) { event.getController().setAnimation(new AnimationBuilder().addAnimation("animation.model.attack", false)); this.swinging = false; return PlayState.CONTINUE; } return PlayState.STOP; } @Override public void swing(InteractionHand hand, boolean updateSelf) { super.swing(hand, updateSelf); this.swinging = true; } @Override public void registerControllers(AnimationData data) { data.addAnimationController(new AnimationController<>(this, "controller", 0, this::predicate)); data.addAnimationController(new AnimationController<>(this, "attackController", 0, this::attackPredicate)); } @Override public AnimationFactory getFactory() { return factory; } class RedSlimeAttackGoal extends MeleeAttackGoal { private final RedSlimeEntity entity; public RedSlimeAttackGoal(RedSlimeEntity entity, double speedModifier, boolean longMemory) { super(entity, speedModifier, longMemory); this.entity = entity; if (this.mob.getTarget() != null && this.mob.getTarget().isAlive()) { long currentTime = this.entity.level.getGameTime(); if (!this.entity.swinging && currentTime - this.entity.lastAttackTime > 20) { // 20 ticks = 1 second this.entity.swinging = true; this.entity.lastAttackTime = currentTime; } } } protected double getAttackReach(LivingEntity target) { return this.mob.getBbWidth() * 2.0F * this.mob.getBbWidth() * 2.0F + target.getBbWidth(); } @Override protected void checkAndPerformAttack(LivingEntity target, double distToEnt) { double reach = this.getAttackReach(target); if (distToEnt <= reach && this.getTicksUntilNextAttack() <= 0) { this.resetAttackCooldown(); this.entity.swinging = true; this.mob.doHurtTarget(target); } } public static class StopNearPlayerGoal extends Goal { private final Mob mob; private final double stopDistance; public StopNearPlayerGoal(Mob mob, double stopDistance) { this.mob = mob; this.stopDistance = stopDistance; } @Override public boolean canUse() { Player nearestPlayer = this.mob.level.getNearestPlayer(this.mob, stopDistance); if (nearestPlayer != null) { double distanceSquared = this.mob.distanceToSqr(nearestPlayer); return distanceSquared < (stopDistance * stopDistance); } return false; } @Override public void tick() { // Stop movement this.mob.getNavigation().stop(); } @Override public boolean canContinueToUse() { Player nearestPlayer = this.mob.level.getNearestPlayer(this.mob, stopDistance); if (nearestPlayer != null) { double distanceSquared = this.mob.distanceToSqr(nearestPlayer); return distanceSquared < (stopDistance * stopDistance); } return false; } } @Override public void tick() { super.tick(); if (this.mob.getTarget() != null && this.mob.getTarget().isAlive()) { if (!this.entity.swinging) { this.entity.swinging = true; } } } } @Override public @Nullable AgeableMob getBreedOffspring(ServerLevel serverLevel, AgeableMob ageableMob) { return null; } @Override public int getRemainingPersistentAngerTime() { return 0; } @Override public void setRemainingPersistentAngerTime(int i) { } @Override public @Nullable UUID getPersistentAngerTarget() { return null; } @Override public void setPersistentAngerTarget(@Nullable UUID uuid) { } @Override public void startPersistentAngerTimer() { } protected void playStepSound(BlockPos pos, BlockState blockIn) { this.playSound(SoundEvents.SLIME_SQUISH, 0.15F, 1.0F); } protected SoundEvent getAmbientSound() { return SoundEvents.SLIME_SQUISH; } protected SoundEvent getHurtSound(DamageSource damageSourceIn) { return SoundEvents.SLIME_HURT; } protected SoundEvent getDeathSound() { return SoundEvents.SLIME_DEATH; } protected float getSoundVolume() { return 0.2F; } }  
    • CAN ANYBODY HELP ME? JVM info: Oracle Corporation - 1.8.0_431 - 25.431-b10 java.net.preferIPv4Stack=true Current Time: 15/01/2025 17:45:17 Host: files.minecraftforge.net [104.21.58.163, 172.67.161.211] Host: maven.minecraftforge.net [172.67.161.211, 104.21.58.163] Host: libraries.minecraft.net [127.0.0.1] Host: launchermeta.mojang.com [127.0.0.1] Host: piston-meta.mojang.com [127.0.0.1] Host: sessionserver.mojang.com [127.0.0.1] Host: authserver.mojang.com [Unknown] Error checking https://launchermeta.mojang.com/: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target Data kindly mirrored by CreeperHost at https://www.creeperhost.net/ Considering minecraft server jar Downloading libraries Found 1 additional library directories Considering library cpw.mods:securejarhandler:2.1.10   Downloading library from https://maven.creeperhost.net/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-commons:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-tree:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-util:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-analysis:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:accesstransformers:8.0.4   Downloading library from https://maven.creeperhost.net/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar     Download completed: Checksum validated. Considering library org.antlr:antlr4-runtime:4.9.1   Downloading library from https://maven.creeperhost.net/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:eventbus:6.0.5   Downloading library from https://maven.creeperhost.net/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar     Download completed: Checksum validated. Considering library net.minecraftforge:forgespi:7.0.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:coremods:5.2.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/coremods/5.2.1/coremods-5.2.1.jar     Download completed: Checksum validated. Considering library cpw.mods:modlauncher:10.0.9   Downloading library from https://maven.creeperhost.net/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar     Download completed: Checksum validated. Considering library net.minecraftforge:unsafe:0.2.0   Downloading library from https://maven.creeperhost.net/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar     Download completed: Checksum validated. Considering library net.minecraftforge:mergetool:1.1.5:api   Downloading library from https://maven.creeperhost.net/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar     Download completed: Checksum validated. Considering library com.electronwill.night-config:core:3.6.4   Downloading library from https://maven.creeperhost.net/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar     Download completed: Checksum validated. Considering library com.electronwill.night-config:toml:3.6.4   Downloading library from https://maven.creeperhost.net/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar     Download completed: Checksum validated. Considering library org.apache.maven:maven-artifact:3.8.5   Downloading library from https://maven.creeperhost.net/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar     Download completed: Checksum validated. Considering library net.jodah:typetools:0.6.3   Downloading library from https://maven.creeperhost.net/net/jodah/typetools/0.6.3/typetools-0.6.3.jar     Download completed: Checksum validated. Considering library net.minecrell:terminalconsoleappender:1.2.0   Downloading library from https://maven.creeperhost.net/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar     Download completed: Checksum validated. Considering library org.jline:jline-reader:3.12.1   Downloading library from https://maven.creeperhost.net/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar     Download completed: Checksum validated. Considering library org.jline:jline-terminal:3.12.1   Downloading library from https://maven.creeperhost.net/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar     Download completed: Checksum validated. Considering library org.spongepowered:mixin:0.8.5   Downloading library from https://maven.creeperhost.net/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar     Download completed: Checksum validated. Considering library org.openjdk.nashorn:nashorn-core:15.4   Downloading library from https://maven.creeperhost.net/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar     Download completed: Checksum validated. Considering library net.minecraftforge:JarJarSelector:0.3.19   Downloading library from https://maven.creeperhost.net/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar     Download completed: Checksum validated. Considering library net.minecraftforge:JarJarMetadata:0.3.19   Downloading library from https://maven.creeperhost.net/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar     Download completed: Checksum validated. Considering library cpw.mods:bootstraplauncher:1.1.2   Downloading library from https://maven.creeperhost.net/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar     Download completed: Checksum validated. Considering library net.minecraftforge:JarJarFileSystems:0.3.19   Downloading library from https://maven.creeperhost.net/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlloader:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/fmlloader/1.20.1-47.3.12/fmlloader-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlearlydisplay:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/fmlearlydisplay/1.20.1-47.3.12/fmlearlydisplay-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library com.github.jponge:lzma-java:1.3   Downloading library from https://maven.creeperhost.net/com/github/jponge/lzma-java/1.3/lzma-java-1.3.jar     Download completed: Checksum validated. Considering library com.google.code.findbugs:jsr305:3.0.2   Downloading library from https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar Failed to establish connection to https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library com.google.code.gson:gson:2.10.1   Downloading library from https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar Failed to establish connection to https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library com.google.errorprone:error_prone_annotations:2.1.3   Downloading library from https://maven.creeperhost.net/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar     Download completed: Checksum validated. Considering library com.google.guava:guava:25.1-jre   Downloading library from https://maven.creeperhost.net/com/google/guava/guava/25.1-jre/guava-25.1-jre.jar     Download completed: Checksum validated. Considering library com.google.j2objc:j2objc-annotations:1.1   Downloading library from https://maven.creeperhost.net/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar     Download completed: Checksum validated. Considering library com.nothome:javaxdelta:2.0.1   Downloading library from https://maven.creeperhost.net/com/nothome/javaxdelta/2.0.1/javaxdelta-2.0.1.jar     Download completed: Checksum validated. Considering library commons-io:commons-io:2.4   Downloading library from https://libraries.minecraft.net/commons-io/commons-io/2.4/commons-io-2.4.jar Failed to establish connection to https://libraries.minecraft.net/commons-io/commons-io/2.4/commons-io-2.4.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library de.oceanlabs.mcp:mcp_config:1.20.1-20230612.114412@zip   Downloading library from https://maven.creeperhost.net/de/oceanlabs/mcp/mcp_config/1.20.1-20230612.114412/mcp_config-1.20.1-20230612.114412.zip     Download completed: Checksum validated. Considering library de.siegmar:fastcsv:2.2.2   Downloading library from https://maven.creeperhost.net/de/siegmar/fastcsv/2.2.2/fastcsv-2.2.2.jar     Download completed: Checksum validated. Considering library net.minecraftforge:ForgeAutoRenamingTool:0.1.22:all   Downloading library from https://maven.creeperhost.net/net/minecraftforge/ForgeAutoRenamingTool/0.1.22/ForgeAutoRenamingTool-0.1.22-all.jar     Download completed: Checksum validated. Considering library net.minecraftforge:binarypatcher:1.1.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/binarypatcher/1.1.1/binarypatcher-1.1.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlcore:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/fmlcore/1.20.1-47.3.12/fmlcore-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlearlydisplay:1.20.1-47.3.12   File exists: Checksum validated. Considering library net.minecraftforge:fmlloader:1.20.1-47.3.12   File exists: Checksum validated. Considering library net.minecraftforge:forge:1.20.1-47.3.12:universal   Downloading library from https://maven.creeperhost.net/net/minecraftforge/forge/1.20.1-47.3.12/forge-1.20.1-47.3.12-universal.jar     Download completed: Checksum validated. Considering library net.minecraftforge:installertools:1.4.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/installertools/1.4.1/installertools-1.4.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:jarsplitter:1.1.4   Downloading library from https://maven.creeperhost.net/net/minecraftforge/jarsplitter/1.1.4/jarsplitter-1.1.4.jar     Download completed: Checksum validated. Considering library net.minecraftforge:javafmllanguage:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/javafmllanguage/1.20.1-47.3.12/javafmllanguage-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:lowcodelanguage:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/lowcodelanguage/1.20.1-47.3.12/lowcodelanguage-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:mclanguage:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/mclanguage/1.20.1-47.3.12/mclanguage-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:srgutils:0.4.3   Downloading library from https://maven.creeperhost.net/net/minecraftforge/srgutils/0.4.3/srgutils-0.4.3.jar     Download completed: Checksum validated. Considering library net.minecraftforge:srgutils:0.4.9   Downloading library from https://maven.creeperhost.net/net/minecraftforge/srgutils/0.4.9/srgutils-0.4.9.jar     Download completed: Checksum validated. Considering library net.minecraftforge:srgutils:0.5.6   Downloading library from https://maven.creeperhost.net/net/minecraftforge/srgutils/0.5.6/srgutils-0.5.6.jar     Download completed: Checksum validated. Considering library net.sf.jopt-simple:jopt-simple:5.0.4   Downloading library from https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar Failed to establish connection to https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library net.sf.jopt-simple:jopt-simple:6.0-alpha-3   Downloading library from https://maven.creeperhost.net/net/sf/jopt-simple/jopt-simple/6.0-alpha-3/jopt-simple-6.0-alpha-3.jar     Download completed: Checksum validated. Considering library org.checkerframework:checker-qual:2.0.0   Downloading library from https://maven.creeperhost.net/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.jar     Download completed: Checksum validated. Considering library org.codehaus.mojo:animal-sniffer-annotations:1.14   Downloading library from https://maven.creeperhost.net/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-analysis:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-commons:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-commons:9.6   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-tree:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-tree:9.6   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm/9.2/asm-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm:9.6   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm/9.6/asm-9.6.jar     Download completed: Checksum validated. Considering library trove:trove:1.0.2   Downloading library from https://maven.creeperhost.net/trove/trove/1.0.2/trove-1.0.2.jar     Download completed: Checksum validated. These libraries failed to download. Try again. com.google.code.findbugs:jsr305:3.0.2 com.google.code.gson:gson:2.10.1 commons-io:commons-io:2.4 net.sf.jopt-simple:jopt-simple:5.0.4 There was an error during installation  
    • Maybe some kind of bug with Pixelmon - something with Raids   Report it to the Creators
    • Did you make changes at the paper-global.yml file?   If not, delete this file and restart the server
    • My friends and I are playing a modified version of BMC4 and we're noticing stuff like passive mobs. (I think) like creatures/animals from Alex mobs, naturalist, let's do nature and even vanilla MC (sheep, cow, pigs, chickens, horses, donkeys) don't really spawn in, unlike the sea creatures and hostile monsters spawn in just fine and normal numbers. Here is a mod list from a crash report: https://pastebin.ubuntu.com/p/K9vJxxx6n4/ Just a quick copy and paste of the mod list from an unrelated crash report If anything please let me know if I should post pics of the mods from my mods folder I want to know how to increase their spawn rate/amount and if there are any mods that are causing the scarce appearances of these mobs
  • Topics

×
×
  • Create New...

Important Information

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