Jump to content

BoonieQuafter-CrAfTeR

Members
  • Posts

    337
  • Joined

  • Last visited

Everything posted by BoonieQuafter-CrAfTeR

  1. actually can some one just tell me how to keep track of the items total uses for a player, also in the case of a multiplayer scenario how could I use the nbt to keep track of who the wand belongs to meaning the first player to right click the wand. basically if the wand is in use of another player(not the first player) the wand will render dysfunctional. thank you for your time.
  2. okay, ill do that, but I actually need some more help with this nbt thing, I decided I wanted to make an leveling up system, that aloud the cooldown times to go faster, I want the game to change the cooldowns when the player has used the wand a certain number of times, how should I do this
  3. if(stack.hasTagCompound() == true){ like this? I think it worked
  4. so im making a wand item, as some of you might know, while I was in game about fifteen minutes into testing different properties of my mod I suddenly get this crash report, about adding info on my wand item.. its so weird because ive never had this problem before. Item Class: package com.OlympiansMod.Item; import java.util.List; import com.OlympiansMod.entity.SlownessSpell; import com.OlympiansMod.entity.SpellBombardo; import com.OlympiansMod.entity.SpellChicken; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.EnumAction; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.ChatComponentText; import net.minecraft.util.EnumChatFormatting; import net.minecraft.util.IIcon; import net.minecraft.world.World; public class RandomWand extends Item{ private int Cooldown = 0; public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer player) { if (!world.isRemote) { itemstack.damageItem(1, player); if (itemstack.getTagCompound() == null) { if(itemstack.hasTagCompound() == false){ itemstack.stackTagCompound = new NBTTagCompound(); itemstack.stackTagCompound.setInteger("Spell", 0); } } int spell = itemstack.stackTagCompound.getInteger("Spell"); if (player.isSneaking()) { if (spell == 0) { itemstack.stackTagCompound.setInteger("Spell", 1); player.addChatMessage(new ChatComponentText(EnumChatFormatting.GRAY + "Slowness Spell")); } if(spell == 1){ itemstack.stackTagCompound.setInteger("Spell", 2); player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Explosive Spell")); } if(spell == 2){ itemstack.stackTagCompound.setInteger("Spell", 3); player.addChatMessage(new ChatComponentText(EnumChatFormatting.WHITE + "Chicken Spell")); } if(spell == 3){ itemstack.stackTagCompound.setInteger("Spell", 4); player.addChatMessage(new ChatComponentText(EnumChatFormatting.LIGHT_PURPLE + "Healing Spell")); } if(spell == 4){ itemstack.stackTagCompound.setInteger("Spell", 0); player.addChatMessage(new ChatComponentText(EnumChatFormatting.BOLD + "Wand")); } } if (player.isSneaking()) { }else{ if(Cooldown <= 0 && spell == 1) { player.playSound("fireworks.launch", 1.0f, 1.0f); world.spawnEntityInWorld(new SlownessSpell(world, player)); Cooldown = 50; } else if(player.experienceLevel < 1){ Cooldown = 10; } if(Cooldown <= 0 && spell == 2) { player.playSound("fireworks.launch", 1.0f, 1.0f); world.spawnEntityInWorld(new SpellBombardo(world, player)); player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Bombarda!")); Cooldown = 65; } if(Cooldown <= 0 && spell == 3) { player.playSound("fireworks.launch", 1.0f, 1.0f); world.spawnEntityInWorld(new SpellChicken(world, player)); Cooldown = 50; } if(Cooldown <= 0 && spell == 4) { player.playSound("fireworks.launch", 1.0f, 1.0f); player.heal(3.0f); Cooldown = 100; } } } return itemstack; } public void onUpdate(ItemStack par1ItemStack, World par2World, Entity par3Entity, int par4, boolean par5) { if(Cooldown >=1){ Cooldown--; } else if(Cooldown <= 0){ Cooldown = 0; } } public boolean isFull3D() { return true; } public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean i) { int spell = stack.stackTagCompound.getInteger("Spell"); list.add(EnumChatFormatting.BOLD + "Wand"); list.add(" "); if(spell == 1) { list.add(EnumChatFormatting.GRAY + "Slowness Spell"); } if(spell == 2) { list.add(EnumChatFormatting.RED + "Explosive Spell"); } if(spell == 3) { list.add(EnumChatFormatting.WHITE + "Chicken Spell"); } if(spell == 4) { list.add(EnumChatFormatting.LIGHT_PURPLE + "Healing Spell"); } if(spell == 0) { list.add(EnumChatFormatting.WHITE + " "); } } } Crash report: [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/739, l='LuckyEgg Test', x=-579.46, y=64.00, z=302.44] (at -37, 18 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/740, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/741, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/742, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/743, l='LuckyEgg Test', x=-579.46, y=64.00, z=302.44] (at -37, 18 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/745, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/746, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/747, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/748, l='LuckyEgg Test', x=-564.49, y=62.00, z=285.51] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:38] [server thread/WARN]: Wrong location! EntityChicken['Chicken'/749, l='LuckyEgg Test', x=-568.06, y=66.04, z=287.52] (at -36, 17 instead of -36, 18) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.lang.Exception: Stack trace [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.Thread.dumpStack(Unknown Source) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.Chunk.addEntity(Chunk.java:855) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:499) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor$Task.get(AsynchronousExecutor.java:165) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:341) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:119) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.gen.ChunkProviderServer.provideChunk(ChunkProviderServer.java:221) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.World.getChunkFromChunkCoords(World.java:482) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.func_151350_a(SpawnerAnimals.java:33) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.SpawnerAnimals.findChunksForSpawning(SpawnerAnimals.java:105) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.world.WorldServer.tick(WorldServer.java:169) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:692) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [21:22:38] [server thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [21:22:41] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4723ms behind, skipping 94 tick(s) [21:22:44] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none [21:22:51] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none [21:22:51] [server thread/INFO]: Player10 has just earned the achievement [Taking Inventory] [21:22:51] [Client thread/INFO]: [CHAT] Player10 has just earned the achievement [Taking Inventory] [21:22:54] [server thread/INFO]: [Player10: Set own game mode to Creative Mode] [21:22:54] [Client thread/INFO]: [CHAT] Your game mode has been updated [21:22:56] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none [21:23:06] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none [21:23:09] [server thread/INFO]: Stopping server [21:23:09] [server thread/INFO]: Saving players [21:23:09] [server thread/INFO]: Saving worlds [21:23:09] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/Overworld [21:23:09] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/Nether [21:23:09] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/The End [21:23:11] [server thread/INFO] [FML]: Unloading dimension 0 [21:23:11] [server thread/INFO] [FML]: Unloading dimension -1 [21:23:11] [server thread/INFO] [FML]: Unloading dimension 1 [21:23:11] [server thread/INFO] [FML]: Applying holder lookups [21:23:11] [server thread/INFO] [FML]: Holder lookups applied [21:23:12] [Client thread/FATAL]: Reported exception thrown! net.minecraft.util.ReportedException: Rendering screen at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1168) ~[EntityRenderer.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1057) ~[Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] Caused by: java.lang.NullPointerException at com.OlympiansMod.Item.RandomWand.addInformation(RandomWand.java:121) ~[RandomWand.class:?] at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:641) ~[itemStack.class:?] at net.minecraft.client.gui.GuiScreen.renderToolTip(GuiScreen.java:124) ~[GuiScreen.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.renderToolTip(GuiContainerCreative.java:769) ~[GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:186) ~[GuiContainer.class:?] at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) ~[inventoryEffectRenderer.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) ~[GuiContainerCreative.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) ~[EntityRenderer.class:?] ... 11 more [21:23:12] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Daisy, daisy... Time: 8/14/15 9:23 PM Description: Rendering screen java.lang.NullPointerException: Rendering screen at com.OlympiansMod.Item.RandomWand.addInformation(RandomWand.java:121) at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:641) at net.minecraft.client.gui.GuiScreen.renderToolTip(GuiScreen.java:124) at net.minecraft.client.gui.inventory.GuiContainerCreative.renderToolTip(GuiContainerCreative.java:769) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:186) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1057) at net.minecraft.client.Minecraft.run(Minecraft.java:951) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) at GradleStart.main(GradleStart.java:45) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at com.OlympiansMod.Item.RandomWand.addInformation(RandomWand.java:121) at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:641) at net.minecraft.client.gui.GuiScreen.renderToolTip(GuiScreen.java:124) at net.minecraft.client.gui.inventory.GuiContainerCreative.renderToolTip(GuiContainerCreative.java:769) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:186) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) -- Screen render details -- Details: Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative Mouse location: Scaled: (255, 132). Absolute: (510, 215) Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2 -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityClientPlayerMP['Player10'/459, l='MpServer', x=-569.62, y=67.62, z=283.63]] Chunk stats: MultiplayerChunkCache: 49, 49 Level seed: 0 Level generator: ID 00 - default, ver 1. Features enabled: false Level generator options: Level spawn location: World: (-192,64,222), Chunk: (at 0,4,14 in -12,13; contains blocks -192,0,208 to -177,255,223), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511) Level time: 301070 game time, 11759 day time Level dimension: 0 Level storage version: 0x00000 - Unknown? Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false Forced entities: 328 total; [EntityVillager['Villager'/1536, l='MpServer', x=-594.47, y=66.00, z=265.52], EntityClientPlayerMP['Player10'/459, l='MpServer', x=-569.62, y=67.62, z=283.63], EntityItem['item.tile.dirt.default'/1040, l='MpServer', x=-576.34, y=62.13, z=296.13], EntityChicken['Chicken'/1041, l='MpServer', x=-584.78, y=62.48, z=305.30], EntityItem['item.tile.dirt.default'/1042, l='MpServer', x=-580.47, y=63.13, z=298.88], EntityItem['item.tile.dirt.default'/1043, l='MpServer', x=-578.75, y=62.13, z=297.38], EntityItem['item.tile.dirt.default'/1044, l='MpServer', x=-578.66, y=63.13, z=298.22], EntityItem['item.item.egg'/1045, l='MpServer', x=-581.81, y=62.13, z=303.16], EntityChicken['Chicken'/1046, l='MpServer', x=-578.16, y=62.18, z=305.47], EntityChicken['Chicken'/1047, l='MpServer', x=-578.60, y=63.85, z=299.49], EntityChicken['Chicken'/1048, l='MpServer', x=-581.84, y=61.80, z=296.84], EntityChicken['Chicken'/1049, l='MpServer', x=-581.84, y=62.17, z=296.16], EntityChicken['Chicken'/1050, l='MpServer', x=-570.17, y=64.18, z=302.49], EntityChicken['Chicken'/1571, l='MpServer', x=-623.44, y=71.00, z=268.47], EntitySheep['Sheep'/1060, l='MpServer', x=-530.88, y=79.00, z=257.53], EntityVillager['Villager'/1061, l='MpServer', x=-534.34, y=75.00, z=268.63], EntityCow['Cow'/1062, l='MpServer', x=-543.63, y=75.00, z=276.66], EntityChicken['Chicken'/1063, l='MpServer', x=-538.56, y=74.00, z=279.56], EntityChicken['Chicken'/1064, l='MpServer', x=-537.63, y=73.00, z=277.44], EntityChicken['Chicken'/1066, l='MpServer', x=-549.47, y=72.00, z=274.53], EntityChicken['Chicken'/1067, l='MpServer', x=-551.47, y=75.00, z=273.56], EntityChicken['Chicken'/1070, l='MpServer', x=-538.34, y=77.00, z=260.63], EntityItem['item.item.egg'/1071, l='MpServer', x=-547.28, y=73.13, z=263.88], EntityChicken['Chicken'/1072, l='MpServer', x=-545.44, y=75.00, z=259.56], EntityHorse['Horse'/1073, l='MpServer', x=-544.81, y=72.00, z=271.03], EntitySheep['Sheep'/563, l='MpServer', x=-579.47, y=68.00, z=227.63], EntityVillager['Villager'/564, l='MpServer', x=-571.31, y=70.00, z=226.69], EntityItem['item.item.egg'/566, l='MpServer', x=-571.91, y=69.13, z=270.81], EntityHorse['Horse'/567, l='MpServer', x=-560.28, y=72.05, z=260.51], EntityChicken['Chicken'/568, l='MpServer', x=-571.44, y=71.00, z=256.59], EntityChicken['Chicken'/569, l='MpServer', x=-570.53, y=71.00, z=268.47], EntityItem['item.item.chickenRaw'/570, l='MpServer', x=-579.72, y=62.13, z=284.38], EntityItem['item.item.feather'/571, l='MpServer', x=-584.69, y=61.13, z=286.56], EntityItem['item.item.chickenRaw'/572, l='MpServer', x=-584.88, y=61.13, z=285.34], EntityItem['item.item.egg'/573, l='MpServer', x=-583.13, y=63.13, z=273.03], EntityChicken['Chicken'/1085, l='MpServer', x=-619.44, y=68.00, z=236.56], EntityItem['item.tile.stonebrick'/574, l='MpServer', x=-586.03, y=60.13, z=280.25], EntityChicken['Chicken'/1086, l='MpServer', x=-608.28, y=69.00, z=243.56], EntityChicken['Chicken'/1087, l='MpServer', x=-619.56, y=70.00, z=253.56], EntityItem['item.item.egg'/1088, l='MpServer', x=-547.91, y=71.13, z=302.97], EntityChicken['Chicken'/579, l='MpServer', x=-585.69, y=59.99, z=279.65], EntityChicken['Chicken'/580, l='MpServer', x=-585.19, y=60.00, z=280.91], EntityChicken['Chicken'/581, l='MpServer', x=-585.08, y=59.00, z=279.92], EntityChicken['Chicken'/582, l='MpServer', x=-581.72, y=64.00, z=274.41], EntityItem['item.item.egg'/583, l='MpServer', x=-588.03, y=64.13, z=287.75], EntityChicken['Chicken'/586, l='MpServer', x=-537.56, y=73.00, z=314.59], EntityChicken['Chicken'/587, l='MpServer', x=-541.53, y=79.00, z=311.63], EntityChicken['Chicken'/588, l='MpServer', x=-534.53, y=71.00, z=317.59], EntityItem['item.item.egg'/589, l='MpServer', x=-540.91, y=79.13, z=312.63], EntityItem['item.item.egg'/590, l='MpServer', x=-541.56, y=79.13, z=316.75], EntityChicken['Chicken'/591, l='MpServer', x=-537.31, y=72.00, z=304.47], EntityChicken['Chicken'/593, l='MpServer', x=-559.31, y=69.00, z=332.53], EntityChicken['Chicken'/594, l='MpServer', x=-564.72, y=62.06, z=342.47], EntityChicken['Chicken'/595, l='MpServer', x=-526.59, y=69.00, z=318.59], EntityHorse['Horse'/596, l='MpServer', x=-538.34, y=76.00, z=332.50], EntityVillager['Villager'/598, l='MpServer', x=-555.88, y=71.00, z=309.09], EntityChicken['Chicken'/599, l='MpServer', x=-546.56, y=75.00, z=311.53], EntityChicken['Chicken'/600, l='MpServer', x=-545.38, y=83.00, z=316.56], EntityChicken['Chicken'/604, l='MpServer', x=-614.53, y=69.13, z=335.16], EntityChicken['Chicken'/605, l='MpServer', x=-619.63, y=68.00, z=321.63], EntityChicken['Chicken'/606, l='MpServer', x=-617.31, y=68.00, z=322.69], EntityChicken['Chicken'/607, l='MpServer', x=-621.44, y=70.00, z=328.94], EntitySheep['Sheep'/608, l='MpServer', x=-622.13, y=69.00, z=323.78], EntityItem['item.item.egg'/609, l='MpServer', x=-617.69, y=68.13, z=324.41], EntityItem['item.item.egg'/610, l='MpServer', x=-613.97, y=68.13, z=324.28], EntityItem['item.item.egg'/611, l='MpServer', x=-608.06, y=69.13, z=331.88], EntityVillager['Villager'/612, l='MpServer', x=-617.28, y=70.00, z=329.75], EntityVillager['Villager'/613, l='MpServer', x=-617.97, y=68.00, z=321.53], EntityChicken['Chicken'/614, l='MpServer', x=-623.53, y=71.00, z=333.53], EntityChicken['Chicken'/615, l='MpServer', x=-609.53, y=67.00, z=326.66], EntityChicken['Chicken'/616, l='MpServer', x=-614.53, y=70.00, z=330.53], EntityChicken['Chicken'/617, l='MpServer', x=-611.44, y=66.00, z=320.53], EntityItem['item.tile.dirt.default'/734, l='MpServer', x=-575.84, y=61.13, z=296.88], EntityHorse['Horse'/735, l='MpServer', x=-568.53, y=63.82, z=301.28], EntityIronGolem['Iron Golem'/736, l='MpServer', x=-573.00, y=67.00, z=295.59], EntityChicken['Chicken'/737, l='MpServer', x=-584.41, y=64.00, z=303.41], EntityChicken['Chicken'/738, l='MpServer', x=-578.31, y=64.00, z=301.84], EntityChicken['Chicken'/739, l='MpServer', x=-585.84, y=63.30, z=308.14], EntityChicken['Chicken'/740, l='MpServer', x=-559.35, y=61.38, z=286.82], EntityChicken['Chicken'/741, l='MpServer', x=-557.41, y=65.00, z=276.66], EntityChicken['Chicken'/742, l='MpServer', x=-563.16, y=63.80, z=285.41], EntityChicken['Chicken'/743, l='MpServer', x=-579.81, y=64.00, z=302.13], EntityChicken['Chicken'/744, l='MpServer', x=-570.53, y=66.00, z=287.44], EntityChicken['Chicken'/745, l='MpServer', x=-569.46, y=66.03, z=282.43], EntityChicken['Chicken'/746, l='MpServer', x=-578.38, y=64.00, z=279.63], EntityChicken['Chicken'/747, l='MpServer', x=-554.34, y=66.00, z=288.63], EntityChicken['Chicken'/748, l='MpServer', x=-560.53, y=64.00, z=277.47], EntityChicken['Chicken'/749, l='MpServer', x=-567.78, y=65.00, z=287.53], EntityItem['item.item.egg'/750, l='MpServer', x=-569.44, y=62.13, z=317.06], EntityItem['item.tile.dirt.default'/751, l='MpServer', x=-565.13, y=63.13, z=314.03], EntityItem['item.tile.dirt.default'/752, l='MpServer', x=-568.69, y=63.13, z=314.59], EntityItem['item.tile.dirt.default'/753, l='MpServer', x=-569.06, y=63.13, z=311.75], EntityItem['item.tile.dirt.default'/754, l='MpServer', x=-565.13, y=63.13, z=313.13], EntityItem['item.tile.dirt.default'/755, l='MpServer', x=-566.13, y=63.13, z=312.75], EntityItem['item.tile.log.oak'/756, l='MpServer', x=-565.88, y=63.13, z=313.94], EntityItem['item.tile.log.oak'/757, l='MpServer', x=-567.47, y=63.13, z=313.72], EntityItem['item.tile.dirt.default'/758, l='MpServer', x=-567.13, y=63.13, z=307.16], EntityItem['item.tile.dirt.default'/759, l='MpServer', x=-568.72, y=63.13, z=308.47], EntityItem['item.item.feather'/760, l='MpServer', x=-568.97, y=62.13, z=316.63], EntityItem['item.item.chickenRaw'/761, l='MpServer', x=-568.88, y=63.13, z=314.84], EntityItem['item.tile.dirt.default'/762, l='MpServer', x=-567.22, y=62.13, z=317.88], EntityItem['item.tile.dirt.default'/763, l='MpServer', x=-568.19, y=62.13, z=317.09], EntityItem['item.tile.dirt.default'/764, l='MpServer', x=-566.50, y=62.13, z=315.75], EntityItem['item.tile.dirt.default'/765, l='MpServer', x=-568.81, y=62.13, z=315.47], EntityItem['item.tile.dirt.default'/766, l='MpServer', x=-567.88, y=62.13, z=314.75], EntityItem['item.tile.dirt.default'/767, l='MpServer', x=-565.72, y=62.13, z=316.47], EntityItem['item.tile.dirt.default'/768, l='MpServer', x=-565.69, y=63.13, z=318.88], EntityItem['item.tile.dirt.default'/769, l='MpServer', x=-565.59, y=63.13, z=314.91], EntityItem['item.tile.dirt.default'/770, l='MpServer', x=-566.91, y=63.13, z=318.28], EntityItem['item.tile.dirt.default'/771, l='MpServer', x=-568.13, y=63.13, z=318.63], EntityItem['item.item.feather'/772, l='MpServer', x=-566.25, y=62.13, z=316.22], EntityChicken['Chicken'/773, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/774, l='MpServer', x=-566.13, y=63.00, z=318.13], EntityChicken['Chicken'/775, l='MpServer', x=-566.03, y=62.00, z=317.22], EntityItem['item.item.chickenRaw'/776, l='MpServer', x=-568.38, y=63.13, z=312.75], EntityChicken['Chicken'/777, l='MpServer', x=-565.34, y=63.00, z=318.44], EntityItem['item.tile.dirt.default'/778, l='MpServer', x=-566.16, y=64.13, z=310.13], EntityItem['item.tile.dirt.default'/779, l='MpServer', x=-566.13, y=64.13, z=312.09], EntityItem['item.tile.dirt.default'/780, l='MpServer', x=-567.47, y=64.13, z=311.63], EntityItem['item.tile.dirt.default'/781, l='MpServer', x=-567.78, y=64.13, z=310.84], EntityItem['item.item.feather'/782, l='MpServer', x=-568.53, y=64.13, z=310.44], EntityItem['item.item.chickenRaw'/783, l='MpServer', x=-566.19, y=64.13, z=308.16], EntityItem['item.tile.dirt.default'/784, l='MpServer', x=-567.88, y=64.13, z=306.13], EntityItem['item.tile.dirt.default'/785, l='MpServer', x=-566.81, y=64.13, z=308.84], EntityItem['item.tile.dirt.default'/786, l='MpServer', x=-569.41, y=64.13, z=307.06], EntityItem['item.tile.dirt.default'/787, l='MpServer', x=-566.88, y=64.13, z=306.13], EntityItem['item.tile.dirt.default'/788, l='MpServer', x=-568.03, y=64.13, z=309.16], EntityItem['item.tile.dirt.default'/789, l='MpServer', x=-565.69, y=64.13, z=307.63], EntityItem['item.tile.dirt.default'/790, l='MpServer', x=-566.72, y=64.13, z=319.22], EntityItem['item.tile.dirt.default'/791, l='MpServer', x=-564.75, y=64.13, z=318.34], EntityItem['item.item.chickenRaw'/792, l='MpServer', x=-564.13, y=64.13, z=314.59], EntityChicken['Chicken'/793, l='MpServer', x=-565.81, y=62.00, z=315.63], EntityChicken['Chicken'/794, l='MpServer', x=-567.59, y=67.00, z=320.38], EntityChicken['Chicken'/795, l='MpServer', x=-565.16, y=62.00, z=315.53], EntityChicken['Chicken'/796, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityItem['item.item.feather'/797, l='MpServer', x=-564.13, y=68.13, z=318.19], EntityChicken['Chicken'/798, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/799, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/800, l='MpServer', x=-564.31, y=63.00, z=317.47], EntityChicken['Chicken'/801, l='MpServer', x=-564.75, y=62.00, z=316.69], EntityChicken['Chicken'/802, l='MpServer', x=-583.16, y=62.39, z=312.66], EntityChicken['Chicken'/803, l='MpServer', x=-583.47, y=62.21, z=313.84], EntityChicken['Chicken'/804, l='MpServer', x=-586.81, y=62.52, z=313.84], EntityChicken['Chicken'/805, l='MpServer', x=-587.47, y=62.03, z=312.84], EntityChicken['Chicken'/806, l='MpServer', x=-586.84, y=62.25, z=312.91], EntityItem['item.item.egg'/807, l='MpServer', x=-585.88, y=62.13, z=307.81], EntityItem['item.item.egg'/808, l='MpServer', x=-587.88, y=62.13, z=312.50], EntityItem['item.item.egg'/809, l='MpServer', x=-583.63, y=62.13, z=312.78], EntityItem['item.item.egg'/810, l='MpServer', x=-583.13, y=62.13, z=313.88], EntityChicken['Chicken'/811, l='MpServer', x=-601.44, y=62.49, z=315.41], EntityCow['Cow'/812, l='MpServer', x=-590.31, y=64.00, z=314.53], EntityItem['item.item.egg'/813, l='MpServer', x=-618.28, y=72.13, z=268.69], EntityItem['item.item.egg'/815, l='MpServer', x=-621.13, y=71.13, z=268.19], EntityItem['item.item.egg'/816, l='MpServer', x=-618.88, y=71.13, z=262.72], EntityItem['item.item.egg'/817, l='MpServer', x=-608.88, y=70.13, z=259.19], EntityChicken['Chicken'/818, l='MpServer', x=-611.44, y=70.00, z=266.59], EntityChicken['Chicken'/819, l='MpServer', x=-623.34, y=68.00, z=270.47], EntityHorse['Horse'/820, l='MpServer', x=-618.59, y=63.00, z=283.72], EntityChicken['Chicken'/821, l='MpServer', x=-621.63, y=64.00, z=276.72], EntityItem['item.item.egg'/822, l='MpServer', x=-621.59, y=64.13, z=274.13], EntityChicken['Chicken'/823, l='MpServer', x=-621.41, y=64.00, z=277.28], EntityChicken['Chicken'/824, l='MpServer', x=-628.44, y=61.06, z=274.53], EntityChicken['Chicken'/825, l='MpServer', x=-629.56, y=62.24, z=283.53], EntityChicken['Chicken'/826, l='MpServer', x=-621.47, y=64.00, z=275.97], EntitySheep['Sheep'/847, l='MpServer', x=-583.16, y=69.00, z=232.16], EntityMooshroom['Mooshroom'/851, l='MpServer', x=-517.06, y=69.00, z=313.03], EntityPig['Pig'/852, l='MpServer', x=-516.03, y=69.00, z=310.47], EntityIronGolem['Iron Golem'/853, l='MpServer', x=-513.06, y=68.00, z=319.94], EntityCreeper['Creeper'/855, l='MpServer', x=-520.00, y=30.00, z=334.44], EntityIronGolem['Iron Golem'/856, l='MpServer', x=-513.28, y=66.00, z=329.41], EntityItem['item.item.egg'/862, l='MpServer', x=-541.13, y=78.13, z=288.06], EntityChicken['Chicken'/892, l='MpServer', x=-579.28, y=62.40, z=325.31], EntityChicken['Chicken'/893, l='MpServer', x=-588.47, y=61.65, z=329.44], EntityChicken['Chicken'/894, l='MpServer', x=-580.63, y=62.35, z=328.66], EntityChicken['Chicken'/895, l='MpServer', x=-580.44, y=66.06, z=342.41], EntityChicken['Chicken'/896, l='MpServer', x=-587.41, y=62.38, z=332.41], EntityChicken['Chicken'/897, l='MpServer', x=-584.09, y=63.00, z=334.84], EntityChicken['Chicken'/898, l='MpServer', x=-585.09, y=62.49, z=321.97], EntityChicken['Chicken'/899, l='MpServer', x=-581.41, y=62.19, z=324.75], EntityItem['item.item.egg'/900, l='MpServer', x=-580.84, y=59.13, z=328.78], EntityItem['item.item.egg'/901, l='MpServer', x=-579.41, y=59.13, z=324.81], EntityItem['item.item.egg'/902, l='MpServer', x=-582.09, y=61.13, z=333.13], EntityItem['item.item.egg'/903, l='MpServer', x=-576.13, y=60.13, z=330.06], EntityItem['item.item.egg'/904, l='MpServer', x=-587.47, y=60.13, z=330.25], EntityChicken['Chicken'/905, l='MpServer', x=-586.94, y=63.00, z=333.84], EntityItem['item.item.egg'/906, l='MpServer', x=-580.28, y=59.13, z=324.59], EntityChicken['Chicken'/907, l='MpServer', x=-579.56, y=62.34, z=322.56], EntityChicken['Chicken'/908, l='MpServer', x=-576.38, y=61.75, z=335.56], EntityChicken['Chicken'/909, l='MpServer', x=-574.56, y=62.23, z=324.56], EntityCow['Cow'/910, l='MpServer', x=-589.69, y=63.00, z=319.47], EntityChicken['Chicken'/911, l='MpServer', x=-576.34, y=61.76, z=333.81], EntityChicken['Chicken'/912, l='MpServer', x=-579.15, y=61.00, z=317.15], EntityChicken['Chicken'/913, l='MpServer', x=-589.56, y=67.00, z=335.53], EntityChicken['Chicken'/914, l='MpServer', x=-583.94, y=65.00, z=335.03], EntityItem['item.item.egg'/915, l='MpServer', x=-591.09, y=64.13, z=332.41], EntityChicken['Chicken'/916, l='MpServer', x=-590.41, y=67.00, z=335.38], EntityChicken['Chicken'/917, l='MpServer', x=-575.41, y=62.36, z=322.22], EntityChicken['Chicken'/918, l='MpServer', x=-571.16, y=62.50, z=332.53], EntityChicken['Chicken'/919, l='MpServer', x=-582.47, y=62.39, z=331.63], EntityItem['item.item.egg'/920, l='MpServer', x=-574.34, y=62.13, z=322.16], EntityItem['item.item.egg'/921, l='MpServer', x=-571.13, y=62.13, z=331.63], EntityHorse['Horse'/1433, l='MpServer', x=-544.97, y=72.00, z=243.34], EntityChicken['Chicken'/922, l='MpServer', x=-571.16, y=62.40, z=330.44], EntityChicken['Chicken'/1434, l='MpServer', x=-559.47, y=74.00, z=246.31], EntityChicken['Chicken'/923, l='MpServer', x=-570.34, y=63.00, z=310.53], EntityChicken['Chicken'/1435, l='MpServer', x=-542.56, y=73.00, z=249.56], EntityChicken['Chicken'/924, l='MpServer', x=-571.88, y=62.34, z=326.41], EntitySheep['Sheep'/1436, l='MpServer', x=-544.91, y=75.00, z=245.53], EntityChicken['Chicken'/925, l='MpServer', x=-571.16, y=62.36, z=333.53], EntityChicken['Chicken'/926, l='MpServer', x=-568.53, y=67.00, z=333.16], EntityChicken['Chicken'/927, l='MpServer', x=-568.53, y=67.00, z=333.78], EntityChicken['Chicken'/928, l='MpServer', x=-570.38, y=65.00, z=328.59], EntitySheep['Sheep'/929, l='MpServer', x=-547.91, y=71.00, z=237.03], EntityChicken['Chicken'/930, l='MpServer', x=-544.47, y=71.00, z=232.56], EntityChicken['Chicken'/1449, l='MpServer', x=-543.44, y=76.00, z=251.88], EntityItem['item.item.egg'/1450, l='MpServer', x=-543.88, y=71.13, z=241.16], EntityCow['Cow'/1451, l='MpServer', x=-541.56, y=79.00, z=253.25], EntityChicken['Chicken'/1452, l='MpServer', x=-547.59, y=81.00, z=247.34], EntityItem['item.tile.dirt.default'/945, l='MpServer', x=-598.13, y=63.13, z=301.81], EntityItem['item.tile.dirt.default'/946, l='MpServer', x=-600.06, y=63.13, z=301.34], EntityChicken['Chicken'/947, l='MpServer', x=-606.94, y=63.00, z=293.06], EntityChicken['Chicken'/948, l='MpServer', x=-604.56, y=64.00, z=290.47], EntityChicken['Chicken'/949, l='MpServer', x=-598.88, y=64.00, z=292.91], EntityChicken['Chicken'/950, l='MpServer', x=-593.16, y=63.26, z=316.16], EntityChicken['Chicken'/951, l='MpServer', x=-593.16, y=62.56, z=316.91], EntityChicken['Chicken'/952, l='MpServer', x=-604.44, y=62.49, z=305.56], EntityItem['item.item.egg'/953, l='MpServer', x=-600.97, y=58.13, z=315.53], EntityItem['item.item.egg'/954, l='MpServer', x=-593.13, y=62.13, z=315.38], EntityVillager['Villager'/955, l='MpServer', x=-593.30, y=62.04, z=315.31], EntityChicken['Chicken'/956, l='MpServer', x=-595.53, y=64.00, z=305.47], EntityItem['item.item.egg'/957, l='MpServer', x=-609.63, y=61.13, z=308.34], EntityItem['item.item.egg'/958, l='MpServer', x=-623.00, y=63.13, z=306.84], EntityItem['item.item.egg'/959, l='MpServer', x=-609.88, y=62.13, z=310.88], EntityItem['item.tile.dirt.default'/960, l='MpServer', x=-614.34, y=63.13, z=310.13], EntityItem['item.tile.dirt.default'/961, l='MpServer', x=-615.31, y=63.13, z=308.69], EntityItem['item.tile.dirt.default'/962, l='MpServer', x=-616.91, y=63.13, z=310.34], EntityItem['item.tile.dirt.default'/963, l='MpServer', x=-617.88, y=63.13, z=308.59], EntityItem['item.tile.dirt.default'/964, l='MpServer', x=-614.72, y=63.13, z=311.88], EntityItem['item.tile.dirt.default'/965, l='MpServer', x=-616.69, y=63.13, z=307.56], EntityItem['item.item.egg'/1477, l='MpServer', x=-594.13, y=64.13, z=268.84], EntityItem['item.item.seeds'/966, l='MpServer', x=-613.38, y=63.13, z=310.84], EntityItem['item.tile.flower1.dandelion'/967, l='MpServer', x=-617.09, y=63.13, z=309.34], EntityChicken['Chicken'/968, l='MpServer', x=-623.47, y=63.40, z=311.44], EntityVillager['Villager'/969, l='MpServer', x=-616.69, y=63.00, z=311.69], EntityChicken['Chicken'/970, l='MpServer', x=-615.97, y=63.00, z=310.97], EntityItem['item.item.egg'/971, l='MpServer', x=-623.91, y=63.13, z=314.88], EntityVillager['Villager'/972, l='MpServer', x=-615.84, y=63.00, z=304.47], EntityChicken['Chicken'/460, l='MpServer', x=-552.85, y=66.03, z=290.47], EntityChicken['Chicken'/973, l='MpServer', x=-620.41, y=64.00, z=317.25], EntityHorse['Horse'/461, l='MpServer', x=-576.09, y=65.00, z=283.00], EntityChicken['Chicken'/974, l='MpServer', x=-609.56, y=64.00, z=315.59], EntityChicken['Chicken'/462, l='MpServer', x=-571.81, y=66.00, z=276.47], EntityItem['item.item.egg'/975, l='MpServer', x=-613.88, y=66.13, z=319.22], EntityChicken['Chicken'/463, l='MpServer', x=-580.38, y=62.37, z=288.41], EntityItem['item.item.egg'/976, l='MpServer', x=-618.63, y=64.13, z=305.84], EntityChicken['Chicken'/465, l='MpServer', x=-611.53, y=69.00, z=236.59], EntityItem['item.item.egg'/977, l='MpServer', x=-617.66, y=64.13, z=316.28], EntityItem['item.tile.dirt.default'/978, l='MpServer', x=-620.25, y=65.13, z=315.09], EntityItem['item.tile.flower1.dandelion'/979, l='MpServer', x=-619.16, y=64.13, z=314.44], EntityItem['item.tile.dirt.default'/980, l='MpServer', x=-620.03, y=65.13, z=318.88], EntitySheep['Sheep'/1492, l='MpServer', x=-594.19, y=67.00, z=240.91], EntityItem['item.item.seeds'/981, l='MpServer', x=-618.34, y=66.13, z=318.03], EntityVillager['Villager'/1493, l='MpServer', x=-600.47, y=67.00, z=241.97], EntityItem['item.tile.dirt.default'/982, l='MpServer', x=-622.28, y=65.13, z=317.41], EntityItem['item.item.egg'/1494, l='MpServer', x=-606.50, y=69.13, z=245.06], EntityItem['item.tile.dirt.default'/983, l='MpServer', x=-620.50, y=64.13, z=317.50], EntityChicken['Chicken'/1495, l='MpServer', x=-597.53, y=69.00, z=252.53], EntityChicken['Chicken'/472, l='MpServer', x=-593.56, y=62.21, z=325.56], EntityItem['item.tile.dirt.default'/984, l='MpServer', x=-621.03, y=65.13, z=316.28], EntityChicken['Chicken'/1496, l='MpServer', x=-603.56, y=68.00, z=247.56], EntityItem['item.item.egg'/473, l='MpServer', x=-593.13, y=63.13, z=330.00], EntityItem['item.tile.dirt.default'/985, l='MpServer', x=-621.81, y=65.13, z=318.88], EntityChicken['Chicken'/1497, l='MpServer', x=-601.06, y=69.00, z=252.16], EntityChicken['Chicken'/474, l='MpServer', x=-597.56, y=61.54, z=321.56], EntityItem['item.tile.dirt.default'/986, l='MpServer', x=-620.81, y=65.13, z=318.88], EntityChicken['Chicken'/1498, l='MpServer', x=-598.34, y=68.00, z=256.44], EntityChicken['Chicken'/475, l='MpServer', x=-588.47, y=64.00, z=317.53], EntityItem['item.tile.dirt.default'/987, l='MpServer', x=-620.84, y=64.13, z=316.13], EntityChicken['Chicken'/1499, l='MpServer', x=-601.84, y=69.00, z=253.38], EntityChicken['Chicken'/476, l='MpServer', x=-599.72, y=62.15, z=323.56], EntityItem['item.tile.doublePlant.sunflower'/988, l='MpServer', x=-617.22, y=64.13, z=311.69], EntityChicken['Chicken'/1500, l='MpServer', x=-595.59, y=69.00, z=235.44], EntityChicken['Chicken'/477, l='MpServer', x=-601.59, y=63.00, z=326.34], EntityItem['item.tile.doublePlant.sunflower'/989, l='MpServer', x=-618.41, y=64.13, z=309.53], EntityChicken['Chicken'/1501, l='MpServer', x=-607.81, y=69.00, z=244.31], EntityChicken['Chicken'/478, l='MpServer', x=-604.84, y=65.00, z=327.84], EntityItem['item.item.leather'/990, l='MpServer', x=-614.81, y=64.13, z=316.13], EntityItem['item.item.egg'/479, l='MpServer', x=-605.66, y=69.13, z=331.66], EntityItem['item.item.beefRaw'/991, l='MpServer', x=-614.47, y=64.13, z=315.59], EntityChicken['Chicken'/480, l='MpServer', x=-592.47, y=68.00, z=335.69], EntityItem['item.tile.doublePlant.sunflower'/992, l='MpServer', x=-618.41, y=66.13, z=316.78], EntityChicken['Chicken'/481, l='MpServer', x=-592.53, y=64.00, z=331.53], EntityItem['item.tile.dirt.default'/993, l='MpServer', x=-617.88, y=64.13, z=315.31], EntityItem['item.tile.dirt.default'/994, l='MpServer', x=-616.06, y=64.13, z=315.22], EntityChicken['Chicken'/482, l='MpServer', x=-602.56, y=68.00, z=331.56], EntityItem['item.tile.dirt.default'/995, l='MpServer', x=-617.16, y=64.13, z=314.13], EntityItem['item.tile.dirt.default'/996, l='MpServer', x=-617.28, y=64.13, z=316.22], EntityChicken['Chicken'/484, l='MpServer', x=-597.47, y=65.00, z=331.34], EntityItem['item.tile.dirt.default'/997, l='MpServer', x=-615.16, y=65.13, z=317.09], EntityItem['item.tile.dirt.default'/998, l='MpServer', x=-614.75, y=64.13, z=316.31], EntityItem['item.tile.dirt.default'/999, l='MpServer', x=-616.38, y=64.13, z=316.22], EntityItem['item.tile.dirt.default'/1000, l='MpServer', x=-616.19, y=64.13, z=313.59], EntityVillager['Villager'/1001, l='MpServer', x=-621.28, y=64.00, z=317.31], EntityVillager['Villager'/1002, l='MpServer', x=-610.50, y=64.00, z=312.06], EntityChicken['Chicken'/1003, l='MpServer', x=-619.56, y=64.00, z=309.56], EntityItem['item.item.egg'/1005, l='MpServer', x=-620.50, y=60.13, z=293.00], EntityItem['item.item.egg'/1006, l='MpServer', x=-618.69, y=60.13, z=295.06], EntityItem['item.item.egg'/1007, l='MpServer', x=-621.09, y=60.13, z=291.31], EntityItem['item.item.egg'/1008, l='MpServer', x=-610.03, y=63.13, z=289.97], EntityItem['item.item.egg'/1009, l='MpServer', x=-622.56, y=61.13, z=291.59], EntityChicken['Chicken'/1010, l='MpServer', x=-627.47, y=60.15, z=291.53], EntityChicken['Chicken'/1011, l='MpServer', x=-612.34, y=62.37, z=297.53], EntityChicken['Chicken'/1012, l='MpServer', x=-620.56, y=62.18, z=291.59], EntityChicken['Chicken'/1013, l='MpServer', x=-613.59, y=63.00, z=288.66], EntityItem['item.item.egg'/1014, l='MpServer', x=-611.13, y=62.13, z=289.88], EntityChicken['Chicken'/1015, l='MpServer', x=-611.91, y=62.47, z=291.94], EntityChicken['Chicken'/1527, l='MpServer', x=-576.41, y=69.00, z=253.66], EntityChicken['Chicken'/1016, l='MpServer', x=-611.91, y=62.40, z=290.78], EntityChicken['Chicken'/1017, l='MpServer', x=-612.19, y=62.49, z=289.16], EntityChicken['Chicken'/1018, l='MpServer', x=-612.34, y=62.37, z=291.44], EntityChicken['Chicken'/1019, l='MpServer', x=-614.34, y=62.43, z=298.53], EntityChicken['Chicken'/1020, l='MpServer', x=-621.56, y=64.00, z=300.38], EntityChicken['Chicken'/1021, l='MpServer', x=-617.31, y=62.47, z=291.44], EntityItem['item.item.egg'/1533, l='MpServer', x=-580.13, y=69.13, z=241.31], EntityChicken['Chicken'/1022, l='MpServer', x=-628.41, y=61.06, z=305.53], EntityMooshroom['Mooshroom'/1534, l='MpServer', x=-587.75, y=68.00, z=248.69], EntityChicken['Chicken'/1023, l='MpServer', x=-622.34, y=62.37, z=293.47], EntityMooshroom['Mooshroom'/1535, l='MpServer', x=-589.75, y=64.00, z=256.53]] Retry entities: 0 total; [] Server brand: fml,forge Server type: Integrated singleplayer server Stacktrace: at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415) at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2556) at net.minecraft.client.Minecraft.run(Minecraft.java:972) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) at GradleStart.main(GradleStart.java:45) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 8.1 (amd64) version 6.3 Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 647071336 bytes (617 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94 FML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available theolympiansmod{0.1} [The Olympians Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: AMD Radeon HD 8400 GL version 4.3.12804 Compatibility Profile Context 13.352.1004.1007, ATI Technologies Inc. GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) [21:23:12] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Boone.mcfuzz\Desktop\Olympians Mod\eclipse\.\crash-reports\crash-2015-08-14_21.23.12-client.txt AL lib: (EE) alc_cleanup: 1 device not closed Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release java seems to be having a problem with this line of code, and im not sure why: int spell = stack.stackTagCompound.getInteger("Spell"); anyway thank you for your time.
  5. a better question would be, how do you get the remaining ticks on an item?
  6. im using this method, and I came across the issue of knowing what one of the integers defines as(What the actual code for it is): Override @SideOnly(Side.CLIENT) public IIcon getIcon(ItemStack stack, int renderPass, EntityPlayer player, ItemStack usingItem, int useRemaining) { The int useRemaining , is confusing me because you can use it in a line of code like this: int ticksInUse = stack.getMaxItemUseDuration() - useRemaining; I found this method on the internet for my icons, and im wondering what that integer means in the method, what it defines to, I have already looked through the entire Item class looking for it or other methods used with it. I mean what is the integers actual vaule? thank you for your time.
  7. when you say "Containing the cooldown time in ticks" im not sure how to get the ticks, were do I even get these ticks from exactly, if I know that, I can figure out the rest (pretty sure anyway).
  8. it doesn't seem like this would work, wouldn't you have to just use the nbt to spawn in the entity if it has been one tick since the last use, meaning im not sure how to do this with an onUpdate method as ive tried to use the nbt with it before and I was unable to make it work properly, plus how would you call if the player is using the item at the invalid time(before the timer is done). I don't know how to do this.
  9. im okay with that because I got it to work , any way, how would I set a cooldown on an item and some of the ways to do this, because being able to spam the wand seems to op.
  10. oh I should mention that I get this crash report with my current code package com.OlympiansMod.Item; import com.OlympiansMod.entity.SlownessSpell; import com.OlympiansMod.entity.SpellBombardo; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.world.World; public class RandomWand extends Item{ public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ){ if (stack.getTagCompound() == null) { stack.stackTagCompound = new NBTTagCompound(); stack.stackTagCompound.setInteger("Spell", 0); } return true; } public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer player) { int spell = itemstack.stackTagCompound.getInteger("Spell"); if (!world.isRemote) { if (spell == 1) { world.spawnEntityInWorld(new SlownessSpell(world, player)); } if (player.isSneaking()) { if (spell == 0) { itemstack.stackTagCompound.setInteger("Spell", 1); } } } return itemstack; } } Crash Report: at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/UndeadGreekArcher.png java.io.FileNotFoundException: theolympiansmod:textures/items/UndeadGreekArcher.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/CBLegg.png java.io.FileNotFoundException: theolympiansmod:textures/items/CBLegg.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/FireEssence.png java.io.FileNotFoundException: theolympiansmod:textures/items/FireEssence.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ApolloBow_standby.png java.io.FileNotFoundException: theolympiansmod:textures/items/ApolloBow_standby.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/IceShard.png java.io.FileNotFoundException: theolympiansmod:textures/items/IceShard.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/CBronzeHoe.png java.io.FileNotFoundException: theolympiansmod:textures/items/CBronzeHoe.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ArachneSpawn.png java.io.FileNotFoundException: theolympiansmod:textures/items/ArachneSpawn.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ZeusPants.png java.io.FileNotFoundException: theolympiansmod:textures/items/ZeusPants.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/DnaInfuser.png java.io.FileNotFoundException: theolympiansmod:textures/items/DnaInfuser.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ZeusShirt.png java.io.FileNotFoundException: theolympiansmod:textures/items/ZeusShirt.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/IGoldHoe.png java.io.FileNotFoundException: theolympiansmod:textures/items/IGoldHoe.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/PoplarWoodStick.png java.io.FileNotFoundException: theolympiansmod:textures/items/PoplarWoodStick.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/DiocletianSpawn.png java.io.FileNotFoundException: theolympiansmod:textures/items/DiocletianSpawn.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/SpawnCloud.png java.io.FileNotFoundException: theolympiansmod:textures/items/SpawnCloud.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/SIronPick.png java.io.FileNotFoundException: theolympiansmod:textures/items/SIronPick.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/GreekWarChestplate.png java.io.FileNotFoundException: theolympiansmod:textures/items/GreekWarChestplate.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/GreekWarLeggings.png java.io.FileNotFoundException: theolympiansmod:textures/items/GreekWarLeggings.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ZeusShoes.png java.io.FileNotFoundException: theolympiansmod:textures/items/ZeusShoes.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/CellSpawn.png java.io.FileNotFoundException: theolympiansmod:textures/items/CellSpawn.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/DnaPosideonInfused.png java.io.FileNotFoundException: theolympiansmod:textures/items/DnaPosideonInfused.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/SIronHoe.png java.io.FileNotFoundException: theolympiansmod:textures/items/SIronHoe.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/CBBoot.png java.io.FileNotFoundException: theolympiansmod:textures/items/CBBoot.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/CBChest.png java.io.FileNotFoundException: theolympiansmod:textures/items/CBChest.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/CBHelm.png java.io.FileNotFoundException: theolympiansmod:textures/items/CBHelm.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ApolloBow_pulling_0.png java.io.FileNotFoundException: theolympiansmod:textures/items/ApolloBow_pulling_0.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ApolloBow_pulling_2.png java.io.FileNotFoundException: theolympiansmod:textures/items/ApolloBow_pulling_2.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/ApolloBow_pulling_1.png java.io.FileNotFoundException: theolympiansmod:textures/items/ApolloBow_pulling_1.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/CBronzeAxe.png java.io.FileNotFoundException: theolympiansmod:textures/items/CBronzeAxe.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/ERROR]: Using missing texture, unable to load theolympiansmod:textures/items/HermesFlyingSandals.png java.io.FileNotFoundException: theolympiansmod:textures/items/HermesFlyingSandals.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [12:05:27] [Client thread/INFO]: Created: 512x512 textures/items-atlas [12:05:27] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [12:05:27] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [12:05:28] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [12:05:28] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [12:05:28] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [12:05:28] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [12:05:28] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [12:05:28] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [12:05:28] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [12:05:28] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [12:05:28] [sound Library Loader/INFO]: Sound engine started [12:06:02] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [12:06:02] [server thread/INFO]: Generating keypair [12:06:03] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [12:06:03] [server thread/INFO] [FML]: Applying holder lookups [12:06:03] [server thread/INFO] [FML]: Holder lookups applied [12:06:03] [server thread/INFO] [FML]: Loading dimension 0 (LuckyEgg Test) (net.minecraft.server.integrated.IntegratedServer@760a1364) [12:06:03] [server thread/INFO] [FML]: Loading dimension 1 (LuckyEgg Test) (net.minecraft.server.integrated.IntegratedServer@760a1364) [12:06:03] [server thread/INFO] [FML]: Loading dimension -1 (LuckyEgg Test) (net.minecraft.server.integrated.IntegratedServer@760a1364) [12:06:03] [server thread/INFO]: Preparing start region for level 0 [12:06:04] [server thread/INFO]: Preparing spawn area: 7% [12:06:05] [server thread/INFO]: Preparing spawn area: 91% [12:06:06] [server thread/INFO]: Changing view distance to 3, from 10 [12:06:07] [Netty Client IO #0/INFO] [FML]: Server protocol version 1 [12:06:07] [Netty IO #1/INFO] [FML]: Client protocol version 1 [12:06:07] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [12:06:07] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [12:06:07] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [12:06:07] [server thread/INFO] [FML]: [server thread] Server side modded connection established [12:06:07] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [12:06:07] [server thread/INFO]: Player866[local:E:04239f93] logged in with entity id 555 at (-363.0757403012705, 76.80616099571598, 432.5400311049383) [12:06:07] [server thread/INFO]: Player866 joined the game [12:06:09] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3306ms behind, skipping 66 tick(s) [12:07:01] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none [12:07:04] [Client thread/INFO]: Warning: Clientside chunk ticking took 416 ms [12:07:09] [Client thread/WARN]: Unable to play unknown soundEvent: minecraft:none [12:07:38] [server thread/INFO]: [Player866: Set own game mode to Survival Mode] [12:07:38] [Client thread/INFO]: [CHAT] Your game mode has been updated [12:07:46] [server thread/ERROR]: Encountered an unexpected exception net.minecraft.util.ReportedException: Ticking memory connection at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:198) ~[NetworkSystem.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726) ~[MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) ~[integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [MinecraftServer.class:?] at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [MinecraftServer$2.class:?] Caused by: java.lang.NullPointerException at com.OlympiansMod.Item.RandomWand.onItemRightClick(RandomWand.java:26) ~[RandomWand.class:?] at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:164) ~[itemStack.class:?] at net.minecraft.server.management.ItemInWorldManager.tryUseItem(ItemInWorldManager.java:345) ~[itemInWorldManager.class:?] at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:576) ~[NetHandlerPlayServer.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) ~[NetworkManager.class:?] at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) ~[NetworkSystem.class:?] ... 5 more [12:07:46] [server thread/ERROR]: This crash report has been saved to: C:\Users\Boone.mcfuzz\Desktop\Olympians Mod\eclipse\.\crash-reports\crash-2015-08-14_12.07.46-server.txt [12:07:46] [server thread/INFO]: Stopping server [12:07:46] [server thread/INFO]: Saving players [12:07:46] [server thread/INFO]: Saving worlds [12:07:46] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/Overworld [12:07:46] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Who set us up the TNT? Time: 8/14/15 12:07 PM Description: Ticking memory connection java.lang.NullPointerException: Ticking memory connection at com.OlympiansMod.Item.RandomWand.onItemRightClick(RandomWand.java:26) at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:164) at net.minecraft.server.management.ItemInWorldManager.tryUseItem(ItemInWorldManager.java:345) at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:576) at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74) at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122) at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at com.OlympiansMod.Item.RandomWand.onItemRightClick(RandomWand.java:26) at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:164) at net.minecraft.server.management.ItemInWorldManager.tryUseItem(ItemInWorldManager.java:345) at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:576) at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74) at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122) at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) -- Ticking connection -- Details: Connection: net.minecraft.network.NetworkManager@18157940 Stacktrace: at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 8.1 (amd64) version 6.3 Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 664728360 bytes (633 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94 FML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available theolympiansmod{0.1} [The Olympians Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Player Count: 1 / 8; [EntityPlayerMP['Player866'/555, l='LuckyEgg Test', x=-348.18, y=64.00, z=433.49]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' [12:07:46] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:393]: #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2015-08-14_12.07.46-server.txt [12:07:46] [Client thread/INFO] [FML]: Waiting for the server to terminate/save. [12:07:46] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/Nether [12:07:46] [server thread/INFO]: Saving chunks for level 'LuckyEgg Test'/The End [12:07:47] [server thread/INFO] [FML]: Unloading dimension 0 [12:07:47] [server thread/INFO] [FML]: Unloading dimension -1 [12:07:47] [server thread/INFO] [FML]: Unloading dimension 1 [12:07:47] [server thread/INFO] [FML]: Applying holder lookups [12:07:47] [server thread/INFO] [FML]: Holder lookups applied [12:07:47] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded. [12:07:47] [Client thread/INFO] [FML]: Server terminated. AL lib: (EE) alc_cleanup: 1 device not closed Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
  11. thanks, but how would I set an id for a certain spell using the nbt, meaning I don't understand when you say, make a byte containing one of the spells ids, how would I set that Id. I have a little bit of and Idea on how to do it but im still learning allot about this nbt stuff.
  12. it worked thanks.
  13. as you can see I have no idea what im doing: public class RandomWand extends Item{ public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ){ stack.stackTagCompound = new NBTTagCompound(); stack.stackTagCompound.setInteger("Spell", 0); return true; } public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer player) { int spell = itemstack.stackTagCompound.getInteger("Spell"); int spell2 = itemstack.stackTagCompound.getInteger("Spell2"); if (!world.isRemote) { if (spell2 == 1) { world.spawnEntityInWorld(new SlownessSpell(world, player)); } if (player.isSneaking()) { if (spell == 0) { itemstack.stackTagCompound.setInteger("Spell2", 1); } } } return itemstack; } }
  14. so I am making a wand type item, and I want to switch it every time I shift and right click the item. problem is Im not quite sure how to change the spell/mode using the nbt. how should I do this.
  15. what do you mean? like this public static void MainRegistry() { FluidRegistry.registerFluid(PoisonWater); initializeBlock(); registerBlock(); btw here Is my main mod class if that helps. package com.OlympiansMod.Main; import net.minecraft.client.renderer.entity.RenderSnowball; import net.minecraftforge.event.entity.living.LivingDeathEvent; import net.minecraftforge.fluids.FluidRegistry; import com.OlympiansMod.Block.ModBlocks; import com.OlympiansMod.Item.DnaPosideonInfused; import com.OlympiansMod.Item.DnaStats; import com.OlympiansMod.Item.DnaStats2; import com.OlympiansMod.Item.DnaZeusInfused; import com.OlympiansMod.Item.ModItems; import com.OlympiansMod.creativetabs.MCreativeTabs; import com.OlympiansMod.entity.EntityCell; import com.OlympiansMod.entity.EntityGreekFire; import com.OlympiansMod.entity.MEntity; import com.OlympiansMod.lib.Refstrings; import com.OlympiansMod.world.MWorld; import cpw.mods.fml.client.registry.RenderingRegistry; import cpw.mods.fml.common.FMLCommonHandler; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.eventhandler.SubscribeEvent; import cpw.mods.fml.common.registry.GameRegistry; @Mod(modid = Refstrings.MODID , name = Refstrings.NAME , version = Refstrings.VERSION) public class MainRegistry { private static int modGuiIndex = 0; public static final int GUI_CUSTOM_INV = modGuiIndex++; @SidedProxy(clientSide = Refstrings.CLIENTSIDE , serverSide = Refstrings.SERVERSIDE) public static ServerProxy proxy; @Instance public static MainRegistry modInstance; @EventHandler public static void PreLoad(FMLPreInitializationEvent PreEvent) { MCreativeTabs.initialiseTabs(); ModBlocks.MainRegistry(); MEntity.MainRegistry(); ModItems.MainRegistry(); FMLCommonHandler.instance().bus().register(new DnaZeusInfused()); MWorld.MainRegistry(); CraftingManager.mainRegistry(); } @EventHandler public static void Load(FMLInitializationEvent event) { proxy.registerRenderInfo(); } @EventHandler public static void PostLoad(FMLPostInitializationEvent PostEvent) { } }
  16. I am making a custom fluid, longstory short, I get this crash report after running the testing environment. ModClasses: MainBlockClass: package com.OlympiansMod.Block; import com.OlympiansMod.lib.Refstrings; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.init.Blocks; import net.minecraftforge.fluids.Fluid; import net.minecraftforge.fluids.FluidRegistry; import cpw.mods.fml.common.registry.GameRegistry; public class ModBlocks { public static void MainRegistry() { initializeBlock(); registerBlock(); } public static Block CBronzeBlock; public static Block CBronzeOre; public static Block IGoldBlock; public static Block IGoldOre; public static Block SIronBlock; public static Block SIronOre; public static Block UWDirt; public static Block SPlant; public static Block PoplarWoodPlanks; public static Block PoisonWaterBlock; public static Block OlympianLuckyBlock; public static Fluid PoisonWater = new Fluid("PosionWater"); //public static Block GreekFireL; public static void initializeBlock() { CBronzeBlock = new CBronzeBlock(Material.iron).setBlockName("CBronzeBlock").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":CBronzeBlock").setHardness(5).setLightLevel((float) 5); CBronzeOre = new CBronzeOre(Material.iron).setBlockName("CBronzeOre").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":CBronzeOre").setHardness(4).setLightLevel((float) 4); IGoldBlock = new IGoldBlock(Material.iron).setBlockName("IGoldBlock").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":IGoldBlock").setHardness(3).setLightLevel((float) 6); IGoldOre = new IGoldOre(Material.iron).setBlockName("IGoldOre").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":IGoldOre").setHardness(4).setLightLevel((float) 5); SIronBlock = new SIronBlock(Material.iron).setBlockName("SIronBlock").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":SIronBlock").setHardness(6); SIronOre = new SIronOre(Material.iron).setBlockName("SIronOre").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":SIronOre").setHardness(7); UWDirt = new UWDirt(Material.grass).setBlockName("UWDirt").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":UWDirt").setHardness(3); SPlant = new StrawberryPlant().setBlockName("SPlant").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":SPlant"); PoplarWoodPlanks = new PoplarWoodPlanks(Material.wood).setBlockName("PoplarWoodPlanks").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(Refstrings.MODID + ":PoplarWoodPlanks").setHardness(4); PoisonWaterBlock = new PoisonClass(PoisonWater, Material.water).setBlockName("PoisonWater"); } public static void registerBlock() { GameRegistry.registerBlock(CBronzeBlock, CBronzeBlock.getUnlocalizedName()); GameRegistry.registerBlock(CBronzeOre, CBronzeOre.getUnlocalizedName()); GameRegistry.registerBlock(IGoldBlock, IGoldBlock.getUnlocalizedName()); GameRegistry.registerBlock(IGoldOre, IGoldOre.getUnlocalizedName()); GameRegistry.registerBlock(SIronBlock, SIronBlock.getUnlocalizedName()); GameRegistry.registerBlock(SIronOre, SIronOre.getUnlocalizedName()); GameRegistry.registerBlock(UWDirt, UWDirt.getUnlocalizedName()); FluidRegistry.registerFluid(PoisonWater); PoisonWater.setUnlocalizedName(PoisonWaterBlock.getUnlocalizedName()); GameRegistry.registerBlock(SPlant, SPlant.getUnlocalizedName()); GameRegistry.registerBlock(PoisonWaterBlock, PoisonWaterBlock.getUnlocalizedName()); GameRegistry.registerBlock(PoplarWoodPlanks, PoplarWoodPlanks.getUnlocalizedName()); } } PoisonClass: package com.OlympiansMod.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.util.IIcon; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import net.minecraftforge.fluids.BlockFluidClassic; import net.minecraftforge.fluids.Fluid; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public class PoisonClass extends BlockFluidClassic{ @SideOnly(Side.CLIENT) protected IIcon stillIcon; @SideOnly(Side.CLIENT) protected IIcon flowingIcon; public PoisonClass(Fluid fluid, Material material) { super(fluid, material); setCreativeTab(CreativeTabs.tabMisc); } @Override public IIcon getIcon(int side, int meta) { return (side == 0 || side == 1)? stillIcon : flowingIcon; } @SideOnly(Side.CLIENT) @Override public void registerBlockIcons(IIconRegister register) { stillIcon = register.registerIcon("modid:fluidStill"); flowingIcon = register.registerIcon("modid:fluidFlowing"); } @Override public boolean canDisplace(IBlockAccess world, int x, int y, int z) { if (world.getBlock(x, y, z).getMaterial().isLiquid()) return false; return super.canDisplace(world, x, y, z); } @Override public boolean displaceIfPossible(World world, int x, int y, int z) { if (world.getBlock(x, y, z).getMaterial().isLiquid()) return false; return super.displaceIfPossible(world, x, y, z); } } Crash Report [code[16:25:39] [main/INFO] [GradleStart]: Extra: [] [16:25:39] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Boone.mcfuzz/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker] [16:25:39] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [16:25:39] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [16:25:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker [16:25:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [16:25:40] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1230 for Minecraft 1.7.10 loading [16:25:40] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_45, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre1.8.0_45 [16:25:40] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [16:25:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.GradleStartCommon$GradleStartTweaker [16:25:40] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [16:25:40] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [16:25:40] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:25:40] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [16:25:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:25:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:25:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:25:40] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [16:25:44] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [16:25:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:25:44] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [16:25:45] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [16:25:45] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [16:25:45] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [16:25:46] [main/INFO]: Setting user: Player862 [16:25:50] [Client thread/INFO]: LWJGL Version: 2.9.1 [16:25:52] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [16:25:52] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1230 Initialized [16:25:52] [Client thread/INFO] [FML]: Replaced 182 ore recipies [16:25:52] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [16:25:53] [Client thread/INFO] [FML]: Searching C:\Users\Boone.mcfuzz\Desktop\Olympians Mod\eclipse\mods for mods [16:25:59] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [16:26:00] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, theolympiansmod] at CLIENT [16:26:00] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, theolympiansmod] at SERVER [16:26:01] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:The Olympians Mod [16:26:01] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [16:26:01] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [16:26:01] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [16:26:01] [Client thread/INFO] [FML]: Applying holder lookups [16:26:01] [Client thread/INFO] [FML]: Holder lookups applied [16:26:01] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue [16:26:01] [Client thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized theolympiansmod{0.1} [The Olympians Mod] (bin) Unloaded->Constructed->Errored [16:26:01] [Client thread/ERROR] [FML]: The following problems were captured during this phase [16:26:01] [Client thread/ERROR] [FML]: Caught exception from theolympiansmod java.lang.NullPointerException at net.minecraftforge.fluids.FluidRegistry.getFluidID(FluidRegistry.java:119) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at net.minecraftforge.fluids.Fluid.getID(Fluid.java:177) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at net.minecraftforge.fluids.FluidStack.<init>(FluidStack.java:27) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at net.minecraftforge.fluids.BlockFluidClassic.<init>(BlockFluidClassic.java:28) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at com.OlympiansMod.Block.PoisonClass.<init>(PoisonClass.java:22) ~[bin/:?] at com.OlympiansMod.Block.ModBlocks.initializeBlock(ModBlocks.java:48) ~[bin/:?] at com.OlympiansMod.Block.ModBlocks.MainRegistry(ModBlocks.java:16) ~[bin/:?] at com.OlympiansMod.Main.MainRegistry.PreLoad(MainRegistry.java:47) ~[bin/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] 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 cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[forgeSrc-1.7.10-10.13.2.1230.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] 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 cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?] at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) [Loader.class:?] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_45] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_45] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [16:26:01] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Why is it breaking Time: 8/13/15 4:26 PM Description: Initializing game java.lang.NullPointerException: Initializing game at net.minecraftforge.fluids.FluidRegistry.getFluidID(FluidRegistry.java:119) at net.minecraftforge.fluids.Fluid.getID(Fluid.java:177) at net.minecraftforge.fluids.FluidStack.<init>(FluidStack.java:27) at net.minecraftforge.fluids.BlockFluidClassic.<init>(BlockFluidClassic.java:28) at com.OlympiansMod.Block.PoisonClass.<init>(PoisonClass.java:22) at com.OlympiansMod.Block.ModBlocks.initializeBlock(ModBlocks.java:48) at com.OlympiansMod.Block.ModBlocks.MainRegistry(ModBlocks.java:16) at com.OlympiansMod.Main.MainRegistry.PreLoad(MainRegistry.java:47) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) at GradleStart.main(GradleStart.java:45) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at net.minecraftforge.fluids.FluidRegistry.getFluidID(FluidRegistry.java:119) at net.minecraftforge.fluids.Fluid.getID(Fluid.java:177) at net.minecraftforge.fluids.FluidStack.<init>(FluidStack.java:27) at net.minecraftforge.fluids.BlockFluidClassic.<init>(BlockFluidClassic.java:28) at com.OlympiansMod.Block.PoisonClass.<init>(PoisonClass.java:22) at com.OlympiansMod.Block.ModBlocks.initializeBlock(ModBlocks.java:48) at com.OlympiansMod.Block.ModBlocks.MainRegistry(ModBlocks.java:16) at com.OlympiansMod.Main.MainRegistry.PreLoad(MainRegistry.java:47) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239) at net.minecraft.client.Minecraft.startGame(Minecraft.java:522) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) at GradleStart.main(GradleStart.java:45) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 8.1 (amd64) version 6.3 Java Version: 1.8.0_45, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 874985928 bytes (834 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized theolympiansmod{0.1} [The Olympians Mod] (bin) Unloaded->Constructed->Errored Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: AMD Radeon HD 8400 GL version 4.3.12804 Compatibility Profile Context 13.352.1004.1007, ATI Technologies Inc. GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) [16:26:01] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Boone.mcfuzz\Desktop\Olympians Mod\eclipse\.\crash-reports\crash-2015-08-13_16.26.01-client.txt Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release ][/code] yeah I have looked through the code but I cant seem to figure out the problem. thank you for your time.
  17. Is there any way to make an item cooldown, ex. (after using my wand I have to wait a second before I use it again.) thank you for your time: ~BoonieQuafter-CrAfTeR
  18. and how exactly should I do that?
  19. so I am making an gunitem that can switch from Sniper mode to normal mode. Problem is the only way ive figured out how to do this, is by switching the current itemstack to the other mode. so I want the first item stacks damage to be carried over to the seconds, I was thinking something like subtracting the current item damage from the given stack and vis versa. although this method does not seem to work, does anybody have any Ideas?
  20. wow, im getting better at this sorta thing but my progression compared to others over the last three months does not seem to match others, although I have not met/chated with anyone with such little experience in the minecraft field/java. but thank you I cant believe it was as simple as different uuids yeah sorry for the inconvenience. THANKS TO ALL
  21. so... Edit: someone should make a "This is how long you have to wait before bumping, or after:" Thread
  22. yeah ive tried different things and nothing is working so far, what am I missing? Edit: yeah im just really not sure why it wont work, its like the game will only allow one item to work no matter what.
  23. wait a second, since the maxhealth attribute already has setShouldWatch I don't need to implement it? I basically but every thing that requires the playertickevent in one method, but only one of the items still seems to works, although right before I log in game, the Item the before currently was working, shows hearts until the login is complete, so basically it lags. so im still not sure how to get both items working properly, I no longer have to subscribe events, just one that does everything. here is the code sorry public static String theUUID = "1F28C409-EA90-4E54-AD57-13F3D92F68B2"; // this is supposed to be some static-for-your-modifier UUID. You decide what this String is, it must be in an UUID format tho. public static String theName = "MySuperModifier"; // This will be the name of modifier. public static String theName1 = "MySuperModifer1"; public static String theName2 = "MySuperModifie2"; // This will be the name of modifier. public static String theName3 = "MySuperModifer3"; public static AttributeModifier myAttributeModifier = new AttributeModifier(UUID.fromString(theUUID), theName, 10.0D, 0); // And yes, you can put those above inside this one's declaration. public static AttributeModifier myAttributeModifier1 = new AttributeModifier(UUID.fromString(theUUID), theName1, 20.0D, 0); // And yes, you can put those above inside this one's declaration. public static AttributeModifier myAttributeModifier2 = new AttributeModifier(UUID.fromString(theUUID), theName2, 10.0D, 0); // And yes, you can put those above inside this one's declaration. public static AttributeModifier myAttributeModifier3 = new AttributeModifier(UUID.fromString(theUUID), theName3, 20.0D, 0); // And yes, you can put those above inside this one's declaration. //Now what you do in method to apply/remove: @SubscribeEvent public void playerTick(PlayerTickEvent event) { if (event.phase == Phase.END) { boolean hasItem = event.player.inventory .hasItem(ModItems.DnaPosideonInfused); boolean hasItem2 = event.player.inventory .hasItem(ModItems.DnaZeusInfused); if (event.player.capabilities.isCreativeMode) { } else { if (event.player.isWet()) { if (hasItem == true) { if (!event.player.worldObj.isRemote) { event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth) .applyModifier(myAttributeModifier1); event.player.addPotionEffect(new PotionEffect( Potion.moveSpeed.id, 1, 1)); event.player.addPotionEffect(new PotionEffect( Potion.waterBreathing.id, 1, 1)); event.player.addPotionEffect(new PotionEffect( Potion.damageBoost.id, 3, 3)); event.player.addPotionEffect(new PotionEffect( Potion.resistance.id, 1, 1)); } } } else { if (hasItem == true) { if (!event.player.worldObj.isRemote) { event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth) .removeModifier(myAttributeModifier1); event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth) .applyModifier(myAttributeModifier); event.player.addPotionEffect(new PotionEffect( Potion.damageBoost.id, 1, 1)); event.player.addPotionEffect(new PotionEffect( Potion.resistance.id, 0, 0)); } } } } if (event.player.capabilities.isCreativeMode) { } else { if (hasItem == false) { if (!event.player.worldObj.isRemote) { event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth) .removeModifier(myAttributeModifier); } } if (event.player.isInWater() && hasItem == true) { if (!event.player.worldObj.isRemote) { event.player.addPotionEffect(new PotionEffect( Potion.regeneration.id, 1, 1)); } } } if (event.player.capabilities.isCreativeMode) { } else { if (hasItem2 == true) { event.player.capabilities.allowFlying = true; } if (event.player.capabilities.isFlying) { if (hasItem2 == true) { if (!event.player.worldObj.isRemote) { event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth) .applyModifier(myAttributeModifier3); } } } else { if (hasItem2 == true) { if (!event.player.worldObj.isRemote) { event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth).removeModifier(myAttributeModifier3); event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth).applyModifier(myAttributeModifier2); } } } } if (event.player.capabilities.isCreativeMode) { } else { if (hasItem2 == false) { if (!event.player.worldObj.isRemote) { event.player.getEntityAttribute( SharedMonsterAttributes.maxHealth).removeModifier(myAttributeModifier2); } event.player.capabilities.allowFlying = false; event.player.capabilities.isFlying = false; } } } }
×
×
  • Create New...

Important Information

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