• 0

    posted a message on Factorization 0.8.108
    I'll be using this mod in a private server pack that may or may not eventually become public. Private at first though
    Posted in: Minecraft Mods
  • 0

    posted a message on ChickenBones Mods
    So with all the latest chicken mods i am crashing at launch with this error

    2013-07-29 01:07:49 [SEVERE] [ForgeModLoader] An error occurred trying to configure the minecraft home at C:\Users\StoneCold913\Desktop\MC2 for Forge Mod Loader
    java.lang.RuntimeException: Failed to load dependancies.info from ForgeMultipart-universal-1.6.2-1.0.0.75.jar as JSON
    at codechicken.core.launch.DepLoader$DepLoadInst.scanDepInfos(DepLoader.java:477)
    at codechicken.core.launch.DepLoader$DepLoadInst.load(DepLoader.java:449)
    at codechicken.core.launch.DepLoader.call(DepLoader.java:586)
    at codechicken.core.launch.DepLoader.load(DepLoader.java:542)
    at codechicken.core.launch.CodeChickenCorePlugin.<init>(CodeChickenCorePlugin.java:60)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at cpw.mods.fml.relauncher.CoreModManager.loadCoreMod(CoreModManager.java:298)
    at cpw.mods.fml.relauncher.CoreModManager.discoverCoreMods(CoreModManager.java:206)
    at cpw.mods.fml.relauncher.CoreModManager.handleLaunch(CoreModManager.java:134)
    at cpw.mods.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:90)
    at cpw.mods.fml.relauncher.FMLLaunchHandler.setupClient(FMLLaunchHandler.java:67)
    at cpw.mods.fml.relauncher.FMLLaunchHandler.configureForClientLaunch(FMLLaunchHandler.java:34)
    at cpw.mods.fml.common.launcher.FMLTweaker.injectIntoClassLoader(FMLTweaker.java:76)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:51)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:18)
    Caused by: argo.saj.InvalidSyntaxException: At line 6, column 2: Expected either , or } but got ["].
    at argo.saj.SajParser.objectString(SajParser.java:120)
    at argo.saj.SajParser.parse(SajParser.java:53)
    at argo.jdom.JdomParser.parse(JdomParser.java:36)
    at codechicken.core.launch.DepLoader$DepLoadInst.loadJSon(DepLoader.java:485)
    at codechicken.core.launch.DepLoader$DepLoadInst.scanDepInfos(DepLoader.java:472)
    Posted in: Minecraft Mods
  • 0

    posted a message on [Forge][Tech][SMP]RotaryCraft - Machines, Power, Automation
    so Item Refresher don't use that ­

    http://pastebin.com/9RX6quHu
    Posted in: WIP Mods
  • 0

    posted a message on [Forge][Tech][SMP]RotaryCraft - Machines, Power, Automation
    Quote from Reika

    Double-check that there is indeed a BlockMachine.class inside the zip under /Reika/RotaryCraft/Blocks/.
    Given I load it with no issue, there cannot be a critical bug in the code...if the class is there, try loading it without MultiMC.
    It is there in my installation, size 2372B (packed @ 1298B), modified 04/05/2013 @ 22:27.
    Also, just making sure - you are running it from the RotaryCraft.zip (and not the RotaryCraft-BetaV023.zip), and that there is only one RC zip in your mods folder?



    it seems that i got a corrupt download, there were files missing. I re-downloaded and everything seems to be in working order now.
    Posted in: WIP Mods
  • 0

    posted a message on [Forge][Tech][SMP]RotaryCraft - Machines, Power, Automation
    Quote from Reika

    It says it cannot find the Block class for BlockMachine (the class behind the steel, lonsdaleite, and anthracite blocks). Did you install it correctly?
    There may also be a conflict - you have what looks like 60+ mods.



    i have it installed the same way i had the previous version installed. same instance as a previously working version
    Posted in: WIP Mods
  • 0

    posted a message on [Forge][Tech][SMP]RotaryCraft - Machines, Power, Automation
    http://pastebin.com/W4UrVDCm

    @Reika that seems to be an interesting error, there is a block error on load
    Posted in: WIP Mods
  • 0

    posted a message on Finder Compass - turns the vanilla item into a configurable search utility
    atomic could you give me an example of a setting for a block with a damage value

    *edit: does the finder work in the nether, because i'm trying to find nether ores
    Posted in: Minecraft Mods
  • 0

    posted a message on [Forge][Tech][SMP]RotaryCraft - Machines, Power, Automation
    Quote from Reika

    Given I cannot reproduce the bug - I can open the GUI fine - the only thing I can think of is to try again with the new build I am releasing tonight.


    ok thnks for the help, can't wait, really excited to start working with this mod
    Posted in: WIP Mods
  • 0

    posted a message on [Forge][Tech][SMP]RotaryCraft - Machines, Power, Automation
    AbstractMethodErrors are not supposed to even be possible; they are the result of one class changing when others did not, which cannot happen with an MCP build, assuming it works properly. The line in question (ContainerFractionator.java:72) is the following:
    return Fraction.isUseableByPlayer(par1EntityPlayer);
    which is the standard is-block-in-reach test:
    public boolean isUseableByPlayer(EntityPlayer var1) {
    double dist = ReikaMathLibrary.py3d(this.xCoord-var1.posX, this.yCoord-var1.posY, this.zCoord-var1.posZ);
    return (dist <= 8);
    }

    Do you have the right version of DragonAPI?


    downloaded both links on your front page when i was getting ready to research for a spotlight
    Posted in: WIP Mods
  • 0

    posted a message on [Forge][Tech][SMP]RotaryCraft - Machines, Power, Automation
    java.lang.AbstractMethodError: Reika.RotaryCraft.TileEntityFractionator.func_70300_a(Lnet/minecraft/entity/player/EntityPlayer;)Z
    at Reika.RotaryCraft.ContainerFractionator.func_75145_c(ContainerFractionator.java:72)
    at net.minecraft.entity.player.EntityPlayer.func_70071_h_(EntityPlayer.java:341)
    at net.minecraft.entity.player.EntityPlayerMP.func_71127_g(EntityPlayerMP.java:319)
    at net.minecraft.network.NetServerHandler.func_72498_a(NetServerHandler.java:308)
    at net.minecraft.network.packet.Packet10Flying.func_73279_a(SourceFile:136)
    at net.minecraft.network.MemoryConnection.func_74428_b(MemoryConnection.java:89)
    at net.minecraft.network.NetServerHandler.func_72570_d(NetServerHandler.java:134)
    at net.minecraft.network.NetworkListenThread.func_71747_b(NetworkListenThread.java:53)
    at net.minecraft.server.integrated.IntegratedServerListenThread.func_71747_b(IntegratedServerListenThread.java:109)
    at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:674)
    at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:570)
    at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:127)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:468)
    at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:573)

    any idea what that is telling me?
    Posted in: WIP Mods
  • 0

    posted a message on GridCraft(Tron)(1.4.7)(W.I.P) First Look at Tank on Last Page
    That looks awesome shortman
    Posted in: WIP Mods
  • 0

    posted a message on GridCraft(Tron)(1.4.7)(W.I.P) First Look at Tank on Last Page
    Quote from Kye_Duo

    yes I have Render Player API because I have smart moving mod. I have the 1.8 version for MC 1.4.7

    java.lang.ArrayIndexOutOfBoundsException: 18
    at Iamshortman.GridMod.Client.Render.RenderPlayerLightVehicle.shouldRenderPass(RenderPlayerLightVehicle.java:132)
    at Iamshortman.GridMod.Client.Render.RenderPlayerLightVehicle.doRender(RenderPlayerLightVehicle.java:65)
    at Iamshortman.GridMod.Client.Render.RenderPlayerLightVehicle.a(RenderPlayerLightVehicle.java:208)
    at Iamshortman.GridMod.Client.Render.RenderLightJet.a(RenderLightJet.java:58)
    at bbu.a(RenderManager.java:302)
    at bbu.a(RenderManager.java:271)
    at bav.a(RenderGlobal.java:484)
    at ban.a(EntityRenderer.java:1585)
    at ban.b(EntityRenderer.java:1117)
    at net.minecraft.client.Minecraft.J(Minecraft.java:884)
    at net.minecraft.client.Minecraft.run(Minecraft.java:773)
    at java.lang.Thread.run(Unknown Source)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- Head --
    Stacktrace:
    at Iamshortman.GridMod.Client.Render.RenderPlayerLightVehicle.shouldRenderPass(RenderPlayerLightVehicle.java:132)
    at Iamshortman.GridMod.Client.Render.RenderPlayerLightVehicle.doRender(RenderPlayerLightVehicle.java:65)
    at Iamshortman.GridMod.Client.Render.RenderPlayerLightVehicle.a(RenderPlayerLightVehicle.java:208)
    at Iamshortman.GridMod.Client.Render.RenderLightJet.a(RenderLightJet.java:58)

    -- Entity being rendered --
    Details:
    Entity Type: LightJet (Iamshortman.GridMod.Common.Entity.EntityLightJet)
    Entity ID: 1909
    Name: entity.LightJet.name
    Exact location: 280.69, 75.86, -208.03
    Block location: World: (280,75,-209), Chunk: (at 8,4,15 in 17,-14; contains blocks 272,0,-224 to 287,255,-209), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
    Momentum: 0.00, 0.00, 0.00

    -- Renderer details --
    Details:
    Assigned renderer: Iamshortman.GridMod.Client.Render.RenderLightJet@6f70fc25
    Location: -0.15,0.04,-0.23 - World: (-1,0,-1), Chunk: (at 15,0,15 in -1,-1; contains blocks -16,0,-16 to -1,255,-1), Region: (-1,-1; contains chunks -32,-32 to -1,-1, blocks -512,0,-512 to -1,255,-1)
    Rotation: -4.0360904
    Delta: 0.12478733
    Stacktrace:
    at bbu.a(RenderManager.java:302)
    at bbu.a(RenderManager.java:271)
    at bav.a(RenderGlobal.java:484)
    at ban.a(EntityRenderer.java:1585)

    -- Affected level --
    Details:
    Level name: MpServer
    All players: 1 total; [ays['Kye_Duo'/303, l='MpServer', x=280.71, y=75.90, z=-208.02]]
    Chunk stats: MultiplayerChunkCache: 440
    Level seed: 0
    Level generator: ID 00 - default, ver 1. Features enabled: false
    Level generator options:
    Level spawn location: World: (261,64,-227), Chunk: (at 5,4,13 in 16,-15; contains blocks 256,0,-240 to 271,255,-225), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
    Level time: 263093 game time, 1038710 day time
    Level dimension: 0
    Level storage version: 0x00000 - Unknown?
    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
    Forced entities: 243 total; [pe['Sheep'/1642, l='MpServer', x=221.50, y=65.00, z=-265.50], MoCEntityBigCat['BigCat'/1646, l='MpServer', x=211.72, y=64.00, z=-263.69], MoCEntityBird['Bird'/1634, l='MpServer', x=266.63, y=65.00, z=-298.47], MoCEntityWyvern['Wyvern'/9, l='MpServer', x=275.84, y=64.00, z=-229.63], MoCEntityWyvern['Wyvern'/10, l='MpServer', x=279.59, y=64.00, z=-224.66], MoCEntityBird['Bird'/1638, l='MpServer', x=266.50, y=66.00, z=-301.13], MoCEntityFly['Fly'/21, l='MpServer', x=173.47, y=69.00, z=-256.25], MoCEntityFly['Fly'/23, l='MpServer', x=178.59, y=70.00, z=-253.88], MoCEntityBunny['Bunny'/22, l='MpServer', x=196.13, y=70.00, z=-244.56], MoCEntityDeer['Deer'/31, l='MpServer', x=189.16, y=68.00, z=-271.50], MoCEntityButterfly['ButterFly'/34, l='MpServer', x=199.78, y=64.00, z=-258.75], pk['Wolf'/35, l='MpServer', x=205.63, y=64.00, z=-264.34], MoCEntityDuck['Duck'/32, l='MpServer', x=200.56, y=70.00, z=-281.09], pd['Pig'/39, l='MpServer', x=200.50, y=70.00, z=-249.94], EntityBlock['unknown'/524, l='MpServer', x=298.25, y=66.00, z=-223.75], oy['Chicken'/42, l='MpServer', x=206.56, y=72.00, z=-237.44], EntityBlock['unknown'/525, l='MpServer', x=298.25, y=67.25, z=-224.25], EntityBlock['unknown'/526, l='MpServer', x=298.40, y=65.00, z=-223.60], MoCEntityButterfly['ButterFly'/40, l='MpServer', x=202.63, y=80.00, z=-245.53], oy['Chicken'/41, l='MpServer', x=205.72, y=72.00, z=-237.16], EntityMechanicalArm['unknown'/522, l='MpServer', x=296.00, y=63.00, z=-220.00], EntityBlock['unknown'/523, l='MpServer', x=297.75, y=67.25, z=-223.75], oz['Cow'/51, l='MpServer', x=209.50, y=65.00, z=-261.41], oy['Chicken'/50, l='MpServer', x=212.53, y=70.00, z=-256.16], pd['Pig'/49, l='MpServer', x=215.97, y=68.00, z=-271.66], MoCEntitySnake['Snake'/48, l='MpServer', x=226.78, y=70.00, z=-290.28], pd['Pig'/55, l='MpServer', x=226.69, y=69.00, z=-253.44], MoCEntityFirefly['Firefly'/54, l='MpServer', x=216.31, y=77.00, z=-243.91], MoCEntityBoar['Boar'/53, l='MpServer', x=209.03, y=71.00, z=-245.78], MoCEntityBear['Bear'/52, l='MpServer', x=217.78, y=70.00, z=-247.56], oz['Cow'/59, l='MpServer', x=213.81, y=71.00, z=-227.09], oy['Chicken'/58, l='MpServer', x=219.47, y=70.00, z=-235.41], oy['Chicken'/57, l='MpServer', x=212.59, y=75.00, z=-224.47], oz['Cow'/56, l='MpServer', x=209.50, y=67.00, z=-254.50], MoCEntityBunny['Bunny'/63, l='MpServer', x=212.84, y=71.00, z=-225.09], oz['Cow'/61, l='MpServer', x=216.69, y=70.00, z=-227.47], oz['Cow'/60, l='MpServer', x=223.47, y=70.00, z=-227.53], MoCEntityBunny['Bunny'/68, l='MpServer', x=207.13, y=68.00, z=-216.72], pk['Wolf'/69, l='MpServer', x=217.94, y=68.00, z=-223.50], MoCEntityDragonfly['DragonFly'/1034, l='MpServer', x=228.50, y=69.00, z=-262.50], oy['Chicken'/70, l='MpServer', x=211.66, y=65.00, z=-206.53], MoCEntityDragonfly['DragonFly'/1035, l='MpServer', x=228.50, y=69.00, z=-262.50], MoCEntityDuck['Duck'/71, l='MpServer', x=237.47, y=74.00, z=-323.69], MoCEntityDragonfly['DragonFly'/1036, l='MpServer', x=228.50, y=69.00, z=-262.50], MoCEntityFirefly['Firefly'/64, l='MpServer', x=208.53, y=77.00, z=-239.34], MoCEntityDragonfly['DragonFly'/1037, l='MpServer', x=228.50, y=69.00, z=-262.50], pk['Wolf'/65, l='MpServer', x=223.31, y=69.00, z=-215.50], MoCEntityBee['Bee'/1038, l='MpServer', x=250.83, y=64.96, z=-266.25], oy['Chicken'/66, l='MpServer', x=216.38, y=68.00, z=-219.38], MoCEntityBee['Bee'/1039, l='MpServer', x=250.74, y=64.96, z=-265.37], pk['Wolf'/67, l='MpServer', x=210.94, y=74.00, z=-220.47], MoCEntityBunny['Bunny'/77, l='MpServer', x=230.22, y=75.00, z=-319.41], pk['Wolf'/78, l='MpServer', x=232.34, y=68.00, z=-285.31], oz['Cow'/79, l='MpServer', x=237.47, y=64.00, z=-273.72], MoCEntityBear['Bear'/72, l='MpServer', x=231.78, y=75.00, z=-323.44], MoCEntityBear['Bear'/73, l='MpServer', x=229.31, y=76.00, z=-321.25], MoCEntityDragonfly['DragonFly'/1049, l='MpServer', x=218.50, y=66.00, z=-217.25], oz['Cow'/85, l='MpServer', x=223.45, y=69.00, z=-240.50], MoCEntityDragonfly['DragonFly'/1048, l='MpServer', x=218.50, y=66.00, z=-216.69], MoCEntityDeer['Deer'/87, l='MpServer', x=240.94, y=64.08, z=-238.47], pd['Pig'/86, l='MpServer', x=225.38, y=69.00, z=-254.53], oz['Cow'/81, l='MpServer', x=216.44, y=69.00, z=-266.50], pk['Wolf'/80, l='MpServer', x=229.50, y=69.00, z=-266.72], pd['Pig'/83, l='MpServer', x=228.34, y=64.00, z=-261.50], pk['Wolf'/82, l='MpServer', x=224.59, y=67.00, z=-262.21], MoCEntityBee['Bee'/1041, l='MpServer', x=252.54, y=64.94, z=-265.18], MoCEntityMouse['Mouse'/93, l='MpServer', x=242.72, y=28.00, z=-227.34], MoCEntityBee['Bee'/1040, l='MpServer', x=252.23, y=65.24, z=-267.28], MoCEntityButterfly['ButterFly'/92, l='MpServer', x=237.91, y=65.44, z=-244.45], MoCEntityFly['Fly'/1043, l='MpServer', x=279.97, y=67.00, z=-288.72], pc['Ocelot'/95, l='MpServer', x=235.66, y=64.00, z=-220.13], MoCEntityFly['Fly'/1042, l='MpServer', x=280.30, y=73.00, z=-294.19], pd['Pig'/94, l='MpServer', x=232.28, y=63.00, z=-208.66], MoCEntityFly['Fly'/1045, l='MpServer', x=289.72, y=64.00, z=-285.84], oz['Cow'/89, l='MpServer', x=232.16, y=64.00, z=-230.19], MoCEntityFly['Fly'/1044, l='MpServer', x=283.19, y=67.00, z=-288.81], pk['Wolf'/88, l='MpServer', x=238.47, y=64.00, z=-240.28], MoCEntityDragonfly['DragonFly'/1047, l='MpServer', x=218.53, y=67.00, z=-221.69], oy['Chicken'/91, l='MpServer', x=225.56, y=68.00, z=-236.53], MoCEntityDragonfly['DragonFly'/1046, l='MpServer', x=217.38, y=68.15, z=-218.50], pd['Pig'/90, l='MpServer', x=229.06, y=64.00, z=-235.97], oz['Cow'/102, l='MpServer', x=226.16, y=63.00, z=-194.03], oz['Cow'/103, l='MpServer', x=235.53, y=63.00, z=-205.47], MoCEntityButterfly['ButterFly'/100, l='MpServer', x=239.19, y=40.00, z=-195.44], oz['Cow'/101, l='MpServer', x=226.38, y=63.00, z=-196.47], MoCEntityButterfly['ButterFly'/98, l='MpServer', x=234.47, y=37.00, z=-199.59], MoCEntityFirefly['Firefly'/96, l='MpServer', x=226.59, y=29.00, z=-196.56], MoCEntityButterfly['ButterFly'/97, l='MpServer', x=236.34, y=39.00, z=-196.81], MoCEntityFirefly['Firefly'/110, l='MpServer', x=244.03, y=71.00, z=-311.72], pc['Ocelot'/104, l='MpServer', x=235.16, y=63.00, z=-203.47], MoCEntityDeer['Deer'/105, l='MpServer', x=245.50, y=73.00, z=-330.66], oy['Chicken'/119, l='MpServer', x=244.38, y=67.00, z=-287.41], pk['Wolf'/118, l='MpServer', x=244.63, y=66.00, z=-284.41], pk['Wolf'/117, l='MpServer', x=253.66, y=64.00, z=-270.29], MoCEntityMouse['Mouse'/1080, l='MpServer', x=230.22, y=24.00, z=-185.16], pd['Pig'/116, l='MpServer', x=243.28, y=64.00, z=-274.09], pk['Wolf'/115, l='MpServer', x=241.53, y=66.00, z=-280.00], pk['Wolf'/114, l='MpServer', x=245.44, y=67.00, z=-288.31], MoCEntityButterfly['ButterFly'/127, l='MpServer', x=243.94, y=64.00, z=-217.48], MoCEntityButterfly['ButterFly'/126, l='MpServer', x=249.97, y=67.78, z=-227.49], MoCEntityMouse['Mouse'/125, l='MpServer', x=248.04, y=65.00, z=-232.23], MoCEntityButterfly['ButterFly'/124, l='MpServer', x=243.94, y=69.00, z=-224.44], MoCEntityDragonfly['DragonFly'/123, l='MpServer', x=244.41, y=69.00, z=-224.72], pc['Ocelot'/122, l='MpServer', x=248.69, y=64.25, z=-256.50], oy['Chicken'/121, l='MpServer', x=249.47, y=64.00, z=-269.53], pd['Pig'/120, l='MpServer', x=244.69, y=64.25, z=-257.50], MoCEntityBunny['Bunny'/1221, l='MpServer', x=317.50, y=68.00, z=-296.50], MoCEntityBigCat['BigCat'/137, l='MpServer', x=276.28, y=71.00, z=-335.44], MoCEntityButterfly['ButterFly'/139, l='MpServer', x=266.47, y=71.00, z=-333.19], MoCEntityBunny['Bunny'/1217, l='MpServer', x=319.84, y=68.00, z=-301.78], MoCEntityButterfly['ButterFly'/141, l='MpServer', x=267.95, y=73.72, z=-325.88], MoCEntityButterfly['ButterFly'/140, l='MpServer', x=268.81, y=72.00, z=-327.56], MoCEntityButterfly['ButterFly'/142, l='MpServer', x=264.14, y=72.85, z=-325.72], px['item.item.chickenRaw'/129, l='MpServer', x=241.44, y=64.13, z=-210.56], px['item.item.feather'/128, l='MpServer', x=241.66, y=64.13, z=-210.78], MoCEntityDragonfly['DragonFly'/131, l='MpServer', x=254.84, y=66.00, z=-210.72], MoCEntityBoar['Boar'/130, l='MpServer', x=256.44, y=67.00, z=-229.69], MoCEntityBunny['Bunny'/1225, l='MpServer', x=308.53, y=70.00, z=-304.06], oz['Cow'/133, l='MpServer', x=260.13, y=63.00, z=-187.14], MoCEntityJellyFish['JellyFish'/134, l='MpServer', x=253.81, y=62.00, z=-169.53], pd['Pig'/152, l='MpServer', x=256.03, y=64.00, z=-277.97], oy['Chicken'/153, l='MpServer', x=267.72, y=64.00, z=-279.47], MoCEntityRay['Ray'/154, l='MpServer', x=262.66, y=62.00, z=-264.60], MoCEntityRay['Ray'/155, l='MpServer', x=265.38, y=62.02, z=-269.09], MoCEntityRay['Ray'/156, l='MpServer', x=266.26, y=59.00, z=-265.04], MoCEntityRay['Ray'/157, l='MpServer', x=265.64, y=61.81, z=-262.90], MoCEntityRay['Ray'/158, l='MpServer', x=261.77, y=62.00, z=-260.20], MoCEntityFishy['Fishy'/159, l='MpServer', x=264.98, y=62.00, z=-264.30], MoCEntityBird['Bird'/144, l='MpServer', x=232.41, y=70.00, z=-292.31], MoCEntityDuck['Duck'/145, l='MpServer', x=264.72, y=68.00, z=-314.72], MoCEntityFirefly['Firefly'/148, l='MpServer', x=263.56, y=67.00, z=-304.19], MoCEntityWyvern['Wyvern'/149, l='MpServer', x=268.03, y=63.00, z=-273.84], oy['Chicken'/150, l='MpServer', x=262.56, y=64.00, z=-273.81], pk['Wolf'/151, l='MpServer', x=257.28, y=64.00, z=-274.34], MoCEntityMouse['Mouse'/170, l='MpServer', x=251.76, y=66.00, z=-212.36], MoCEntityButterfly['ButterFly'/169, l='MpServer', x=260.29, y=45.00, z=-221.63], MoCEntityWyvern['Wyvern'/168, l='MpServer', x=269.72, y=64.00, z=-231.03], oz['Cow'/175, l='MpServer', x=267.94, y=63.00, z=-191.06], oz['Cow'/174, l='MpServer', x=262.19, y=69.00, z=-192.94], pc['Ocelot'/173, l='MpServer', x=258.45, y=67.00, z=-214.02], MoCEntityMouse['Mouse'/172, l='MpServer', x=248.63, y=64.00, z=-194.47], MoCEntityRay['Ray'/163, l='MpServer', x=276.18, y=62.03, z=-268.73], MoCEntityRay['Ray'/162, l='MpServer', x=268.22, y=62.00, z=-267.47], MoCEntityDolphin['Dolphin'/161, l='MpServer', x=260.75, y=62.03, z=-265.25], MoCEntityRay['Ray'/160, l='MpServer', x=263
    .54, y=62.00, z=-260.68], MoCEntityWyvern['Wyvern'/167, l='MpServer', x=265.44, y=66.00, z=-229.69], MoCEntityRay['Ray'/166, l='MpServer', x=273.00, y=62.00, z=-256.46], MoCEntityDolphin['Dolphin'/165, l='MpServer', x=258.75, y=62.02, z=-263.25], MoCEntityDolphin['Dolphin'/164, l='MpServer', x=262.47, y=60.05, z=-259.84], pk['Wolf'/186, l='MpServer', x=273.50, y=64.00, z=-288.28], MoCEntityDeer['Deer'/184, l='MpServer', x=264.40, y=70.00, z=-321.13], pk['Wolf'/185, l='MpServer', x=283.99, y=68.00, z=-289.60], MoCEntityRay['Ray'/190, l='MpServer', x=274.76, y=56.88, z=-261.75], MoCEntityRay['Ray'/191, l='MpServer', x=288.48, y=60.81, z=-248.31], pk['Wolf'/188, l='MpServer', x=279.41, y=64.00, z=-281.34], MoCEntityHorse['Horse'/189, l='MpServer', x=283.59, y=64.00, z=-281.25], MoCEntityDeer['Deer'/178, l='MpServer', x=267.86, y=70.00, z=-320.53], MoCEntityJellyFish['JellyFish'/176, l='MpServer', x=258.34, y=62.11, z=-160.56], MoCEntityBigCat['BigCat'/177, l='MpServer', x=274.69, y=72.00, z=-331.50], MoCEntityBunny['Bunny'/183, l='MpServer', x=286.47, y=73.00, z=-321.97], oz['Cow'/205, l='MpServer', x=300.06, y=63.00, z=-267.94], MoCEntityJellyFish['JellyFish'/207, l='MpServer', x=297.88, y=62.00, z=-190.03], MoCEntityJellyFish['JellyFish'/206, l='MpServer', x=291.59, y=62.13, z=-188.88], MoCEntityButterfly['ButterFly'/201, l='MpServer', x=292.19, y=76.00, z=-302.53], MoCEntityDragonfly['DragonFly'/200, l='MpServer', x=297.09, y=70.00, z=-308.31], oy['Chicken'/203, l='MpServer', x=301.56, y=68.00, z=-279.47], MoCEntityBoar['Boar'/202, l='MpServer', x=295.47, y=69.00, z=-303.53], MoCEntityFox['Fox'/1710, l='MpServer', x=211.96, y=68.00, z=-214.17], MoCEntityFishy['Fishy'/196, l='MpServer', x=282.46, y=58.26, z=-154.42], MoCEntityBigCat['BigCat'/193, l='MpServer', x=286.47, y=62.50, z=-254.06], pd['Pig'/1706, l='MpServer', x=214.50, y=68.00, z=-215.50], MoCEntityRay['Ray'/192, l='MpServer', x=271.88, y=60.72, z=-257.42], MoCEntityRay['Ray'/195, l='MpServer', x=271.91, y=62.02, z=-207.09], pc['Ocelot'/194, l='MpServer', x=285.11, y=63.81, z=-217.56], oy['Chicken'/220, l='MpServer', x=317.47, y=62.00, z=-266.16], pd['Pig'/221, l='MpServer', x=305.74, y=69.00, z=-277.47], pk['Wolf'/222, l='MpServer', x=304.75, y=63.00, z=-248.72], MoCEntityDeer['Deer'/223, l='MpServer', x=318.75, y=64.00, z=-250.31], MoCEntityBird['Bird'/216, l='MpServer', x=305.22, y=64.00, z=-273.78], MoCEntityBee['Bee'/217, l='MpServer', x=326.91, y=68.61, z=-306.24], pk['Wolf'/218, l='MpServer', x=312.32, y=64.00, z=-274.65], oz['Cow'/219, l='MpServer', x=304.50, y=64.00, z=-280.47], MoCEntityJellyFish['JellyFish'/208, l='MpServer', x=292.81, y=62.31, z=-187.69], MoCEntityJellyFish['JellyFish'/209, l='MpServer', x=295.69, y=62.56, z=-167.91], MoCEntityJellyFish['JellyFish'/210, l='MpServer', x=292.59, y=62.11, z=-161.75], pd['Pig'/211, l='MpServer', x=307.72, y=65.00, z=-290.91], oz['Cow'/239, l='MpServer', x=331.22, y=64.00, z=-285.50], MoCEntityBee['Bee'/238, l='MpServer', x=330.32, y=69.46, z=-277.92], pk['Wolf'/237, l='MpServer', x=334.44, y=66.00, z=-274.84], MoCEntityMouse['Mouse'/236, l='MpServer', x=331.53, y=58.00, z=-312.69], MoCEntityButterfly['ButterFly'/232, l='MpServer', x=322.81, y=64.00, z=-327.53], MoCEntityJellyFish['JellyFish'/231, l='MpServer', x=318.56, y=62.02, z=-174.09], MoCEntityJellyFish['JellyFish'/230, l='MpServer', x=319.53, y=62.53, z=-184.19], MoCEntityJellyFish['JellyFish'/229, l='MpServer', x=318.16, y=62.00, z=-182.28], MoCEntityJellyFish['JellyFish'/228, l='MpServer', x=312.41, y=62.02, z=-179.97], MoCEntityJellyFish['JellyFish'/227, l='MpServer', x=310.81, y=62.16, z=-188.59], MoCEntityJellyFish['JellyFish'/226, l='MpServer', x=319.59, y=62.53, z=-198.34], MoCEntityJellyFish['JellyFish'/225, l='MpServer', x=316.36, y=62.35, z=-202.32], oz['Cow'/224, l='MpServer', x=306.69, y=63.00, z=-231.31], pk['Wolf'/255, l='MpServer', x=341.81, y=64.00, z=-251.56], oy['Chicken'/252, l='MpServer', x=345.47, y=64.00, z=-260.44], oy['Chicken'/253, l='MpServer', x=345.38, y=64.00, z=-257.44], oy['Chicken'/250, l='MpServer', x=343.47, y=64.00, z=-264.47], pk['Wolf'/251, l='MpServer', x=344.63, y=65.00, z=-268.56], pd['Pig'/248, l='MpServer', x=334.91, y=66.00, z=-288.03], MoCEntityDuck['Duck'/1205, l='MpServer', x=312.97, y=68.00, z=-297.72], oy['Chicken'/249, l='MpServer', x=339.47, y=67.00, z=-275.53], MoCEntityJellyFish['JellyFish'/246, l='MpServer', x=321.69, y=62.02, z=-180.03], MoCEntityJellyFish['JellyFish'/247, l='MpServer', x=335.94, y=62.09, z=-189.31], MoCEntityJellyFish['JellyFish'/244, l='MpServer', x=321.69, y=62.00, z=-222.91], MoCEntityJellyFish['JellyFish'/245, l='MpServer', x=327.41, y=62.31, z=-194.66], pk['Wolf'/242, l='MpServer', x=332.22, y=63.00, z=-242.53], pk['Wolf'/243, l='MpServer', x=330.66, y=64.00, z=-248.00], pk['Wolf'/240, l='MpServer', x=327.61, y=65.00, z=-278.72], EntityLightJet 1909 (client), MoCEntityDeer['Deer'/256, l='MpServer', x=344.84, y=62.31, z=-239.50], ays['Kye_Duo'/303, l='MpServer', x=280.71, y=75.90, z=-208.02], oz['Cow'/1886, l='MpServer', x=239.50, y=64.00, z=-205.50], oz['Cow'/1874, l='MpServer', x=241.50, y=64.00, z=-199.50], oz['Cow'/1878, l='MpServer', x=247.50, y=64.00, z=-206.50], MoCEntityBird['Bird'/1865, l='MpServer', x=282.42, y=76.32, z=-336.97], oz['Cow'/1870, l='MpServer', x=244.47, y=64.00, z=-202.34], MoCEntityBird['Bird'/1869, l='MpServer', x=293.44, y=73.00, z=-328.75], MoCEntityBird['Bird'/1861, l='MpServer', x=285.25, y=73.00, z=-328.75], MoCEntityGoat['Goat'/1853, l='MpServer', x=283.50, y=73.00, z=-325.50], MoCEntityGoat['Goat'/1849, l='MpServer', x=283.50, y=73.00, z=-328.50], MoCEntityGoat['Goat'/1845, l='MpServer', x=286.74, y=73.00, z=-327.26], MoCEntityBird['Bird'/1825, l='MpServer', x=261.50, y=64.00, z=-194.50], MoCEntityHorse['Horse'/1821, l='MpServer', x=262.50, y=64.00, z=-196.50], MoCEntityBird['Bird'/1817, l='MpServer', x=259.50, y=64.00, z=-192.50], pe['Sheep'/1813, l='MpServer', x=253.50, y=64.00, z=-265.50], EntityBlock['unknown'/504, l='MpServer', x=273.45, y=68.45, z=-240.50], EntityBlock['unknown'/505, l='MpServer', x=283.45, y=68.45, z=-240.50], EntityBlock['unknown'/500, l='MpServer', x=283.45, y=64.50, z=-230.55], EntityBlock['unknown'/501, l='MpServer', x=273.50, y=68.45, z=-230.55], EntityBlock['unknown'/502, l='MpServer', x=273.45, y=64.45, z=-240.50], EntityBlock['unknown'/503, l='MpServer', x=283.45, y=64.45, z=-240.50], EntityBlock['unknown'/496, l='MpServer', x=273.50, y=68.45, z=-240.55], EntityBlock['unknown'/497, l='MpServer', x=283.45, y=64.50, z=-240.55], EntityBlock['unknown'/498, l='MpServer', x=273.50, y=64.45, z=-230.55], EntityBlock['unknown'/499, l='MpServer', x=273.45, y=64.50, z=-230.55], EntityBlock['unknown'/495, l='MpServer', x=273.45, y=64.50, z=-240.55], EntityBlock['unknown'/494, l='MpServer', x=273.50, y=64.45, z=-240.55]]
    Retry entities: 0 total; []
    Stacktrace:
    at ayp.a(WorldClient.java:439)
    at net.minecraft.client.Minecraft.b(Minecraft.java:2409)
    at net.minecraft.client.Minecraft.run(Minecraft.java:789)
    at java.lang.Thread.run(Unknown Source)

    -- System Details --
    Details:
    Minecraft Version: 1.4.7
    Operating System: Windows 7 (amd64) version 6.1
    Java Version: 1.7.0_17, Oracle Corporation
    Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 1444129440 bytes (1377 MB) / 1922760704 bytes (1833 MB) up to 1922760704 bytes (1833 MB)
    JVM Flags: 2 total; -Xms2048m -Xmx2048m
    AABB Pool Size: 26537 (1486072 bytes; 1 MB) allocated, 2768 (155008 bytes; 0 MB) used
    Suspicious classes: FML and Forge are installed
    IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63
    FML: MCP v7.26a FML v4.7.35.556 Minecraft Forge 6.6.2.534 Optifine OptiFine_1.4.6_HD_U_D5 65 mods loaded, 65 mods active
    mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    MiscPeripheralsASM [MiscPeripherals ASM] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    mod_SpawnerGUI [mod_SpawnerGUI] (Spawner GUI.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    mod_ReiMinimap [mod_ReiMinimap] ([1.4.7]ReiMinimap_v3.2_06.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    GuiAPI [GuiAPI] (GuiAPI-0.15.2-1.4.6.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    ComputerCraft [ComputerCraft] (ComputerCraft1.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    CCTurtle [ComputerCraft Turtles] (ComputerCraft1.5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    MiscPeripherals [MiscPeripherals] (miscperipherals-3.1c.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    BuildCraft|Core [BuildCraft] (buildcraft-A-3.4.3.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    BuildCraft|Factory [BC Factory] (buildcraft-A-3.4.3.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    BuildCraft|Transport [BC Transport] (buildcraft-A-3.4.3.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    BuildCraft|Silicon [BC Silicon] (buildcraft-A-3.4.3.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    APUnofficial [Additional Pipes] (AdditionalPipes2.1.3u42-BC3.4.2-MC1.4.7.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    snyke7_AdvancedMachines [Advanced Machines] (AdvancedMachines Original v1.8a.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    BasicComponents [Basic Components] (BasicComponents_v1.2.6.339.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    BuildCraft|Builders [BC Builders] (buildcraft-A-3.4.3.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    BuildCraft|Energy [BC Energy] (buildcraft-A-3.4.3.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    CCCable [ComputerCraft Peripheral Cables] (cccable-1.4.1-universal.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    IC2 [IndustrialCraft 2] (industrialcraft-2_1.115.207-lf.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    ChargePads [Charge Pads] (chargepads-1.4.7-universal-2.4.1.66.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    CompactSolars [Compact Solar Arrays] (compactsolars-universal-1.4.7-4.0.2.28.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    craftguide [CraftGuide] (CraftGuide-1.6.5.12.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    CustomSpawner [DrZhark's CustomSpawner] (CustomMobSpawner 1.11.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    DamageIndicatorsMod [Damage Indicators] (DamageIndicators[1.4.7]2.4.8.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    ImmibisCore [Immibis Core] (immibis-core-52.4.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    DimensionalAnchors [Dimensional Anchors] (dimensional-anchor-52.1.9.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    MoCreatures [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v4.6.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    ElectricExpansion [Electric Expansion] (ElectricExpansion_v1.5.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    EnderStorage [EnderStorage] (EnderStorage 1.4.1.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    GalacticraftCore [Galacticraft Core] (Galacticraft-Alpha-0.0.20.jar.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    GraviGun [GraviGun] (GravityGun1.4.7v2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    GridCraft [GridCraft] (GridCraftV0.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    IC2BackpackHUD [IC2 Backpack HUD] (IC2 Backpack HUD - v2.5 - MC 1.4.6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    ICBM|Contraption [ICBM|Contraption] (ICBM_Contraption_v1.0.5.166.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    ICBM|Sentry [ICBM|Sentry] (ICBM_Sentry_v1.0.5.166.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    ICBM|Explosion [ICBM|Explosion] (ICBM_Explosion_v1.0.5.166.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    mod_InvTweaks [Inventory Tweaks] (InventoryTweaks_v1.49_(1.4.6).zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    IronChest [Iron Chest] (ironchest-universal-1.4.7-5.1.0.249.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    NEIPlugins [NEI Plugins] (NEIPlugins-1.0.4.5.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    OCS [OpenCCSensors] (OpenCCSensors-0.1.4b.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    PortalGun [Portal Gun] (PortalGun1.4.7v5.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    Railcraft [Railcraft] (Railcraft_1.4.7-6.17.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerCore [RedPower] (RedPowerCore-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerBase [RP Base] (RedPowerCore-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerMachine [RP Machine] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerCompat [RP Compat] (RedPowerCompat-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerWiring [RP Wiring] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerLogic [RP Logic] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerLighting [RP Lighting] (RedPowerDigital-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerWorld [RP World] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    RedPowerControl [RP Control] (RedPowerMechanical-2.0pr6.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    mod_SmartMoving [Smart Moving] (Smart Moving Client for ModLoader or Minecraft Forge.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    mod_SmartRender [Smart Render] (Smart Moving Client for ModLoader or Minecraft Forge.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    snyke7_Transformers [Transformers] (Transformers v1.7b.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    Tubestuff [Tubestuff] (tubestuff-52.3.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    TwilightForest [The Twilight Forest] (twilightforest-1.15.4.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    weaponmod [Balkon's WeaponMod] (Weaponmod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    WorldController [World Controller] (WirelessPeripheral - 1.0.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    WR-CBE|Core [WR-CBE Core] (WR-CBE Core 1.3.2.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    WR-CBE|Addons [WR-CBE Addons] (WR-CBE Addons 1.3.2.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    WR-CBE|RedPower [WR-CBE RedPower] (WR-CBE RedPower 1.3.2.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    LWJGL: 2.4.2
    OpenGL: AMD Radeon HD 7700 Series GL version 4.2.12002 Compatibility Profile Context 9.12.0.0, ATI Technologies Inc.
    Is Modded: Definitely; Client brand changed to 'forge,fml'
    Type: Client (map_client.txt)
    Texture Pack: Sphax PureBDCraft 64x MC14.zip
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 12800 (716800 bytes; 0 MB) allocated, 1 (56 bytes; 0 MB) used


    are you sure that you have the correct version of Render? the official thread counts the 1.4.7 versions only up to 1.2. I would suggest updating the render to whatever the final 1.4.7 version was. Then see what happens
    Posted in: WIP Mods
  • 0

    posted a message on ChickenBones Mods
    cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: codechicken/enderstorage/BlockEnderChest
    at cpw.mods.fml.common.LoadController.transition(LoadController.java:130)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:680)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:207)
    at net.minecraft.client.Minecraft.a(Minecraft.java:458)
    at asq.a(SourceFile:56)
    at net.minecraft.client.Minecraft.run(Minecraft.java:746)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NoClassDefFoundError: codechicken/enderstorage/BlockEnderChest
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at cpw.mods.fml.common.event.FMLPostInitializationEvent.buildSoftDependProxy(FMLPostInitializationEvent.java:27)
    at miscperipherals.core.MiscPeripherals.onLoaded(MiscPeripherals.java:269)
    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:487)
    at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:153)
    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.EventHandler.handleEvent(EventHandler.java:69)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:86)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:679)
    ... 5 more
    Caused by: java.lang.ClassNotFoundException: codechicken.enderstorage.BlockEnderChest
    at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:185)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)


    Seriously anyone know what the problem with enderstorage is????



    Ok mayb my lack of understanding the error, but the problem is with MiscPeripherals
    Posted in: Minecraft Mods
  • 0

    posted a message on ChickenBones Mods
    Getting an error with the latest enderstorage for 1.4.7

    • cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: codechicken/enderstorage/BlockEnderChest
    • at cpw.mods.fml.common.LoadController.transition(LoadController.java:130)
    • at cpw.mods.fml.common.Loader.initializeMods(Loader.java:680)
    • at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:207)
    • at net.minecraft.client.Minecraft.a(Minecraft.java:458)
    • at asq.a(SourceFile:56)
    • at net.minecraft.client.Minecraft.run(Minecraft.java:746)
    • at java.lang.Thread.run(Unknown Source)
    • Caused by: java.lang.NoClassDefFoundError: codechicken/enderstorage/BlockEnderChest
    • at java.lang.Class.forName0(Native Method)
    • at java.lang.Class.forName(Unknown Source)
    • at cpw.mods.fml.common.event.FMLPostInitializationEvent.buildSoftDependProxy(FMLPostInitializationEvent.java:27)
    • at miscperipherals.core.MiscPeripherals.onLoaded(MiscPeripherals.java:269)
    • 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:487)
    • at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    • at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    • at java.lang.reflect.Method.invoke(Unknown Source)
    • at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
    • at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    • at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    • at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    • at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    • at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:153)
    • 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.EventHandler.handleEvent(EventHandler.java:69)
    • at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    • at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    • at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    • at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    • at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:86)
    • at cpw.mods.fml.common.Loader.initializeMods(Loader.java:679)
    • ... 5 more
    • Caused by: java.lang.ClassNotFoundException: codechicken.enderstorage.BlockEnderChest
    • at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:185)
    • at java.lang.ClassLoader.loadClass(Unknown Source)
    • at java.lang.ClassLoader.loadClass(Unknown Source)
    • ... 34 more
    • Caused by: java.lang.NullPointerException
    • --- END ERROR REPORT e39b880b ----------
    Posted in: Minecraft Mods
  • 0

    posted a message on ChickenBones Mods
    So i am getting a crash with the latest 1.4.7 version of enderstorage where it can't find the block for the enderchest

    http://pastebin.com/...xWm93eh5

    thats the crash report
    Posted in: Minecraft Mods
  • To post a comment, please .