
invizzble
Members-
Posts
59 -
Joined
-
Last visited
Everything posted by invizzble
-
i heard some people saying that you need another file in the run configuration to start minecraft inside eclipse, i tested it with start and that didn't work so yeah... do you need a new file and so yes, wich one?
-
Minecraft 1.6 Eclipse Library import help [solved]
invizzble replied to invizzble's topic in Modder Support
I missed the library in this folder : forge\mcp\jars\libraries\commons-io\commons-io\2.4 ,, stupid mistake -
Minecraft 1.6 Eclipse Library import help [solved]
invizzble replied to invizzble's topic in Modder Support
aaaaaaaaaaaaaaaand solved... found the missing library -
Minecraft 1.6 Eclipse Library import help [solved]
invizzble replied to invizzble's topic in Modder Support
i hate to do this but i really want to code again so *BUMP* :c -
have you already imported the needed libraries?
-
Minecraft 1.6 Eclipse Library import help [solved]
invizzble replied to invizzble's topic in Modder Support
yes i tried it already and i looked into the commons-lang3-3.1 jar and didn't find the io map, the only thing i can find there is the lang3 map ... so yeah,, do i need to redownload it or do i miss a library? the list of my imported libraries: argo-2.25_fixed guava-14.0 jinput-2.0.5 lwjg2.9.0 LWJGL_util-2.9.0 asm-all-4.1 1.6.1(from the mc version folder) launchwrapper-1.3 jopt-simple-4.5 gson-2.2.2 bcprov-jdk15on-1.47 lzma-0.0.1 soundsystem-20120107 commons-lang3-3.1 -
my minecraft couldn't find an import (this one : import org.apache.commons.io.Charsets;) and i was wondering where i could find it. NOTE: I HAVE ALREADY IMPORTED THE commons-lang3-3.1 IMPORTED
-
Help! i made a dimension in my mod and i tried to install forge for mc 1.6 buth couldn't install it ('cause off that i couldn't find the right files) and i putted it back 1.5 but now my fire code won't work anymore because it misses some methods in blockbreakable (the methods are trytocreateportal and canblockcatchfire)... can someone help me? fire code : package invizzble.mods.nc.blocks; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.BlockFire; import net.minecraft.block.BlockHalfSlab; import net.minecraft.block.BlockLeaves; import net.minecraft.block.BlockTallGrass; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.Icon; import net.minecraft.world.GameRules; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import net.minecraftforge.common.ForgeDirection; public class BlockNightmareFire extends BlockFire { private int[] chanceToEncourageFire = new int[256]; private int[] abilityToCatchFire = new int[256]; @SideOnly(Side.CLIENT) private Icon[] iconArray; public BlockNightmareFire(int par1) { super(par1); setTickRandomly(true); setCreativeTab(CreativeTabs.tabMaterials); } public Icon getIcon(int par1, int par2) { return this.blockIcon; } public void initializeBlock() { this.abilityToCatchFire = Block.blockFlammability; this.chanceToEncourageFire = Block.blockFireSpreadSpeed; setBurnRate(Block.planks.blockID, 5, 20); setBurnRate(Block.woodDoubleSlab.blockID, 5, 20); setBurnRate(Block.woodSingleSlab.blockID, 5, 20); setBurnRate(Block.fence.blockID, 5, 20); setBurnRate(Block.stairsWoodOak.blockID, 5, 20); setBurnRate(Block.stairsWoodBirch.blockID, 5, 20); setBurnRate(Block.stairsWoodSpruce.blockID, 5, 20); setBurnRate(Block.stairsWoodJungle.blockID, 5, 20); setBurnRate(Block.wood.blockID, 5, 5); setBurnRate(Block.leaves.blockID, 30, 60); setBurnRate(Block.bookShelf.blockID, 30, 20); setBurnRate(Block.tnt.blockID, 15, 100); setBurnRate(Block.tallGrass.blockID, 60, 100); setBurnRate(Block.cloth.blockID, 30, 60); setBurnRate(Block.vine.blockID, 15, 100); } private void setBurnRate(int par1, int par2, int par3) { Block.setBurnProperties(par1, par2, par3); } public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int par4) { return null; } public boolean isOpaqueCube() { return false; } public boolean renderAsNormalBlock() { return false; } public int getRenderType() { return 3; } public int quantityDropped(Random par1Random) { return 0; } public int tickRate(World par1World) { return 30; } public void updateTick(World par1World, int par2, int par3, int par4, Random par5Random) { if (par1World.getGameRules().getGameRuleBooleanValue("doFireTick")) { Block base = Block.blocksList[par1World.getBlockId(par2, par3 - 1, par4)]; boolean flag = (base != null) && (base.isFireSource(par1World, par2, par3 - 1, par4, par1World.getBlockMetadata(par2, par3 - 1, par4), ForgeDirection.UP)); if (!canPlaceBlockAt(par1World, par2, par3, par4)) { par1World.setBlockToAir(par2, par3, par4); } if ((!flag) && (par1World.isRaining()) && ((par1World.canLightningStrikeAt(par2, par3, par4)) || (par1World.canLightningStrikeAt(par2 - 1, par3, par4)) || (par1World.canLightningStrikeAt(par2 + 1, par3, par4)) || (par1World.canLightningStrikeAt(par2, par3, par4 - 1)) || (par1World.canLightningStrikeAt(par2, par3, par4 + 1)))) { par1World.setBlockToAir(par2, par3, par4); } else { int l = par1World.getBlockMetadata(par2, par3, par4); if (l < 15) { par1World.setBlockMetadataWithNotify(par2, par3, par4, l + par5Random.nextInt(3) / 2, 4); } par1World.scheduleBlockUpdate(par2, par3, par4, this.blockID, tickRate(par1World) + par5Random.nextInt(10)); if ((!flag) && (!canNeighborBurn(par1World, par2, par3, par4))) { if ((!par1World.doesBlockHaveSolidTopSurface(par2, par3 - 1, par4)) || (l > 3)) { par1World.setBlockToAir(par2, par3, par4); } } else if ((!flag) && (!canBlockCatchFire(par1World, par2, par3 - 1, par4, ForgeDirection.UP)) && (l == 15) && (par5Random.nextInt(4) == 0)) { par1World.setBlockToAir(par2, par3, par4); } else { boolean flag1 = par1World.isBlockHighHumidity(par2, par3, par4); byte b0 = 0; if (flag1) { b0 = -50; } tryToCatchBlockOnFire(par1World, par2 + 1, par3, par4, 300 + b0, par5Random, l, ForgeDirection.WEST); tryToCatchBlockOnFire(par1World, par2 - 1, par3, par4, 300 + b0, par5Random, l, ForgeDirection.EAST); tryToCatchBlockOnFire(par1World, par2, par3 - 1, par4, 250 + b0, par5Random, l, ForgeDirection.UP); tryToCatchBlockOnFire(par1World, par2, par3 + 1, par4, 250 + b0, par5Random, l, ForgeDirection.DOWN); tryToCatchBlockOnFire(par1World, par2, par3, par4 - 1, 300 + b0, par5Random, l, ForgeDirection.SOUTH); tryToCatchBlockOnFire(par1World, par2, par3, par4 + 1, 300 + b0, par5Random, l, ForgeDirection.NORTH); for (int i1 = par2 - 1; i1 <= par2 + 1; i1++) { for (int j1 = par4 - 1; j1 <= par4 + 1; j1++) { for (int k1 = par3 - 1; k1 <= par3 + 4; k1++) { if ((i1 != par2) || (k1 != par3) || (j1 != par4)) { int l1 = 100; if (k1 > par3 + 1) { l1 += (k1 - (par3 + 1)) * 100; } int i2 = getChanceOfNeighborsEncouragingFire(par1World, i1, k1, j1); if (i2 > 0) { int j2 = (i2 + 40 + par1World.difficultySetting * 7) / (l + 30); if (flag1) { j2 /= 2; } if ((j2 > 0) && (par5Random.nextInt(l1) <= j2) && ((!par1World.isRaining()) || (!par1World.canLightningStrikeAt(i1, k1, j1))) && (!par1World.canLightningStrikeAt(i1 - 1, k1, par4)) && (!par1World.canLightningStrikeAt(i1 + 1, k1, j1)) && (!par1World.canLightningStrikeAt(i1, k1, j1 - 1)) && (!par1World.canLightningStrikeAt(i1, k1, j1 + 1))) { int k2 = l + par5Random.nextInt(5) / 4; if (k2 > 15) { k2 = 15; } par1World.setBlock(i1, k1, j1, this.blockID, k2, 3); } } } } } } } } } } public boolean func_82506_l() { return true; } @Deprecated private void tryToCatchBlockOnFire(World par1World, int par2, int par3, int par4, int par5, Random par6Random, int par7) { tryToCatchBlockOnFire(par1World, par2, par3, par4, par5, par6Random, par7, ForgeDirection.UP); } private void tryToCatchBlockOnFire(World par1World, int par2, int par3, int par4, int par5, Random par6Random, int par7, ForgeDirection face) { int j1 = 0; Block block = Block.blocksList[par1World.getBlockId(par2, par3, par4)]; if (block != null) { j1 = block.getFlammability(par1World, par2, par3, par4, par1World.getBlockMetadata(par2, par3, par4), face); } if (par6Random.nextInt(par5) < j1) { boolean flag = par1World.getBlockId(par2, par3, par4) == Block.tnt.blockID; if ((par6Random.nextInt(par7 + 10) < 5) && (!par1World.canLightningStrikeAt(par2, par3, par4))) { int k1 = par7 + par6Random.nextInt(5) / 4; if (k1 > 15) { k1 = 15; } par1World.setBlock(par2, par3, par4, this.blockID, k1, 3); } else { par1World.setBlockToAir(par2, par3, par4); } if (flag) { Block.tnt.onBlockDestroyedByPlayer(par1World, par2, par3, par4, 1); } } } private boolean canNeighborBurn(World par1World, int par2, int par3, int par4) { return (canBlockCatchFire(par1World, par2 + 1, par3, par4, ForgeDirection.WEST)) || (canBlockCatchFire(par1World, par2 - 1, par3, par4, ForgeDirection.EAST)) || (canBlockCatchFire(par1World, par2, par3 - 1, par4, ForgeDirection.UP)) || (canBlockCatchFire(par1World, par2, par3 + 1, par4, ForgeDirection.DOWN)) || (canBlockCatchFire(par1World, par2, par3, par4 - 1, ForgeDirection.SOUTH)) || (canBlockCatchFire(par1World, par2, par3, par4 + 1, ForgeDirection.NORTH)); } private int getChanceOfNeighborsEncouragingFire(World par1World, int par2, int par3, int par4) { byte b0 = 0; if (!par1World.isAirBlock(par2, par3, par4)) { return 0; } int l = getChanceToEncourageFire(par1World, par2 + 1, par3, par4, b0, ForgeDirection.WEST); l = getChanceToEncourageFire(par1World, par2 - 1, par3, par4, l, ForgeDirection.EAST); l = getChanceToEncourageFire(par1World, par2, par3 - 1, par4, l, ForgeDirection.UP); l = getChanceToEncourageFire(par1World, par2, par3 + 1, par4, l, ForgeDirection.DOWN); l = getChanceToEncourageFire(par1World, par2, par3, par4 - 1, l, ForgeDirection.SOUTH); l = getChanceToEncourageFire(par1World, par2, par3, par4 + 1, l, ForgeDirection.NORTH); return l; } public boolean isCollidable() { return false; } @Deprecated public boolean canBlockCatchFire(IBlockAccess par1IBlockAccess, int par2, int par3, int par4) { return canBlockCatchFire(par1IBlockAccess, par2, par3, par4, ForgeDirection.UP); } @Deprecated public int getChanceToEncourageFire(World par1World, int par2, int par3, int par4, int par5) { return getChanceToEncourageFire(par1World, par2, par3, par4, par5, ForgeDirection.UP); } public boolean canPlaceBlockAt(World par1World, int par2, int par3, int par4) { return (par1World.doesBlockHaveSolidTopSurface(par2, par3 - 1, par4)) || (canNeighborBurn(par1World, par2, par3, par4)); } public void onNeighborBlockChange(World par1World, int par2, int par3, int par4, int par5) { if ((!par1World.doesBlockHaveSolidTopSurface(par2, par3 - 1, par4)) && (!canNeighborBurn(par1World, par2, par3, par4))) { par1World.setBlockToAir(par2, par3, par4); } } public void onBlockAdded(World par1World, int par2, int par3, int par4) { /** Change these to your portal frame and Portal block **/ if ((par1World.getBlockId(par2, par3 - 1, par4) != Block.blockDiamond.blockID) || (!ModBlocks.NightmarePortal.tryToCreatePortal(par1World, par2, par3, par4))) { if ((!par1World.doesBlockHaveSolidTopSurface(par2, par3 - 1, par4)) && (!canNeighborBurn(par1World, par2, par3, par4))) { par1World.setBlockToAir(par2, par3, par4); } else { par1World.scheduleBlockUpdate(par2, par3, par4, this.blockID, tickRate(par1World) + par1World.rand.nextInt(10)); } } } @SideOnly(Side.CLIENT) public void randomDisplayTick(World par1World, int par2, int par3, int par4, Random par5Random) { if (par5Random.nextInt(24) == 0) { par1World.playSound(par2 + 0.5F, par3 + 0.5F, par4 + 0.5F, "fire.fire", 1.0F + par5Random.nextFloat(), par5Random.nextFloat() * 0.7F + 0.3F, false); } if ((!par1World.doesBlockHaveSolidTopSurface(par2, par3 - 1, par4)) && (!ModBlocks.NightmarePortal.canBlockCatchFire(par1World, par2, par3 - 1, par4, ForgeDirection.UP))) { if (ModBlocks.NightmarePortal.canBlockCatchFire(par1World, par2 - 1, par3, par4, ForgeDirection.EAST)) { for (int l = 0; l < 2; l++) { float f = par2 + par5Random.nextFloat() * 0.1F; float f1 = par3 + par5Random.nextFloat(); float f2 = par4 + par5Random.nextFloat(); par1World.spawnParticle("largesmoke", f, f1, f2, 0.0D, 0.0D, 0.0D); } } if (ModBlocks.NightmarePortal.canBlockCatchFire(par1World, par2 + 1, par3, par4, ForgeDirection.WEST)) { for (int l = 0; l < 2; l++) { float f = par2 + 1 - par5Random.nextFloat() * 0.1F; float f1 = par3 + par5Random.nextFloat(); float f2 = par4 + par5Random.nextFloat(); par1World.spawnParticle("largesmoke", f, f1, f2, 0.0D, 0.0D, 0.0D); } } if (ModBlocks.NightmarePortal.canBlockCatchFire(par1World, par2, par3, par4 - 1, ForgeDirection.SOUTH)) { for (int l = 0; l < 2; l++) { float f = par2 + par5Random.nextFloat(); float f1 = par3 + par5Random.nextFloat(); float f2 = par4 + par5Random.nextFloat() * 0.1F; par1World.spawnParticle("largesmoke", f, f1, f2, 0.0D, 0.0D, 0.0D); } } if (ModBlocks.NightmarePortal.canBlockCatchFire(par1World, par2, par3, par4 + 1, ForgeDirection.NORTH)) { for (int l = 0; l < 2; l++) { float f = par2 + par5Random.nextFloat(); float f1 = par3 + par5Random.nextFloat(); float f2 = par4 + 1 - par5Random.nextFloat() * 0.1F; par1World.spawnParticle("largesmoke", f, f1, f2, 0.0D, 0.0D, 0.0D); } } if (ModBlocks.NightmarePortal.canBlockCatchFire(par1World, par2, par3 + 1, par4, ForgeDirection.DOWN)) { for (int l = 0; l < 2; l++) { float f = par2 + par5Random.nextFloat(); float f1 = par3 + 1 - par5Random.nextFloat() * 0.1F; float f2 = par4 + par5Random.nextFloat(); par1World.spawnParticle("largesmoke", f, f1, f2, 0.0D, 0.0D, 0.0D); } } } else { for (int l = 0; l < 3; l++) { float f = par2 + par5Random.nextFloat(); float f1 = par3 + par5Random.nextFloat() * 0.5F + 0.5F; float f2 = par4 + par5Random.nextFloat(); par1World.spawnParticle("largesmoke", f, f1, f2, 0.0D, 0.0D, 0.0D); } } } public boolean canBlockCatchFire(IBlockAccess world, int x, int y, int z, ForgeDirection face) { Block block = Block.blocksList[world.getBlockId(x, y, z)]; if (block != null) { return block.isFlammable(world, x, y, z, world.getBlockMetadata(x, y, z), face); } return false; } public int getChanceToEncourageFire(World world, int x, int y, int z, int oldChance, ForgeDirection face) { int newChance = 0; Block block = Block.blocksList[world.getBlockId(x, y, z)]; if (block != null) { newChance = block.getFireSpreadSpeed(world, x, y, z, world.getBlockMetadata(x, y, z), face); } return newChance > oldChance ? newChance : oldChance; } /** registers Icons, set textures here **/ @SideOnly(Side.CLIENT) public void registerIcons(IconRegister par1IconRegister) { this.iconArray = new Icon[] { par1IconRegister.registerIcon("Tutorial:Tutorialfire_0"), par1IconRegister.registerIcon("Tutorial:Tutorialfire_1") }; } @SideOnly(Side.CLIENT) public Icon func_94438_c(int par1) { return this.iconArray[par1]; } @SideOnly(Side.CLIENT) public Icon getBlockTextureFromSideAndMetadata(int par1, int par2) { return this.iconArray[0]; } } blockbreakable: package net.minecraft.block; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; public class BlockBreakable extends Block { private boolean localFlag; private String breakableBlockIcon; protected BlockBreakable(int par1, String par2Str, Material par3Material, boolean par4) { super(par1, par3Material); this.localFlag = par4; this.breakableBlockIcon = par2Str; } /** * Is this block (a) opaque and (b) a full 1m cube? This determines whether or not to render the shared face of two * adjacent blocks and also whether the player can attach torches, redstone wire, etc to this block. */ public boolean isOpaqueCube() { return false; } @SideOnly(Side.CLIENT) /** * Returns true if the given side of this block type should be rendered, if the adjacent block is at the given * coordinates. Args: blockAccess, x, y, z, side */ public boolean shouldSideBeRendered(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5) { int i1 = par1IBlockAccess.getBlockId(par2, par3, par4); return !this.localFlag && i1 == this.blockID ? false : super.shouldSideBeRendered(par1IBlockAccess, par2, par3, par4, par5); } @SideOnly(Side.CLIENT) /** * When this method is called, your block should register all the icons it needs with the given IconRegister. This * is the only chance you get to register icons. */ public void registerIcons(IconRegister par1IconRegister) { this.blockIcon = par1IconRegister.registerIcon(this.breakableBlockIcon); } }
-
Sorry thought you meant crash-report here is it 2013-06-24 18:48:22 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.23.734 for Minecraft 1.5.2 loading 2013-06-24 18:48:22 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_21, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre7 2013-06-24 18:48:22 [FINE] [ForgeModLoader] Java classpath at launch is C:\development\eclipse\Minecraft\bin;C:\Users\Raf\Dropbox\Developement\mcp\lib\argo-3.2-src.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\asm-debug-all-4.1.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\bcprov-debug-jdk15on-148.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\guava-14.0-rc3.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\scala-library.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\jinput.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl_util.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\minecraft.jar;C:\development\eclipse\Block\bin;C:\development\eclipse\BuildCraft\bin;C:\development\eclipse\EE3\bin;C:\development\eclipse\SC\bin;C:\development\eclipse\NC\bin 2013-06-24 18:48:22 [FINE] [ForgeModLoader] Java library path at launch is C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\natives;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\natives 2013-06-24 18:48:22 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] All core mods are successfully located 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Discovering coremods 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file argo-small-3.2.jar present and correct in lib dir 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file guava-14.0-rc3.jar present and correct in lib dir 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file asm-all-4.1.jar present and correct in lib dir 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-148.jar present and correct in lib dir 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file deobfuscation_data_1.5.2.zip present and correct in lib dir 2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file scala-library.jar present and correct in lib dir 2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Running coremod plugins 2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Validating minecraft 2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Minecraft validated, launching... 2013-06-24 18:48:26 [iNFO] [sTDOUT] 229 recipes 2013-06-24 18:48:26 [iNFO] [sTDOUT] 27 achievements 2013-06-24 18:48:26 [iNFO] [Minecraft-Client] Setting user: tomasdude 2013-06-24 18:48:26 [iNFO] [sTDOUT] (Session ID is 2631858866370254014) 2013-06-24 18:48:26 [iNFO] [sTDERR] Client asked for parameter: server 2013-06-24 18:48:26 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2 2013-06-24 18:48:27 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-06-24 18:48:27 [iNFO] [sTDOUT] MinecraftForge v7.8.0.734 Initialized 2013-06-24 18:48:27 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.734 Initialized 2013-06-24 18:48:27 [iNFO] [sTDOUT] Replaced 85 ore recipies 2013-06-24 18:48:27 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-06-24 18:48:27 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Raf\Dropbox\Developement\mcp\jars\config\logging.properties 2013-06-24 18:48:27 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\Minecraft\bin, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\lib\argo-3.2-src.jar, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\lib\asm-debug-all-4.1.jar, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\lib\bcprov-debug-jdk15on-148.jar, examining for mod candidates 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\lib\guava-14.0-rc3.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\lib\scala-library.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\jinput.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl_util.jar 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\minecraft.jar, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\Block\bin, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\BuildCraft\bin, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\EE3\bin, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\SC\bin, examining for mod candidates 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\NC\bin, examining for mod candidates 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\argo-small-3.2.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\guava-14.0-rc3.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\asm-all-4.1.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\bcprov-jdk15on-148.jar 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\deobfuscation_data_1.5.2.zip 2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\scala-library.jar 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2013-06-24 18:48:27 [iNFO] [ForgeModLoader] Searching C:\Users\Raf\Dropbox\Developement\mcp\jars\mods for mods 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.block 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.core 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.item 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.tileentity 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers.deobf 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft.powercrystals 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft.powercrystals.minefactoryreloaded 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft.powercrystals.minefactoryreloaded.api 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package ibxm 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block.material 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.audio 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity.render 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.achievement 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.inventory 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.mco 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.model 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.multiplayer 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.particle 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.culling 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.entity 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.texture 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.tileentity 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.settings 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.stats 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.texturepacks 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.command 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.crash 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.creativetab 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.dispenser 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.enchantment 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.ai 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.boss 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.effect 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.item 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.monster 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.passive 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.player 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.projectile 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.inventory 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item.crafting 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.logging 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.nbt 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.packet 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.rcon 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.pathfinding 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.potion 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.profiler 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.scoreboard 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.dedicated 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.gui 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.integrated 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.management 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.stats 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.tileentity 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.util 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.village 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.biome 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk.storage 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.demo 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.feature 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.layer 2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.structure 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.storage 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model.obj 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common.network 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common.network.packet 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.brewing 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.item 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.terraingen 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.liquids 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package paulscode 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api.crafting 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api.item 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api.tileentity 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file argo-3.2-src.jar for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container argo-3.2-src.jar appears to be missing an mcmod.info file 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file asm-debug-all-4.1.jar for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container asm-debug-all-4.1.jar appears to be missing an mcmod.info file 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file bcprov-debug-jdk15on-148.jar for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container bcprov-debug-jdk15on-148.jar appears to be missing an mcmod.info file 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.block 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod invizzble.mods.blocks.Blocks 2013-06-24 18:48:28 [FINEST] [bC] Parsed dependency info : [Forge@[7.7.1.650,)] [Forge@[7.7.1.650,)] [] 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.command 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.configuration 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.configuration.registers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core.handlers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core.proxy 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core.util 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.creativetab 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.entitys 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.entitys.render 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.item 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.lib 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.recipes 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.world 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.world.gen 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.armor 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.effects 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.models 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.armor 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.effects 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.models 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.blueprints 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.bptblocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.core 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.filler 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.fuels 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.gates 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.inventory 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.power 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.recipes 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.tools 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.transport 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftBuilders 2013-06-24 18:48:28 [FINEST] [buildCraft|Builders] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] [] 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftCore 2013-06-24 18:48:28 [FINEST] [buildCraft|Core] Parsed dependency info : [Forge@[7.7.2.682,)] [Forge@[7.7.2.682,)] [] 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftEnergy 2013-06-24 18:48:28 [FINEST] [buildCraft|Energy] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] [] 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftFactory 2013-06-24 18:48:28 [FINEST] [buildCraft|Factory] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] [] 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftSilicon 2013-06-24 18:48:28 [FINEST] [buildCraft|Silicon] Parsed dependency info : [buildCraft|Transport@VERSION] [buildCraft|Transport@VERSION] [] 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftTransport 2013-06-24 18:48:28 [FINEST] [buildCraft|Transport] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] [] 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.builders 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.builders.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.builders.network 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.blueprints 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui.buttons 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui.slots 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui.tooltips 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.inventory 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.network 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.proxy 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.render 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.triggers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.utils 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy.render 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy.worldgen 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory.network 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory.render 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.silicon 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.silicon.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.silicon.network 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.blueprints 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.network 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.pipes 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.render 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.triggers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.utils 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package changelog 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.entities 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package lang 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package lang.buildcraft 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.blocks.fillerPatterns 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.items.icons 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.items.triggers 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.block 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.audio 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.gui.inventory 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.model 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.renderer 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.renderer.item 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.renderer.tileentity 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.command 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.configuration 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.addons 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.handlers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.proxy 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.util 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.creativetab 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.emc 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.pahimar.ee3.EquivalentExchange3 2013-06-24 18:48:28 [FINEST] [EE3] Parsed dependency info : [Forge@[7.7.1.650,)] [Forge@[7.7.1.650,)] [] 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.event 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.inventory 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.item 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.item.crafting 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.lib 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.network 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.network.packet 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.recipe 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.tileentity 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.lang 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.models 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.sound 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.effects 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.logo 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.models 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.effects 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.logo 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.models 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC.configuration 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC.item 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC.lib 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod invizzble.mods.SC.SC 2013-06-24 18:48:28 [FINEST] [sC] Parsed dependency info : [] [] [] 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.armor 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.effects 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.gui 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.models 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods 2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.hooks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.info 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.objects 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.objects.info 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.objects.pack 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.refs 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.refs.heads 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.refs.tags 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.biomes 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.blocks 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.configuration 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.configuration.registers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.core 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.core.handlers 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.creativetab 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.dimension 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.items 2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.lib 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Identified an FMLMod type mod invizzble.mods.nc.NM 2013-06-24 18:48:29 [FINEST] [NC] Parsed dependency info : [] [] [] 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.recipes 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.world 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.world.gen 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.armor 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.blocks 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.effects 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.gui 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.items 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.models 2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 13 mods to load 2013-06-24 18:48:29 [FINER] [ForgeModLoader] Received a system property request '' 2013-06-24 18:48:29 [FINER] [ForgeModLoader] System property request managing the state of 0 mods 2013-06-24 18:48:29 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\Raf\Dropbox\Developement\mcp\jars\config\logging.properties 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Reloaded logging properties 2013-06-24 18:48:29 [FINE] [mcp] Mod Logging channel mcp configured at default level. 2013-06-24 18:48:29 [iNFO] [mcp] Activating mod mcp 2013-06-24 18:48:29 [FINE] [FML] Mod Logging channel FML configured at default level. 2013-06-24 18:48:29 [iNFO] [FML] Activating mod FML 2013-06-24 18:48:29 [FINE] [Forge] Mod Logging channel Forge configured at default level. 2013-06-24 18:48:29 [iNFO] [Forge] Activating mod Forge 2013-06-24 18:48:29 [FINE] [bC] Enabling mod BC 2013-06-24 18:48:29 [FINE] [bC] Mod Logging channel BC configured at default level. 2013-06-24 18:48:29 [iNFO] [bC] Activating mod BC 2013-06-24 18:48:29 [FINE] [buildCraft|Builders] Enabling mod BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [buildCraft|Builders] Mod Logging channel BuildCraft|Builders configured at default level. 2013-06-24 18:48:29 [iNFO] [buildCraft|Builders] Activating mod BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [buildCraft|Core] Enabling mod BuildCraft|Core 2013-06-24 18:48:29 [FINE] [buildCraft|Core] Mod Logging channel BuildCraft|Core configured at default level. 2013-06-24 18:48:29 [iNFO] [buildCraft|Core] Activating mod BuildCraft|Core 2013-06-24 18:48:29 [FINE] [buildCraft|Energy] Enabling mod BuildCraft|Energy 2013-06-24 18:48:29 [FINE] [buildCraft|Energy] Mod Logging channel BuildCraft|Energy configured at default level. 2013-06-24 18:48:29 [iNFO] [buildCraft|Energy] Activating mod BuildCraft|Energy 2013-06-24 18:48:29 [FINE] [buildCraft|Factory] Enabling mod BuildCraft|Factory 2013-06-24 18:48:29 [FINE] [buildCraft|Factory] Mod Logging channel BuildCraft|Factory configured at default level. 2013-06-24 18:48:29 [iNFO] [buildCraft|Factory] Activating mod BuildCraft|Factory 2013-06-24 18:48:29 [FINE] [buildCraft|Silicon] Enabling mod BuildCraft|Silicon 2013-06-24 18:48:29 [FINE] [buildCraft|Silicon] Mod Logging channel BuildCraft|Silicon configured at default level. 2013-06-24 18:48:29 [iNFO] [buildCraft|Silicon] Activating mod BuildCraft|Silicon 2013-06-24 18:48:29 [FINE] [buildCraft|Transport] Enabling mod BuildCraft|Transport 2013-06-24 18:48:29 [FINE] [buildCraft|Transport] Mod Logging channel BuildCraft|Transport configured at default level. 2013-06-24 18:48:29 [iNFO] [buildCraft|Transport] Activating mod BuildCraft|Transport 2013-06-24 18:48:29 [FINE] [EE3] Enabling mod EE3 2013-06-24 18:48:29 [FINE] [EE3] Mod Logging channel EE3 configured at default level. 2013-06-24 18:48:29 [iNFO] [EE3] Activating mod EE3 2013-06-24 18:48:29 [FINE] [sC] Enabling mod SC 2013-06-24 18:48:29 [FINE] [sC] Mod Logging channel SC configured at default level. 2013-06-24 18:48:29 [iNFO] [sC] Activating mod SC 2013-06-24 18:48:29 [FINE] [NC] Enabling mod NC 2013-06-24 18:48:29 [FINE] [NC] Mod Logging channel NC configured at default level. 2013-06-24 18:48:29 [iNFO] [NC] Activating mod NC 2013-06-24 18:48:29 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied 2013-06-24 18:48:29 [FINER] [ForgeModLoader] All mod requirements are satisfied 2013-06-24 18:48:29 [FINER] [ForgeModLoader] Sorting mods into an ordered list 2013-06-24 18:48:29 [FINER] [ForgeModLoader] Mod sorting completed successfully 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Mod sorting data 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BC(BlockCraft:0.1): bin (required-after:Forge@[7.7.1.650,)) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Core(BuildCraft:@VERSION@): bin (required-after:Forge@[7.7.2.682,)) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Builders(BC Builders:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Energy(BC Energy:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Factory(BC Factory:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Transport(BC Transport:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Silicon(BC Silicon:@VERSION@): bin (required-after:BuildCraft|Transport@@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] EE3(Equivalent Exchange 3:@VERSION@ (build @BUILD_NUMBER@)): bin (required-after:Forge@[7.7.1.650,)) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] SC(scientomic craft:0.0.1): bin () 2013-06-24 18:48:29 [FINE] [ForgeModLoader] NC(Nightmare Craft:alpha 1.0): bin () 2013-06-24 18:48:29 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp 2013-06-24 18:48:29 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp 2013-06-24 18:48:29 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML 2013-06-24 18:48:29 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML 2013-06-24 18:48:29 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge 2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod Forge to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod Forge accepts its own version (7.8.0.734) 2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-06-24 18:48:29 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge 2013-06-24 18:48:29 [FINEST] [bC] Sending event FMLConstructionEvent to mod BC 2013-06-24 18:48:29 [FINER] [bC] The mod BC is expecting signature @FINGERPRINT@ for source bin, however there is no signature matching that description 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BC to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BC accepts its own version (0.1) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BC 2013-06-24 18:48:29 [sEVERE] [bC] The copy of BlockCraft that you are running has been modified from the original, and unpredictable things may happen. Please consider re-downloading the original version of the mod. 2013-06-24 18:48:29 [FINEST] [bC] Sent event FMLConstructionEvent to mod BC 2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sending event FMLConstructionEvent to mod BuildCraft|Core 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Core to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Core accepts its own version (@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Core 2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sent event FMLConstructionEvent to mod BuildCraft|Core 2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sending event FMLConstructionEvent to mod BuildCraft|Builders 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Builders to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Builders accepts its own version (@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Builders 2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sent event FMLConstructionEvent to mod BuildCraft|Builders 2013-06-24 18:48:29 [FINEST] [buildCraft|Energy] Sending event FMLConstructionEvent to mod BuildCraft|Energy 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Energy to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Energy accepts its own version (@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Energy 2013-06-24 18:48:29 [FINEST] [buildCraft|Energy] Sent event FMLConstructionEvent to mod BuildCraft|Energy 2013-06-24 18:48:29 [FINEST] [buildCraft|Factory] Sending event FMLConstructionEvent to mod BuildCraft|Factory 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Factory to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Factory accepts its own version (@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Factory 2013-06-24 18:48:29 [FINEST] [buildCraft|Factory] Sent event FMLConstructionEvent to mod BuildCraft|Factory 2013-06-24 18:48:29 [FINEST] [buildCraft|Transport] Sending event FMLConstructionEvent to mod BuildCraft|Transport 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Transport to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Transport accepts its own version (@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Transport 2013-06-24 18:48:29 [FINEST] [buildCraft|Transport] Sent event FMLConstructionEvent to mod BuildCraft|Transport 2013-06-24 18:48:29 [FINEST] [buildCraft|Silicon] Sending event FMLConstructionEvent to mod BuildCraft|Silicon 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Silicon to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Silicon accepts its own version (@VERSION@) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Silicon 2013-06-24 18:48:29 [FINEST] [buildCraft|Silicon] Sent event FMLConstructionEvent to mod BuildCraft|Silicon 2013-06-24 18:48:29 [FINEST] [EE3] Sending event FMLConstructionEvent to mod EE3 2013-06-24 18:48:29 [FINER] [EE3] The mod EE3 is expecting signature @FINGERPRINT@ for source bin, however there is no signature matching that description 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod EE3 to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod EE3 accepts its own version (@VERSION@ (build @BUILD_NUMBER@)) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into EE3 2013-06-24 18:48:29 [sEVERE] [EE3] The copy of Equivalent Exchange 3 that you are running has been modified from the original, and unpredictable things may happen. Please consider re-downloading the original version of the mod. 2013-06-24 18:48:29 [FINEST] [EE3] Sent event FMLConstructionEvent to mod EE3 2013-06-24 18:48:29 [FINEST] [sC] Sending event FMLConstructionEvent to mod SC 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into SC 2013-06-24 18:48:29 [FINEST] [sC] Sent event FMLConstructionEvent to mod SC 2013-06-24 18:48:29 [FINEST] [NC] Sending event FMLConstructionEvent to mod NC 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod NC to verify it accepts its own version in a remote connection 2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod NC accepts its own version (alpha 1.0) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into NC 2013-06-24 18:48:29 [FINEST] [NC] Sent event FMLConstructionEvent to mod NC 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Mod signature data 2013-06-24 18:48:29 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:7.51): minecraft.jar (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] FML(Forge Mod Loader:5.2.23.734): coremods (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] Forge(Minecraft Forge:7.8.0.734): coremods (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BC(BlockCraft:0.1): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Core(BuildCraft:@VERSION@): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Builders(BC Builders:@VERSION@): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Energy(BC Energy:@VERSION@): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Factory(BC Factory:@VERSION@): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Transport(BC Transport:@VERSION@): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] BuildCraft|Silicon(BC Silicon:@VERSION@): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] EE3(Equivalent Exchange 3:@VERSION@ (build @BUILD_NUMBER@)): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] SC(scientomic craft:0.0.1): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINE] [ForgeModLoader] NC(Nightmare Craft:alpha 1.0): bin (NO VALID CERTIFICATE FOUND) 2013-06-24 18:48:29 [FINEST] [mcp] Sending event FMLPreInitializationEvent to mod mcp 2013-06-24 18:48:29 [FINEST] [mcp] Sent event FMLPreInitializationEvent to mod mcp 2013-06-24 18:48:29 [FINEST] [FML] Sending event FMLPreInitializationEvent to mod FML 2013-06-24 18:48:29 [FINEST] [FML] Sent event FMLPreInitializationEvent to mod FML 2013-06-24 18:48:29 [FINEST] [Forge] Sending event FMLPreInitializationEvent to mod Forge 2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2013-06-24 18:48:29 [FINEST] [Forge] Sent event FMLPreInitializationEvent to mod Forge 2013-06-24 18:48:29 [FINEST] [bC] Sending event FMLPreInitializationEvent to mod BC 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/cs_CZ.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/cy_GB.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/da_DK.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/de_DE.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/en_US.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/es_ES.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/fi_FI.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/fr_FR.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/it_IT.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/ja_JP.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/la_IT.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/nl_NL.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/nb_NO.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/pl_PL.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/pt_BR.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/pt_PT.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/ru_RU.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/sk_SK.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/sr_RS.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/sv_SE.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/tr_TR.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/zh_CN.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/zh_TW.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/el_GR.xml cannot be located on the classpath. This is a programming error. 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1000) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1001) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1002) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1003) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1004) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1005) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1006) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1007) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemClayIngot(7106) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemCoockedFlowerPot(7107) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemUncoockedFlowerPot(7108) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemFiryClayIngot(7109) owned by BC 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemMysticalClayIngot(7110) owned by BC 2013-06-24 18:48:29 [FINEST] [bC] Sent event FMLPreInitializationEvent to mod BC 2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sending event FMLPreInitializationEvent to mod BuildCraft|Core 2013-06-24 18:48:29 [iNFO] [buildcraft] Beginning version check 2013-06-24 18:48:29 [iNFO] [buildcraft] Starting BuildCraft @VERSION@ (:@BUILD_NUMBER@) 2013-06-24 18:48:29 [iNFO] [buildcraft] Copyright (c) SpaceToad, 2011 2013-06-24 18:48:29 [iNFO] [buildcraft] http://www.mod-buildcraft.com 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemWrench(19362) owned by BuildCraft|Core 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemSpring(1522) owned by BuildCraft|Core 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19356) owned by BuildCraft|Core 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19357) owned by BuildCraft|Core 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19358) owned by BuildCraft|Core 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19359) owned by BuildCraft|Core 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19360) owned by BuildCraft|Core 2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sent event FMLPreInitializationEvent to mod BuildCraft|Core 2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sending event FMLPreInitializationEvent to mod BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.builders.ItemBptTemplate(19361) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.builders.ItemBptBluePrint(19374) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1504) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1518) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1505) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1507) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1508) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1515) owned by BuildCraft|Builders 2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sent event FMLPreInitializationEvent to mod BuildCraft|Builders 2013-06-24 18:48:29 [FINEST] [buildCraft|Energy] Sending event FMLPreInitializationEvent to mod BuildCraft|Energy 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.energy.ItemEngine(1510) owned by BuildCraft|Energy 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1521) owned by BuildCraft|Energy 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1520) owned by BuildCraft|Energy 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19364) owned by BuildCraft|Energy 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.energy.ItemBucketOil(19363) owned by BuildCraft|Energy 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19366) owned by BuildCraft|Energy 2013-06-24 18:48:30 [FINEST] [buildCraft|Energy] Sent event FMLPreInitializationEvent to mod BuildCraft|Energy 2013-06-24 18:48:30 [FINEST] [buildCraft|Factory] Sending event FMLPreInitializationEvent to mod BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1500) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1501) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1502) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1509) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1503) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1512) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1511) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1514) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1519) owned by BuildCraft|Factory 2013-06-24 18:48:30 [FINEST] [buildCraft|Factory] Sent event FMLPreInitializationEvent to mod BuildCraft|Factory 2013-06-24 18:48:30 [FINEST] [buildCraft|Transport] Sending event FMLPreInitializationEvent to mod BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19365) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1513) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19416) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19423) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19417) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19418) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19419) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19420) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19421) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19422) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19436) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19437) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19438) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19439) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19440) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19443) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19456) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19458) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19460) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19480) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19476) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19477) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19478) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19479) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19369) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19370) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19371) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19372) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemGate(19367) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemGate(19396) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemFacade(19397) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPlug(19398) owned by BuildCraft|Transport 2013-06-24 18:48:30 [FINEST] [buildCraft|Transport] Sent event FMLPreInitializationEvent to mod BuildCraft|Transport 2013-06-24 18:48:30 [FINEST] [buildCraft|Silicon] Sending event FMLPreInitializationEvent to mod BuildCraft|Silicon 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1516) owned by BuildCraft|Silicon 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.silicon.ItemLaserTable(1517) owned by BuildCraft|Silicon 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemRedstoneChipset(19373) owned by BuildCraft|Silicon 2013-06-24 18:48:30 [FINEST] [buildCraft|Silicon] Sent event FMLPreInitializationEvent to mod BuildCraft|Silicon 2013-06-24 18:48:30 [FINEST] [EE3] Sending event FMLPreInitializationEvent to mod EE3 2013-06-24 18:48:30 [iNFO] [EE3] Initializing remote version check against remote version authority, located at https://raw.github.com/pahimar/Equivalent-Exchange-3/master/version.xml 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2451) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2454) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2455) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2456) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemMiniumShard(27000) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemInertStone(27001) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemMiniumStone(27002) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemPhilosophersStone(27003) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemAlchemicalDust(27004) owned by EE3 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemAlchemicalBag(27005) owned by EE3 2013-06-24 18:48:30 [FINEST] [EE3] Sent event FMLPreInitializationEvent to mod EE3 2013-06-24 18:48:30 [FINEST] [sC] Sending event FMLPreInitializationEvent to mod SC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.SC.item.ItemSciPad(9756) owned by SC 2013-06-24 18:48:30 [FINEST] [sC] Sent event FMLPreInitializationEvent to mod SC 2013-06-24 18:48:30 [FINEST] [NC] Sending event FMLPreInitializationEvent to mod NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(800) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(801) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(802) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(803) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(804) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(805) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(806) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemNightMareDiamond(28256) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemCreepyCoal(28257) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkOrb(28258) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemNightMareFuel(28259) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkEssence(28260) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkenedIngot(28261) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemNightmareDust(28262) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemFullMoonPowder(28263) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkStick(28264) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmarePickaxe(28456) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareSword(28457) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareHoe(28459) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareShovel(28461) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareAxe(28460) owned by NC 2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareBow(28462) owned by NC 2013-06-24 18:48:30 [FINEST] [NC] Sent event FMLPreInitializationEvent to mod NC 2013-06-24 18:48:30 [iNFO] [EE3] A new Equivalent Exchange 3 version exists (pre1h) for Minecraft 1.5.2. Get it here: http://goo.gl/Ria2V 2013-06-24 18:48:31 [iNFO] [sTDOUT] 2013-06-24 18:48:31 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-06-24 18:48:31 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-06-24 18:48:31 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-06-24 18:48:31 [iNFO] [sTDOUT] OpenAL initialized. 2013-06-24 18:48:31 [WARNING] [buildcraft] Using outdated version [@VERSION@ (build:@BUILD_NUMBER@)] for Minecraft 1.5.2. Consider updating. 2013-06-24 18:48:32 [iNFO] [sTDOUT] 2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ ClayTable.png, but that file does not exist. Ignoring. 2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Nightmare Soil.png, but that file does not exist. Ignoring. 2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ClayChest.png, but that file does not exist. Ignoring. 2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Unholy Stone.png, but that file does not exist. Ignoring. 2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/DeClayInator.png, but that file does not exist. Ignoring. 2013-06-24 18:48:32 [iNFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled 2013-06-24 18:48:32 [iNFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil_flow.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt 2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt 2013-06-24 18:48:33 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Nightmare Bow.png, but that file does not exist. Ignoring. 2013-06-24 18:48:33 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/items/fuel.txt 2013-06-24 18:48:33 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt 2013-06-24 18:48:33 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt 2013-06-24 18:48:33 [FINEST] [mcp] Sending event FMLInitializationEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [mcp] Sent event FMLInitializationEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [FML] Sending event FMLInitializationEvent to mod FML 2013-06-24 18:48:33 [FINEST] [FML] Sent event FMLInitializationEvent to mod FML 2013-06-24 18:48:33 [FINEST] [Forge] Sending event FMLInitializationEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [Forge] Sent event FMLInitializationEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [bC] Sending event FMLInitializationEvent to mod BC 2013-06-24 18:48:33 [FINEST] [bC] Sent event FMLInitializationEvent to mod BC 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event FMLInitializationEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcRobot as BuildCraft|Core.bcRobot 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcLaser as BuildCraft|Core.bcLaser 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcEnergyLaser as BuildCraft|Core.bcEnergyLaser 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event FMLInitializationEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event FMLInitializationEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event FMLInitializationEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event FMLInitializationEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event FMLInitializationEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event FMLInitializationEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event FMLInitializationEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event FMLInitializationEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event FMLInitializationEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event FMLInitializationEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event FMLInitializationEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [EE3] Sending event FMLInitializationEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [EE3] Sent event FMLInitializationEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [sC] Sending event FMLInitializationEvent to mod SC 2013-06-24 18:48:33 [FINEST] [sC] Sent event FMLInitializationEvent to mod SC 2013-06-24 18:48:33 [FINEST] [NC] Sending event FMLInitializationEvent to mod NC 2013-06-24 18:48:33 [FINEST] [NC] Sent event FMLInitializationEvent to mod NC 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod mcp 2013-06-24 18:48:33 [FINEST] [mcp] Sending event IMCEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [mcp] Sent event IMCEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod FML 2013-06-24 18:48:33 [FINEST] [FML] Sending event IMCEvent to mod FML 2013-06-24 18:48:33 [FINEST] [FML] Sent event IMCEvent to mod FML 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod Forge 2013-06-24 18:48:33 [FINEST] [Forge] Sending event IMCEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [Forge] Sent event IMCEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BC 2013-06-24 18:48:33 [FINEST] [bC] Sending event IMCEvent to mod BC 2013-06-24 18:48:33 [FINEST] [bC] Sent event IMCEvent to mod BC 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event IMCEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event IMCEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event IMCEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event IMCEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event IMCEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event IMCEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event IMCEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event IMCEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event IMCEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event IMCEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event IMCEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event IMCEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod EE3 2013-06-24 18:48:33 [FINEST] [EE3] Sending event IMCEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [EE3] Sent event IMCEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod SC 2013-06-24 18:48:33 [FINEST] [sC] Sending event IMCEvent to mod SC 2013-06-24 18:48:33 [FINEST] [sC] Sent event IMCEvent to mod SC 2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod NC 2013-06-24 18:48:33 [FINEST] [NC] Sending event IMCEvent to mod NC 2013-06-24 18:48:33 [FINEST] [NC] Sent event IMCEvent to mod NC 2013-06-24 18:48:33 [FINEST] [mcp] Sending event FMLPostInitializationEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [mcp] Sent event FMLPostInitializationEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [FML] Sending event FMLPostInitializationEvent to mod FML 2013-06-24 18:48:33 [FINEST] [FML] Sent event FMLPostInitializationEvent to mod FML 2013-06-24 18:48:33 [FINEST] [Forge] Sending event FMLPostInitializationEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [Forge] Sent event FMLPostInitializationEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [bC] Sending event FMLPostInitializationEvent to mod BC 2013-06-24 18:48:33 [FINEST] [bC] Sent event FMLPostInitializationEvent to mod BC 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event FMLPostInitializationEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event FMLPostInitializationEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event FMLPostInitializationEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event FMLPostInitializationEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event FMLPostInitializationEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event FMLPostInitializationEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event FMLPostInitializationEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINE] [buildcraft] NEI not detected. 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event FMLPostInitializationEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event FMLPostInitializationEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event FMLPostInitializationEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event FMLPostInitializationEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event FMLPostInitializationEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [EE3] Sending event FMLPostInitializationEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [EE3] Sent event FMLPostInitializationEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [sC] Sending event FMLPostInitializationEvent to mod SC 2013-06-24 18:48:33 [FINEST] [sC] Sent event FMLPostInitializationEvent to mod SC 2013-06-24 18:48:33 [FINEST] [NC] Sending event FMLPostInitializationEvent to mod NC 2013-06-24 18:48:33 [FINEST] [NC] Sent event FMLPostInitializationEvent to mod NC 2013-06-24 18:48:33 [FINEST] [mcp] Sending event FMLLoadCompleteEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [mcp] Sent event FMLLoadCompleteEvent to mod mcp 2013-06-24 18:48:33 [FINEST] [FML] Sending event FMLLoadCompleteEvent to mod FML 2013-06-24 18:48:33 [FINEST] [FML] Sent event FMLLoadCompleteEvent to mod FML 2013-06-24 18:48:33 [FINEST] [Forge] Sending event FMLLoadCompleteEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [Forge] Sent event FMLLoadCompleteEvent to mod Forge 2013-06-24 18:48:33 [FINEST] [bC] Sending event FMLLoadCompleteEvent to mod BC 2013-06-24 18:48:33 [FINEST] [bC] Sent event FMLLoadCompleteEvent to mod BC 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event FMLLoadCompleteEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event FMLLoadCompleteEvent to mod BuildCraft|Core 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event FMLLoadCompleteEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event FMLLoadCompleteEvent to mod BuildCraft|Builders 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event FMLLoadCompleteEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event FMLLoadCompleteEvent to mod BuildCraft|Energy 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event FMLLoadCompleteEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event FMLLoadCompleteEvent to mod BuildCraft|Factory 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event FMLLoadCompleteEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event FMLLoadCompleteEvent to mod BuildCraft|Transport 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event FMLLoadCompleteEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event FMLLoadCompleteEvent to mod BuildCraft|Silicon 2013-06-24 18:48:33 [FINEST] [EE3] Sending event FMLLoadCompleteEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [EE3] Sent event FMLLoadCompleteEvent to mod EE3 2013-06-24 18:48:33 [FINEST] [sC] Sending event FMLLoadCompleteEvent to mod SC 2013-06-24 18:48:33 [FINEST] [sC] Sent event FMLLoadCompleteEvent to mod SC 2013-06-24 18:48:33 [FINEST] [NC] Sending event FMLLoadCompleteEvent to mod NC 2013-06-24 18:48:33 [FINEST] [NC] Sent event FMLLoadCompleteEvent to mod NC 2013-06-24 18:48:33 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 13 mods 2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ ClayTable.png, but that file does not exist. Ignoring. 2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Nightmare Soil.png, but that file does not exist. Ignoring. 2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ClayChest.png, but that file does not exist. Ignoring. 2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Unholy Stone.png, but that file does not exist. Ignoring. 2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/DeClayInator.png, but that file does not exist. Ignoring. 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil_flow.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt 2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Nightmare Bow.png, but that file does not exist. Ignoring. 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/items/fuel.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt 2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting level New World 2013-06-24 18:48:59 [iNFO] [sTDOUT] Attempt 1... 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\data 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\data\villages.dat 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\data 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\forcedchunks.dat 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\data 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\forcedchunks.dat 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\forcedchunks.dat 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_mcr 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_old 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\data 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\forcedchunks.dat 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-1.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-2.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.0.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-1.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-2.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-3.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.0.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-1.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-2.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.0.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-1.mca 2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.0.mca 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\players 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\players\tomasdude.dat 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-1.mca 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.0.mca 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.1.mca 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.0.mca 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.1.mca 2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\session.lock 2013-06-24 18:49:03 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2 2013-06-24 18:49:03 [iNFO] [Minecraft-Server] Generating keypair 2013-06-24 18:49:04 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp 2013-06-24 18:49:04 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp 2013-06-24 18:49:04 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML 2013-06-24 18:49:04 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML 2013-06-24 18:49:04 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge 2013-06-24 18:49:04 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge 2013-06-24 18:49:04 [FINEST] [bC] Sending event FMLServerAboutToStartEvent to mod BC 2013-06-24 18:49:04 [FINEST] [bC] Sent event FMLServerAboutToStartEvent to mod BC 2013-06-24 18:49:04 [FINEST] [buildCraft|Core] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Core 2013-06-24 18:49:04 [FINEST] [buildCraft|Core] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Core 2013-06-24 18:49:04 [FINEST] [buildCraft|Builders] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Builders 2013-06-24 18:49:04 [FINEST] [buildCraft|Builders] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Builders 2013-06-24 18:49:04 [FINEST] [buildCraft|Energy] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Energy 2013-06-24 18:49:04 [FINEST] [buildCraft|Energy] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Energy 2013-06-24 18:49:04 [FINEST] [buildCraft|Factory] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Factory 2013-06-24 18:49:04 [FINEST] [buildCraft|Factory] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Factory 2013-06-24 18:49:04 [FINEST] [buildCraft|Transport] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Transport 2013-06-24 18:49:04 [FINEST] [buildCraft|Transport] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Transport 2013-06-24 18:49:04 [FINEST] [buildCraft|Silicon] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Silicon 2013-06-24 18:49:04 [FINEST] [buildCraft|Silicon] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Silicon 2013-06-24 18:49:04 [FINEST] [EE3] Sending event FMLServerAboutToStartEvent to mod EE3 2013-06-24 18:49:04 [FINEST] [EE3] Sent event FMLServerAboutToStartEvent to mod EE3 2013-06-24 18:49:04 [FINEST] [sC] Sending event FMLServerAboutToStartEvent to mod SC 2013-06-24 18:49:04 [FINEST] [sC] Sent event FMLServerAboutToStartEvent to mod SC 2013-06-24 18:49:04 [FINEST] [NC] Sending event FMLServerAboutToStartEvent to mod NC 2013-06-24 18:49:04 [FINEST] [NC] Sent event FMLServerAboutToStartEvent to mod NC 2013-06-24 18:49:04 [iNFO] [Minecraft-Server] Converting map! 2013-06-24 18:49:04 [iNFO] [Minecraft-Server] Scanning folders... 2013-06-24 18:49:04 [iNFO] [Minecraft-Server] Total conversion count is 0 2013-06-24 18:49:04 [FINE] [fml.ItemTracker] The difference set is equal 2013-06-24 18:49:04 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00) 2013-06-24 18:49:05 [WARNING] [Minecraft-Server] Unable to find spawn biome 2013-06-24 18:49:10 [iNFO] [ForgeModLoader] Loading dimension 50 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00) 2013-06-24 18:49:10 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00) 2013-06-24 18:49:10 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00) 2013-06-24 18:49:10 [iNFO] [Minecraft-Server] Preparing start region for level 0 2013-06-24 18:49:11 [iNFO] [Minecraft-Server] Preparing spawn area: 5% 2013-06-24 18:49:12 [iNFO] [Minecraft-Server] Preparing spawn area: 14% 2013-06-24 18:49:13 [iNFO] [Minecraft-Server] Preparing spawn area: 26% 2013-06-24 18:49:14 [iNFO] [Minecraft-Server] Preparing spawn area: 40% 2013-06-24 18:49:15 [iNFO] [Minecraft-Server] Preparing spawn area: 52% 2013-06-24 18:49:16 [iNFO] [Minecraft-Server] Preparing spawn area: 61% 2013-06-24 18:49:17 [iNFO] [Minecraft-Server] Preparing spawn area: 71% 2013-06-24 18:49:18 [iNFO] [Minecraft-Server] Preparing spawn area: 82% 2013-06-24 18:49:19 [iNFO] [Minecraft-Server] Preparing spawn area: 92% 2013-06-24 18:49:20 [iNFO] [Minecraft-Server] Preparing spawn area: 98% 2013-06-24 18:49:20 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp 2013-06-24 18:49:20 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp 2013-06-24 18:49:20 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML 2013-06-24 18:49:20 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML 2013-06-24 18:49:20 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge 2013-06-24 18:49:20 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge 2013-06-24 18:49:20 [FINEST] [bC] Sending event FMLServerStartingEvent to mod BC 2013-06-24 18:49:20 [FINEST] [bC] Sent event FMLServerStartingEvent to mod BC 2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sending event FMLServerStartingEvent to mod BuildCraft|Core 2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sent event FMLServerStartingEvent to mod BuildCraft|Core 2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sending event FMLServerStartingEvent to mod BuildCraft|Builders 2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sent event FMLServerStartingEvent to mod BuildCraft|Builders 2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sending event FMLServerStartingEvent to mod BuildCraft|Energy 2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sent event FMLServerStartingEvent to mod BuildCraft|Energy 2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sending event FMLServerStartingEvent to mod BuildCraft|Factory 2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sent event FMLServerStartingEvent to mod BuildCraft|Factory 2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sending event FMLServerStartingEvent to mod BuildCraft|Transport 2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sent event FMLServerStartingEvent to mod BuildCraft|Transport 2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartingEvent to mod BuildCraft|Silicon 2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartingEvent to mod BuildCraft|Silicon 2013-06-24 18:49:20 [FINEST] [EE3] Sending event FMLServerStartingEvent to mod EE3 2013-06-24 18:49:20 [FINEST] [EE3] Sent event FMLServerStartingEvent to mod EE3 2013-06-24 18:49:20 [FINEST] [sC] Sending event FMLServerStartingEvent to mod SC 2013-06-24 18:49:20 [FINEST] [sC] Sent event FMLServerStartingEvent to mod SC 2013-06-24 18:49:20 [FINEST] [NC] Sending event FMLServerStartingEvent to mod NC 2013-06-24 18:49:20 [FINEST] [NC] Sent event FMLServerStartingEvent to mod NC 2013-06-24 18:49:20 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp 2013-06-24 18:49:20 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp 2013-06-24 18:49:20 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML 2013-06-24 18:49:20 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML 2013-06-24 18:49:20 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge 2013-06-24 18:49:20 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge 2013-06-24 18:49:20 [FINEST] [bC] Sending event FMLServerStartedEvent to mod BC 2013-06-24 18:49:20 [FINEST] [bC] Sent event FMLServerStartedEvent to mod BC 2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sending event FMLServerStartedEvent to mod BuildCraft|Core 2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sent event FMLServerStartedEvent to mod BuildCraft|Core 2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sending event FMLServerStartedEvent to mod BuildCraft|Builders 2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sent event FMLServerStartedEvent to mod BuildCraft|Builders 2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sending event FMLServerStartedEvent to mod BuildCraft|Energy 2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sent event FMLServerStartedEvent to mod BuildCraft|Energy 2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sending event FMLServerStartedEvent to mod BuildCraft|Factory 2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sent event FMLServerStartedEvent to mod BuildCraft|Factory 2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sending event FMLServerStartedEvent to mod BuildCraft|Transport 2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sent event FMLServerStartedEvent to mod BuildCraft|Transport 2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartedEvent to mod BuildCraft|Silicon 2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartedEvent to mod BuildCraft|Silicon 2013-06-24 18:49:20 [FINEST] [EE3] Sending event FMLServerStartedEvent to mod EE3 2013-06-24 18:49:20 [FINEST] [EE3] Sent event FMLServerStartedEvent to mod EE3 2013-06-24 18:49:20 [FINEST] [sC] Sending event FMLServerStartedEvent to mod SC 2013-06-24 18:49:20 [FINEST] [sC] Sent event FMLServerStartedEvent to mod SC 2013-06-24 18:49:20 [FINEST] [NC] Sending event FMLServerStartedEvent to mod NC 2013-06-24 18:49:20 [FINEST] [NC] Sent event FMLServerStartedEvent to mod NC 2013-06-24 18:49:23 [iNFO] [Minecraft-Server] tomasdude[/127.0.0.1:0] logged in with entity id 245 at (134.5, 73.0, 285.5) 2013-06-24 18:49:25 [iNFO] [Minecraft-Server] Saving and pausing game... 2013-06-24 18:49:25 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 18:49:38 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 18:49:38 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 18:49:38 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 18:49:38 [WARNING] [Minecraft-Server] Can't keep up! Did the system time change, or is the server overloaded? 2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving and pausing game... 2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] tomasdude lost connection: disconnect.quitting 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Stopping singleplayer server as player logged out 2013-06-24 18:51:17 [FINEST] [mcp] Sending event FMLServerStoppingEvent to mod mcp 2013-06-24 18:51:17 [FINEST] [mcp] Sent event FMLServerStoppingEvent to mod mcp 2013-06-24 18:51:17 [FINEST] [FML] Sending event FMLServerStoppingEvent to mod FML 2013-06-24 18:51:17 [FINEST] [FML] Sent event FMLServerStoppingEvent to mod FML 2013-06-24 18:51:17 [FINEST] [Forge] Sending event FMLServerStoppingEvent to mod Forge 2013-06-24 18:51:17 [FINEST] [Forge] Sent event FMLServerStoppingEvent to mod Forge 2013-06-24 18:51:17 [FINEST] [bC] Sending event FMLServerStoppingEvent to mod BC 2013-06-24 18:51:17 [FINEST] [bC] Sent event FMLServerStoppingEvent to mod BC 2013-06-24 18:51:17 [FINEST] [buildCraft|Core] Sending event FMLServerStoppingEvent to mod BuildCraft|Core 2013-06-24 18:51:17 [FINEST] [buildCraft|Core] Sent event FMLServerStoppingEvent to mod BuildCraft|Core 2013-06-24 18:51:17 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppingEvent to mod BuildCraft|Builders 2013-06-24 18:51:17 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppingEvent to mod BuildCraft|Builders 2013-06-24 18:51:17 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppingEvent to mod BuildCraft|Energy 2013-06-24 18:51:17 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppingEvent to mod BuildCraft|Energy 2013-06-24 18:51:17 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppingEvent to mod BuildCraft|Factory 2013-06-24 18:51:17 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppingEvent to mod BuildCraft|Factory 2013-06-24 18:51:17 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppingEvent to mod BuildCraft|Transport 2013-06-24 18:51:17 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppingEvent to mod BuildCraft|Transport 2013-06-24 18:51:17 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppingEvent to mod BuildCraft|Silicon 2013-06-24 18:51:17 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppingEvent to mod BuildCraft|Silicon 2013-06-24 18:51:17 [FINEST] [EE3] Sending event FMLServerStoppingEvent to mod EE3 2013-06-24 18:51:17 [FINEST] [EE3] Sent event FMLServerStoppingEvent to mod EE3 2013-06-24 18:51:17 [FINEST] [sC] Sending event FMLServerStoppingEvent to mod SC 2013-06-24 18:51:17 [FINEST] [sC] Sent event FMLServerStoppingEvent to mod SC 2013-06-24 18:51:17 [FINEST] [NC] Sending event FMLServerStoppingEvent to mod NC 2013-06-24 18:51:17 [FINEST] [NC] Sent event FMLServerStoppingEvent to mod NC 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Stopping server 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving players 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving worlds 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension 0 2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension -1 2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension 1 2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension 50 2013-06-24 18:51:19 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp 2013-06-24 18:51:19 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp 2013-06-24 18:51:19 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML 2013-06-24 18:51:19 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML 2013-06-24 18:51:19 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge 2013-06-24 18:51:19 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge 2013-06-24 18:51:19 [FINEST] [bC] Sending event FMLServerStoppedEvent to mod BC 2013-06-24 18:51:19 [FINEST] [bC] Sent event FMLServerStoppedEvent to mod BC 2013-06-24 18:51:19 [FINEST] [buildCraft|Core] Sending event FMLServerStoppedEvent to mod BuildCraft|Core 2013-06-24 18:51:19 [FINEST] [buildCraft|Core] Sent event FMLServerStoppedEvent to mod BuildCraft|Core 2013-06-24 18:51:19 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppedEvent to mod BuildCraft|Builders 2013-06-24 18:51:19 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppedEvent to mod BuildCraft|Builders 2013-06-24 18:51:19 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppedEvent to mod BuildCraft|Energy 2013-06-24 18:51:19 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppedEvent to mod BuildCraft|Energy 2013-06-24 18:51:19 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppedEvent to mod BuildCraft|Factory 2013-06-24 18:51:19 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppedEvent to mod BuildCraft|Factory 2013-06-24 18:51:19 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppedEvent to mod BuildCraft|Transport 2013-06-24 18:51:19 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppedEvent to mod BuildCraft|Transport 2013-06-24 18:51:19 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppedEvent to mod BuildCraft|Silicon 2013-06-24 18:51:19 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppedEvent to mod BuildCraft|Silicon 2013-06-24 18:51:19 [FINEST] [EE3] Sending event FMLServerStoppedEvent to mod EE3 2013-06-24 18:51:19 [FINEST] [EE3] Sent event FMLServerStoppedEvent to mod EE3 2013-06-24 18:51:19 [FINEST] [sC] Sending event FMLServerStoppedEvent to mod SC 2013-06-24 18:51:19 [FINEST] [sC] Sent event FMLServerStoppedEvent to mod SC 2013-06-24 18:51:19 [FINEST] [NC] Sending event FMLServerStoppedEvent to mod NC 2013-06-24 18:51:19 [FINEST] [NC] Sent event FMLServerStoppedEvent to mod NC 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting level New World 2013-06-24 18:51:23 [iNFO] [sTDOUT] Attempt 1... 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\data 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\data\villages.dat 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\data 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\forcedchunks.dat 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\data 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\forcedchunks.dat 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\forcedchunks.dat 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_mcr 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_old 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\data 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\forcedchunks.dat 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-2.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.-1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.-2.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-5.-1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Couldn't delete file .\saves\New World\NIGHTMARE_DIM\region 2013-06-24 18:51:23 [iNFO] [sTDOUT] Couldn't delete directory .\saves\New World\NIGHTMARE_DIM 2013-06-24 18:51:23 [iNFO] [sTDOUT] Unsuccessful in deleting contents. 2013-06-24 18:51:23 [iNFO] [sTDOUT] Attempt 2... 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\players 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\players\tomasdude.dat 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.1.0.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.1.1.mca 2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\session.lock 2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2 2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Generating keypair 2013-06-24 18:51:45 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp 2013-06-24 18:51:45 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp 2013-06-24 18:51:45 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML 2013-06-24 18:51:45 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML 2013-06-24 18:51:45 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge 2013-06-24 18:51:45 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge 2013-06-24 18:51:45 [FINEST] [bC] Sending event FMLServerAboutToStartEvent to mod BC 2013-06-24 18:51:45 [FINEST] [bC] Sent event FMLServerAboutToStartEvent to mod BC 2013-06-24 18:51:45 [FINEST] [buildCraft|Core] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Core 2013-06-24 18:51:45 [FINEST] [buildCraft|Core] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Core 2013-06-24 18:51:45 [FINEST] [buildCraft|Builders] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Builders 2013-06-24 18:51:45 [FINEST] [buildCraft|Builders] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Builders 2013-06-24 18:51:45 [FINEST] [buildCraft|Energy] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Energy 2013-06-24 18:51:45 [FINEST] [buildCraft|Energy] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Energy 2013-06-24 18:51:45 [FINEST] [buildCraft|Factory] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Factory 2013-06-24 18:51:45 [FINEST] [buildCraft|Factory] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Factory 2013-06-24 18:51:45 [FINEST] [buildCraft|Transport] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Transport 2013-06-24 18:51:45 [FINEST] [buildCraft|Transport] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Transport 2013-06-24 18:51:45 [FINEST] [buildCraft|Silicon] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Silicon 2013-06-24 18:51:45 [FINEST] [buildCraft|Silicon] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Silicon 2013-06-24 18:51:45 [FINEST] [EE3] Sending event FMLServerAboutToStartEvent to mod EE3 2013-06-24 18:51:45 [FINEST] [EE3] Sent event FMLServerAboutToStartEvent to mod EE3 2013-06-24 18:51:45 [FINEST] [sC] Sending event FMLServerAboutToStartEvent to mod SC 2013-06-24 18:51:45 [FINEST] [sC] Sent event FMLServerAboutToStartEvent to mod SC 2013-06-24 18:51:45 [FINEST] [NC] Sending event FMLServerAboutToStartEvent to mod NC 2013-06-24 18:51:45 [FINEST] [NC] Sent event FMLServerAboutToStartEvent to mod NC 2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Converting map! 2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Scanning folders... 2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Total conversion count is 0 2013-06-24 18:51:45 [FINE] [fml.ItemTracker] The difference set is equal 2013-06-24 18:51:45 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b) 2013-06-24 18:51:45 [WARNING] [Minecraft-Server] Unable to find spawn biome 2013-06-24 18:51:49 [iNFO] [ForgeModLoader] Loading dimension 50 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b) 2013-06-24 18:51:49 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b) 2013-06-24 18:51:49 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b) 2013-06-24 18:51:49 [iNFO] [Minecraft-Server] Preparing start region for level 0 2013-06-24 18:51:50 [iNFO] [Minecraft-Server] Preparing spawn area: 17% 2013-06-24 18:51:51 [iNFO] [Minecraft-Server] Preparing spawn area: 32% 2013-06-24 18:51:52 [iNFO] [Minecraft-Server] Preparing spawn area: 48% 2013-06-24 18:51:53 [iNFO] [Minecraft-Server] Preparing spawn area: 63% 2013-06-24 18:51:54 [iNFO] [Minecraft-Server] Preparing spawn area: 75% 2013-06-24 18:51:56 [iNFO] [Minecraft-Server] Preparing spawn area: 91% 2013-06-24 18:51:56 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp 2013-06-24 18:51:56 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp 2013-06-24 18:51:56 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML 2013-06-24 18:51:56 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML 2013-06-24 18:51:56 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge 2013-06-24 18:51:56 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge 2013-06-24 18:51:56 [FINEST] [bC] Sending event FMLServerStartingEvent to mod BC 2013-06-24 18:51:56 [FINEST] [bC] Sent event FMLServerStartingEvent to mod BC 2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sending event FMLServerStartingEvent to mod BuildCraft|Core 2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sent event FMLServerStartingEvent to mod BuildCraft|Core 2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sending event FMLServerStartingEvent to mod BuildCraft|Builders 2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sent event FMLServerStartingEvent to mod BuildCraft|Builders 2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sending event FMLServerStartingEvent to mod BuildCraft|Energy 2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sent event FMLServerStartingEvent to mod BuildCraft|Energy 2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sending event FMLServerStartingEvent to mod BuildCraft|Factory 2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sent event FMLServerStartingEvent to mod BuildCraft|Factory 2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sending event FMLServerStartingEvent to mod BuildCraft|Transport 2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sent event FMLServerStartingEvent to mod BuildCraft|Transport 2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartingEvent to mod BuildCraft|Silicon 2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartingEvent to mod BuildCraft|Silicon 2013-06-24 18:51:56 [FINEST] [EE3] Sending event FMLServerStartingEvent to mod EE3 2013-06-24 18:51:56 [FINEST] [EE3] Sent event FMLServerStartingEvent to mod EE3 2013-06-24 18:51:56 [FINEST] [sC] Sending event FMLServerStartingEvent to mod SC 2013-06-24 18:51:56 [FINEST] [sC] Sent event FMLServerStartingEvent to mod SC 2013-06-24 18:51:56 [FINEST] [NC] Sending event FMLServerStartingEvent to mod NC 2013-06-24 18:51:56 [FINEST] [NC] Sent event FMLServerStartingEvent to mod NC 2013-06-24 18:51:56 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp 2013-06-24 18:51:56 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp 2013-06-24 18:51:56 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML 2013-06-24 18:51:56 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML 2013-06-24 18:51:56 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge 2013-06-24 18:51:56 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge 2013-06-24 18:51:56 [FINEST] [bC] Sending event FMLServerStartedEvent to mod BC 2013-06-24 18:51:56 [FINEST] [bC] Sent event FMLServerStartedEvent to mod BC 2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sending event FMLServerStartedEvent to mod BuildCraft|Core 2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sent event FMLServerStartedEvent to mod BuildCraft|Core 2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sending event FMLServerStartedEvent to mod BuildCraft|Builders 2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sent event FMLServerStartedEvent to mod BuildCraft|Builders 2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sending event FMLServerStartedEvent to mod BuildCraft|Energy 2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sent event FMLServerStartedEvent to mod BuildCraft|Energy 2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sending event FMLServerStartedEvent to mod BuildCraft|Factory 2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sent event FMLServerStartedEvent to mod BuildCraft|Factory 2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sending event FMLServerStartedEvent to mod BuildCraft|Transport 2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sent event FMLServerStartedEvent to mod BuildCraft|Transport 2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartedEvent to mod BuildCraft|Silicon 2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartedEvent to mod BuildCraft|Silicon 2013-06-24 18:51:56 [FINEST] [EE3] Sending event FMLServerStartedEvent to mod EE3 2013-06-24 18:51:56 [FINEST] [EE3] Sent event FMLServerStartedEvent to mod EE3 2013-06-24 18:51:56 [FINEST] [sC] Sending event FMLServerStartedEvent to mod SC 2013-06-24 18:51:56 [FINEST] [sC] Sent event FMLServerStartedEvent to mod SC 2013-06-24 18:51:56 [FINEST] [NC] Sending event FMLServerStartedEvent to mod NC 2013-06-24 18:51:56 [FINEST] [NC] Sent event FMLServerStartedEvent to mod NC 2013-06-24 18:51:56 [iNFO] [Minecraft-Server] tomasdude[/127.0.0.1:0] logged in with entity id 15522 at (-64.5, 65.0, -142.5) 2013-06-24 18:52:46 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: first encounter (5 occurences). 2013-06-24 18:53:36 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 10 times. 2013-06-24 18:54:26 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 15 times. 2013-06-24 18:55:16 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 20 times. 2013-06-24 18:55:27 [iNFO] [Minecraft-Server] Saving and pausing game... 2013-06-24 18:55:27 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 18:55:28 [FINEST] [mcp] Sending event FMLServerStoppingEvent to mod mcp 2013-06-24 18:55:28 [FINEST] [mcp] Sent event FMLServerStoppingEvent to mod mcp 2013-06-24 18:55:28 [FINEST] [FML] Sending event FMLServerStoppingEvent to mod FML 2013-06-24 18:55:28 [FINEST] [FML] Sent event FMLServerStoppingEvent to mod FML 2013-06-24 18:55:28 [FINEST] [Forge] Sending event FMLServerStoppingEvent to mod Forge 2013-06-24 18:55:28 [FINEST] [Forge] Sent event FMLServerStoppingEvent to mod Forge 2013-06-24 18:55:28 [FINEST] [bC] Sending event FMLServerStoppingEvent to mod BC 2013-06-24 18:55:28 [FINEST] [bC] Sent event FMLServerStoppingEvent to mod BC 2013-06-24 18:55:28 [FINEST] [buildCraft|Core] Sending event FMLServerStoppingEvent to mod BuildCraft|Core 2013-06-24 18:55:28 [FINEST] [buildCraft|Core] Sent event FMLServerStoppingEvent to mod BuildCraft|Core 2013-06-24 18:55:28 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppingEvent to mod BuildCraft|Builders 2013-06-24 18:55:28 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppingEvent to mod BuildCraft|Builders 2013-06-24 18:55:28 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppingEvent to mod BuildCraft|Energy 2013-06-24 18:55:28 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppingEvent to mod BuildCraft|Energy 2013-06-24 18:55:28 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppingEvent to mod BuildCraft|Factory 2013-06-24 18:55:28 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppingEvent to mod BuildCraft|Factory 2013-06-24 18:55:28 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppingEvent to mod BuildCraft|Transport 2013-06-24 18:55:28 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppingEvent to mod BuildCraft|Transport 2013-06-24 18:55:28 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppingEvent to mod BuildCraft|Silicon 2013-06-24 18:55:28 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppingEvent to mod BuildCraft|Silicon 2013-06-24 18:55:28 [FINEST] [EE3] Sending event FMLServerStoppingEvent to mod EE3 2013-06-24 18:55:28 [FINEST] [EE3] Sent event FMLServerStoppingEvent to mod EE3 2013-06-24 18:55:28 [FINEST] [sC] Sending event FMLServerStoppingEvent to mod SC 2013-06-24 18:55:28 [FINEST] [sC] Sent event FMLServerStoppingEvent to mod SC 2013-06-24 18:55:28 [FINEST] [NC] Sending event FMLServerStoppingEvent to mod NC 2013-06-24 18:55:28 [FINEST] [NC] Sent event FMLServerStoppingEvent to mod NC 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Stopping server 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving players 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving worlds 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension 0 2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension -1 2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension 1 2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension 50 2013-06-24 18:55:30 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp 2013-06-24 18:55:30 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp 2013-06-24 18:55:30 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML 2013-06-24 18:55:30 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML 2013-06-24 18:55:30 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge 2013-06-24 18:55:30 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge 2013-06-24 18:55:30 [FINEST] [bC] Sending event FMLServerStoppedEvent to mod BC 2013-06-24 18:55:30 [FINEST] [bC] Sent event FMLServerStoppedEvent to mod BC 2013-06-24 18:55:30 [FINEST] [buildCraft|Core] Sending event FMLServerStoppedEvent to mod BuildCraft|Core 2013-06-24 18:55:30 [FINEST] [buildCraft|Core] Sent event FMLServerStoppedEvent to mod BuildCraft|Core 2013-06-24 18:55:30 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppedEvent to mod BuildCraft|Builders 2013-06-24 18:55:30 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppedEvent to mod BuildCraft|Builders 2013-06-24 18:55:30 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppedEvent to mod BuildCraft|Energy 2013-06-24 18:55:30 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppedEvent to mod BuildCraft|Energy 2013-06-24 18:55:30 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppedEvent to mod BuildCraft|Factory 2013-06-24 18:55:30 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppedEvent to mod BuildCraft|Factory 2013-06-24 18:55:30 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppedEvent to mod BuildCraft|Transport 2013-06-24 18:55:30 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppedEvent to mod BuildCraft|Transport 2013-06-24 18:55:30 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppedEvent to mod BuildCraft|Silicon 2013-06-24 18:55:30 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppedEvent to mod BuildCraft|Silicon 2013-06-24 18:55:30 [FINEST] [EE3] Sending event FMLServerStoppedEvent to mod EE3 2013-06-24 18:55:30 [FINEST] [EE3] Sent event FMLServerStoppedEvent to mod EE3 2013-06-24 18:55:30 [FINEST] [sC] Sending event FMLServerStoppedEvent to mod SC 2013-06-24 18:55:30 [FINEST] [sC] Sent event FMLServerStoppedEvent to mod SC 2013-06-24 18:55:30 [FINEST] [NC] Sending event FMLServerStoppedEvent to mod NC 2013-06-24 18:55:30 [FINEST] [NC] Sent event FMLServerStoppedEvent to mod NC 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting level New World 2013-06-24 18:55:35 [iNFO] [sTDOUT] Attempt 1... 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\data 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\data\villages.dat 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\data 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\forcedchunks.dat 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\data 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\forcedchunks.dat 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\forcedchunks.dat 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_mcr 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_old 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\data 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\forcedchunks.dat 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-1.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-2.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-3.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.0.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-1.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-2.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.0.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-1.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-2.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-3.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.0.mca 2013-06-24 18:55:35 [iNFO] [sTDOUT] Couldn't delete file .\saves\New World\NIGHTMARE_DIM\region 2013-06-24 18:55:35 [iNFO] [sTDOUT] Couldn't delete directory .\saves\New World\NIGHTMARE_DIM 2013-06-24 18:55:35 [iNFO] [sTDOUT] Unsuccessful in deleting contents. 2013-06-24 18:55:36 [iNFO] [sTDOUT] Attempt 2... 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\players 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\players\tomasdude.dat 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-1.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-2.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-3.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-4.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-5.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.0.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-1.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-2.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-3.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-4.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-5.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.0.mca 2013-06-24 18:55:36 [iNFO] [sTDOUT] Couldn't delete file .\saves\New World\region 2013-06-24 18:55:36 [iNFO] [sTDOUT] Unsuccessful in deleting contents. 2013-06-24 18:55:36 [iNFO] [sTDOUT] Attempt 3... 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region 2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\session.lock 2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2 2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Generating keypair 2013-06-24 18:55:41 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp 2013-06-24 18:55:41 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp 2013-06-24 18:55:41 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML 2013-06-24 18:55:41 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML 2013-06-24 18:55:41 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge 2013-06-24 18:55:41 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge 2013-06-24 18:55:41 [FINEST] [bC] Sending event FMLServerAboutToStartEvent to mod BC 2013-06-24 18:55:41 [FINEST] [bC] Sent event FMLServerAboutToStartEvent to mod BC 2013-06-24 18:55:41 [FINEST] [buildCraft|Core] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Core 2013-06-24 18:55:41 [FINEST] [buildCraft|Core] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Core 2013-06-24 18:55:41 [FINEST] [buildCraft|Builders] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Builders 2013-06-24 18:55:41 [FINEST] [buildCraft|Builders] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Builders 2013-06-24 18:55:41 [FINEST] [buildCraft|Energy] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Energy 2013-06-24 18:55:41 [FINEST] [buildCraft|Energy] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Energy 2013-06-24 18:55:41 [FINEST] [buildCraft|Factory] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Factory 2013-06-24 18:55:41 [FINEST] [buildCraft|Factory] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Factory 2013-06-24 18:55:41 [FINEST] [buildCraft|Transport] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Transport 2013-06-24 18:55:41 [FINEST] [buildCraft|Transport] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Transport 2013-06-24 18:55:41 [FINEST] [buildCraft|Silicon] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Silicon 2013-06-24 18:55:41 [FINEST] [buildCraft|Silicon] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Silicon 2013-06-24 18:55:41 [FINEST] [EE3] Sending event FMLServerAboutToStartEvent to mod EE3 2013-06-24 18:55:41 [FINEST] [EE3] Sent event FMLServerAboutToStartEvent to mod EE3 2013-06-24 18:55:41 [FINEST] [sC] Sending event FMLServerAboutToStartEvent to mod SC 2013-06-24 18:55:41 [FINEST] [sC] Sent event FMLServerAboutToStartEvent to mod SC 2013-06-24 18:55:41 [FINEST] [NC] Sending event FMLServerAboutToStartEvent to mod NC 2013-06-24 18:55:41 [FINEST] [NC] Sent event FMLServerAboutToStartEvent to mod NC 2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Converting map! 2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Scanning folders... 2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Total conversion count is 0 2013-06-24 18:55:41 [FINE] [fml.ItemTracker] The difference set is equal 2013-06-24 18:55:41 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e) 2013-06-24 18:55:41 [WARNING] [Minecraft-Server] Unable to find spawn biome 2013-06-24 18:55:45 [iNFO] [ForgeModLoader] Loading dimension 50 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e) 2013-06-24 18:55:45 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e) 2013-06-24 18:55:45 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e) 2013-06-24 18:55:45 [iNFO] [Minecraft-Server] Preparing start region for level 0 2013-06-24 18:55:46 [iNFO] [Minecraft-Server] Preparing spawn area: 16% 2013-06-24 18:55:47 [iNFO] [Minecraft-Server] Preparing spawn area: 32% 2013-06-24 18:55:48 [iNFO] [Minecraft-Server] Preparing spawn area: 46% 2013-06-24 18:55:49 [iNFO] [Minecraft-Server] Preparing spawn area: 60% 2013-06-24 18:55:50 [iNFO] [Minecraft-Server] Preparing spawn area: 73% 2013-06-24 18:55:51 [iNFO] [Minecraft-Server] Preparing spawn area: 88% 2013-06-24 18:55:52 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp 2013-06-24 18:55:52 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp 2013-06-24 18:55:52 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML 2013-06-24 18:55:52 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML 2013-06-24 18:55:52 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge 2013-06-24 18:55:52 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge 2013-06-24 18:55:52 [FINEST] [bC] Sending event FMLServerStartingEvent to mod BC 2013-06-24 18:55:52 [FINEST] [bC] Sent event FMLServerStartingEvent to mod BC 2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sending event FMLServerStartingEvent to mod BuildCraft|Core 2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sent event FMLServerStartingEvent to mod BuildCraft|Core 2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sending event FMLServerStartingEvent to mod BuildCraft|Builders 2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sent event FMLServerStartingEvent to mod BuildCraft|Builders 2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sending event FMLServerStartingEvent to mod BuildCraft|Energy 2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sent event FMLServerStartingEvent to mod BuildCraft|Energy 2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sending event FMLServerStartingEvent to mod BuildCraft|Factory 2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sent event FMLServerStartingEvent to mod BuildCraft|Factory 2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sending event FMLServerStartingEvent to mod BuildCraft|Transport 2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sent event FMLServerStartingEvent to mod BuildCraft|Transport 2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartingEvent to mod BuildCraft|Silicon 2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartingEvent to mod BuildCraft|Silicon 2013-06-24 18:55:52 [FINEST] [EE3] Sending event FMLServerStartingEvent to mod EE3 2013-06-24 18:55:52 [FINEST] [EE3] Sent event FMLServerStartingEvent to mod EE3 2013-06-24 18:55:52 [FINEST] [sC] Sending event FMLServerStartingEvent to mod SC 2013-06-24 18:55:52 [FINEST] [sC] Sent event FMLServerStartingEvent to mod SC 2013-06-24 18:55:52 [FINEST] [NC] Sending event FMLServerStartingEvent to mod NC 2013-06-24 18:55:52 [FINEST] [NC] Sent event FMLServerStartingEvent to mod NC 2013-06-24 18:55:52 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp 2013-06-24 18:55:52 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp 2013-06-24 18:55:52 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML 2013-06-24 18:55:52 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML 2013-06-24 18:55:52 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge 2013-06-24 18:55:52 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge 2013-06-24 18:55:52 [FINEST] [bC] Sending event FMLServerStartedEvent to mod BC 2013-06-24 18:55:52 [FINEST] [bC] Sent event FMLServerStartedEvent to mod BC 2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sending event FMLServerStartedEvent to mod BuildCraft|Core 2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sent event FMLServerStartedEvent to mod BuildCraft|Core 2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sending event FMLServerStartedEvent to mod BuildCraft|Builders 2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sent event FMLServerStartedEvent to mod BuildCraft|Builders 2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sending event FMLServerStartedEvent to mod BuildCraft|Energy 2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sent event FMLServerStartedEvent to mod BuildCraft|Energy 2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sending event FMLServerStartedEvent to mod BuildCraft|Factory 2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sent event FMLServerStartedEvent to mod BuildCraft|Factory 2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sending event FMLServerStartedEvent to mod BuildCraft|Transport 2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sent event FMLServerStartedEvent to mod BuildCraft|Transport 2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartedEvent to mod BuildCraft|Silicon 2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartedEvent to mod BuildCraft|Silicon 2013-06-24 18:55:52 [FINEST] [EE3] Sending event FMLServerStartedEvent to mod EE3 2013-06-24 18:55:52 [FINEST] [EE3] Sent event FMLServerStartedEvent to mod EE3 2013-06-24 18:55:52 [FINEST] [sC] Sending event FMLServerStartedEvent to mod SC 2013-06-24 18:55:52 [FINEST] [sC] Sent event FMLServerStartedEvent to mod SC 2013-06-24 18:55:52 [FINEST] [NC] Sending event FMLServerStartedEvent to mod NC 2013-06-24 18:55:52 [FINEST] [NC] Sent event FMLServerStartedEvent to mod NC 2013-06-24 18:55:52 [iNFO] [Minecraft-Server] tomasdude[/127.0.0.1:0] logged in with entity id 60546 at (235.5, 70.0, 236.5) 2013-06-24 18:56:32 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 25 times. 2013-06-24 18:56:42 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: first encounter (5 occurences). 2013-06-24 18:57:22 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 30 times. 2013-06-24 18:57:32 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 10 times. 2013-06-24 18:58:12 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 35 times. 2013-06-24 18:58:22 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 15 times. 2013-06-24 18:59:02 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 40 times. 2013-06-24 18:59:12 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 20 times. 2013-06-24 18:59:52 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 45 times. 2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving and pausing game... 2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 19:00:06 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 25 times. 2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving and pausing game... 2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 19:00:49 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 50 times. 2013-06-24 19:00:59 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 30 times. 2013-06-24 19:01:39 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 55 times. 2013-06-24 19:01:49 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 35 times. 2013-06-24 19:02:36 [iNFO] [sTDERR] java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482) 2013-06-24 19:02:36 [iNFO] [sTDERR] at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.entity.Entity.moveEntity(Entity.java:967) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-06-24 19:02:36 [sEVERE] [Minecraft-Server] Encountered an unexpected exception NoClassDefFoundError java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1 at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863) at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792) at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478) at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44) at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557) at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482) at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44) at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023) at net.minecraft.entity.Entity.moveEntity(Entity.java:967) at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345) at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51) at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89) at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134) at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53) at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-06-24 19:02:37 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Raf\Dropbox\Developement\mcp\jars\.\crash-reports\crash-2013-06-24_19.02.37-server.txt 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Stopping server 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving players 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving worlds 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 0 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension -1 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 1 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 50 2013-06-24 19:02:42 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp 2013-06-24 19:02:42 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp 2013-06-24 19:02:42 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML 2013-06-24 19:02:42 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML 2013-06-24 19:02:42 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge 2013-06-24 19:02:42 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge 2013-06-24 19:02:42 [FINEST] [bC] Sending event FMLServerStoppedEvent to mod BC 2013-06-24 19:02:42 [FINEST] [bC] Sent event FMLServerStoppedEvent to mod BC 2013-06-24 19:02:42 [FINEST] [buildCraft|Core] Sending event FMLServerStoppedEvent to mod BuildCraft|Core 2013-06-24 19:02:42 [FINEST] [buildCraft|Core] Sent event FMLServerStoppedEvent to mod BuildCraft|Core 2013-06-24 19:02:42 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppedEvent to mod BuildCraft|Builders 2013-06-24 19:02:42 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppedEvent to mod BuildCraft|Builders 2013-06-24 19:02:42 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppedEvent to mod BuildCraft|Energy 2013-06-24 19:02:42 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppedEvent to mod BuildCraft|Energy 2013-06-24 19:02:42 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppedEvent to mod BuildCraft|Factory 2013-06-24 19:02:42 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppedEvent to mod BuildCraft|Factory 2013-06-24 19:02:42 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppedEvent to mod BuildCraft|Transport 2013-06-24 19:02:42 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppedEvent to mod BuildCraft|Transport 2013-06-24 19:02:42 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppedEvent to mod BuildCraft|Silicon 2013-06-24 19:02:42 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppedEvent to mod BuildCraft|Silicon 2013-06-24 19:02:42 [FINEST] [EE3] Sending event FMLServerStoppedEvent to mod EE3 2013-06-24 19:02:42 [FINEST] [EE3] Sent event FMLServerStoppedEvent to mod EE3 2013-06-24 19:02:42 [FINEST] [sC] Sending event FMLServerStoppedEvent to mod SC 2013-06-24 19:02:42 [FINEST] [sC] Sent event FMLServerStoppedEvent to mod SC 2013-06-24 19:02:42 [FINEST] [NC] Sending event FMLServerStoppedEvent to mod NC 2013-06-24 19:02:42 [FINEST] [NC] Sent event FMLServerStoppedEvent to mod NC 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded. 2013-06-24 19:02:47 [iNFO] [Minecraft-Client] Stopping! 2013-06-24 19:02:47 [iNFO] [sTDOUT] 2013-06-24 19:02:47 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-06-24 19:02:47 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-06-24 19:02:47 [iNFO] [sTDOUT] 2013-06-24 19:03:20 [iNFO] [sTDERR] Someone is closing me! 2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Stopping server 2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving players 2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving worlds
-
look i'm gonna give you everything i think can be usefull, if you need any other things you just say it and i give it... crash-report: ---- Minecraft Crash Report ---- // On the bright side, I bought you a teddy bear! Time: 24-6-13 19:02 Description: Exception in server tick loop java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1 at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863) at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792) at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478) at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44) at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557) at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482) at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44) at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023) at net.minecraft.entity.Entity.moveEntity(Entity.java:967) at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345) at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51) at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89) at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134) at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53) at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.5.2 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.7.0_21, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 223143520 bytes (212 MB) / 721092608 bytes (687 MB) up to 922746880 bytes (880 MB) JVM Flags: 0 total; AABB Pool Size: 2953 (165368 bytes; 0 MB) allocated, 2631 (147336 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 4, tcache: 0, allocated: 2, tallocated: 64 FML: MCP v7.51 FML v5.2.23.734 Minecraft Forge 7.8.0.734 13 mods loaded, 13 mods active mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available FML{5.2.23.734} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available Forge{7.8.0.734} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available BC{0.1} [blockCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available BuildCraft|Core{@VERSION@} [buildCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available BuildCraft|Builders{@VERSION@} [bC Builders] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available BuildCraft|Energy{@VERSION@} [bC Energy] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available BuildCraft|Factory{@VERSION@} [bC Factory] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available BuildCraft|Transport{@VERSION@} [bC Transport] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available BuildCraft|Silicon{@VERSION@} [bC Silicon] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available EE3{@VERSION@ (build @BUILD_NUMBER@)} [Equivalent Exchange 3] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available SC{0.0.1} [scientomic craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available NC{alpha 1.0} [Nightmare Craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available Profiler Position: N/A (disabled) Vec3 Pool Size: 2046 (114576 bytes; 0 MB) allocated, 1327 (74312 bytes; 0 MB) used Player Count: 1 / 8; [EntityPlayerMP['tomasdude'/60546, l='New World', x=5,00, y=70,23, z=63,00]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' the things my eclipse says while crashing: 2013-06-24 19:02:36 [iNFO] [sTDERR] java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482) 2013-06-24 19:02:36 [iNFO] [sTDERR] at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.entity.Entity.moveEntity(Entity.java:967) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470) 2013-06-24 19:02:36 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-06-24 19:02:36 [sEVERE] [Minecraft-Server] Encountered an unexpected exception NoClassDefFoundError java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1 at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863) at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792) at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478) at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44) at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557) at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482) at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44) at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023) at net.minecraft.entity.Entity.moveEntity(Entity.java:967) at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345) at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51) at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89) at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134) at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53) at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) 2013-06-24 19:02:37 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Raf\Dropbox\Developement\mcp\jars\.\crash-reports\crash-2013-06-24_19.02.37-server.txt 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Stopping server 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving players 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving worlds 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End 2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 0 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension -1 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 1 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 50 2013-06-24 19:02:42 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded. 2013-06-24 19:02:47 [iNFO] [Minecraft-Client] Stopping! 2013-06-24 19:02:47 [iNFO] [sTDOUT] 2013-06-24 19:02:47 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-06-24 19:02:47 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-06-24 19:02:47 [iNFO] [sTDOUT] 2013-06-24 19:03:20 [iNFO] [sTDERR] Someone is closing me! 2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Stopping server 2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving players 2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving worlds my biome class: package invizzble.mods.nc.biomes; import invizzble.mods.nc.blocks.ModBlocks; import invizzble.mods.nc.lib.BiomeReferences; import invizzble.mods.nc.lib.BlockIds; import net.minecraft.block.Block; import net.minecraft.world.biome.BiomeGenBase; public class NightmareBiome extends BiomeGenBase { public NightmareBiome(int id) { super(id); this.topBlock= (byte)ModBlocks.MoonMeteorite.blockID; this.fillerBlock= (byte)Block.blockDiamond.blockID; this.setBiomeName(BiomeReferences.NIGHTMAREBIOME_NAME); this.setMinMaxHeight(0F, 0.1F); this.setDisableRain(); } } the class with the biome ids ... package invizzble.mods.nc.biomes; import cpw.mods.fml.common.registry.GameRegistry; import invizzble.mods.nc.lib.BiomeReferences; import net.minecraft.world.biome.BiomeGenBase; public class ModBiomes { public static BiomeGenBase BiomeNightmare; public static void init(){ BiomeNightmare= new NightmareBiome(BiomeReferences.NIGHTMAREBIOME_ID); GameRegistry.addBiome(BiomeNightmare); } } and my main class package invizzble.mods.nc; import invizzble.mods.nc.biomes.ModBiomes; import invizzble.mods.nc.blocks.ModBlocks; import invizzble.mods.nc.configuration.ConfigurationHandler; import invizzble.mods.nc.configuration.registers.DimensionRegister; import invizzble.mods.nc.configuration.registers.EventManager; import invizzble.mods.nc.configuration.registers.LanguageRegistryBlocks; import invizzble.mods.nc.configuration.registers.LanguageRegistryCreativetab; import invizzble.mods.nc.configuration.registers.LanguageRegistryItem; import invizzble.mods.nc.configuration.registers.LanguageRegistryTools; import invizzble.mods.nc.core.handlers.FuelHandler; import invizzble.mods.nc.creativetab.CreativeTab; import invizzble.mods.nc.items.ModItems; import invizzble.mods.nc.items.ModTools; import invizzble.mods.nc.lib.References; import invizzble.mods.nc.recipes.ShapedRecipes; import invizzble.mods.nc.recipes.ShapelessRecipes; import java.io.File; import net.minecraft.creativetab.CreativeTabs; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Init; import cpw.mods.fml.common.Mod.PostInit; import cpw.mods.fml.common.Mod.PreInit; 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.network.NetworkMod; import cpw.mods.fml.common.registry.GameRegistry; @Mod(modid=References.MOD_ID, name=References.MOD_NAME, version= References.VERSION) @NetworkMod(clientSideRequired=true, serverSideRequired=false) public class NM { //creativetab public static CreativeTabs tabsNightmareCrafts= new CreativeTab(CreativeTabs.getNextID(), References.MOD_ID); @PreInit public void preInit (FMLPreInitializationEvent event){ // Initialize the configuration ConfigurationHandler.init(new File(event.getModConfigurationDirectory().getAbsolutePath()+File.separator + References.CHANNEL_NAME + References.MOD_ID + ".cfg")); //initialize the ModBlocks ModBlocks.init(); //initialize the Mod Items ModItems.init(); //registers modtools ModTools.init(); } @Init public void Init(FMLInitializationEvent event){ //Registers names of blocks LanguageRegistryBlocks.init(); // Registers the names of the Items LanguageRegistryItem.init(); //fixes the creativetab name bug LanguageRegistryCreativetab.init(); //registers the Shapeless Recipes ShapelessRecipes.init(); //registers Shaped Recipes ShapedRecipes.init(); //registers FuelHandler GameRegistry.registerFuelHandler(new FuelHandler()); //registers events EventManager.init(); //registers tool Language LanguageRegistryTools.init(); //registers dimensions DimensionRegister.init(); //registers bioemes ModBiomes.init(); } @PostInit public void PostInit(FMLPostInitializationEvent event){ } } and the bug is that i can't use any block that isn't vanilla to generate my biome... thanks for reading anyway
-
my biome file is : package invizzble.mods.nc.biomes; import invizzble.mods.nc.blocks.ModBlocks; import invizzble.mods.nc.lib.BiomeReferences; import net.minecraft.block.Block; import net.minecraft.world.biome.BiomeGenBase; public class NightmareBiome extends BiomeGenBase { public NightmareBiome(int id) { super(id); this.topBlock= (byte)ModBlocks.MoonMeteorite.blockID; this.fillerBlock= (byte)Block.blockDiamond.blockID; this.setBiomeName(BiomeReferences.NIGHTMAREBIOME_NAME); this.setMinMaxHeight(0F, 0.1F); this.setDisableRain(); } } and this is the file where i give it the id and stuff... package invizzble.mods.nc.biomes; import cpw.mods.fml.common.registry.GameRegistry; import invizzble.mods.nc.lib.BiomeReferences; import net.minecraft.world.biome.BiomeGenBase; public class ModBiomes { public static BiomeGenBase BiomeNightmare; public static void init(){ BiomeNightmare= new NightmareBiome(BiomeReferences.NIGHTMAREBIOME_ID); GameRegistry.addBiome(BiomeNightmare); } }
-
i made me a custom biom and when i make the toplayer and the fillerlayer a vanilla block, there isn't any problem buth when i try to use my own blocks i get this error,, please help ---- Minecraft Crash Report ---- // You should try our sister game, Minceraft! Time: 24-6-13 16:20 Description: Exception in server tick loop java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1 at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863) at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:787) at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478) at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44) at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557) at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482) at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44) at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023) at net.minecraft.entity.Entity.moveEntity(Entity.java:967) at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345) at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51) at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89) at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134) at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53) at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.5.2 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.7.0_21, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 197891536 bytes (188 MB) / 468320256 bytes (446 MB) up to 922746880 bytes (880 MB) JVM Flags: 0 total; AABB Pool Size: 6036 (338016 bytes; 0 MB) allocated, 5225 (292600 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 0, tcache: 0, allocated: 6, tallocated: 62 FML: MCP v7.51 FML v5.2.23.734 Minecraft Forge 7.8.0.734 13 mods loaded, 13 mods active mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available FML{5.2.23.734} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Forge{7.8.0.734} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available BC{0.1} [blockCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available BuildCraft|Core{@VERSION@} [buildCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available BuildCraft|Builders{@VERSION@} [bC Builders] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available BuildCraft|Energy{@VERSION@} [bC Energy] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available BuildCraft|Factory{@VERSION@} [bC Factory] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available BuildCraft|Transport{@VERSION@} [bC Transport] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available BuildCraft|Silicon{@VERSION@} [bC Silicon] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available EE3{@VERSION@ (build @BUILD_NUMBER@)} [Equivalent Exchange 3] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available SC{0.0.1} [scientomic craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available NC{alpha 1.0} [Nightmare Craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Profiler Position: N/A (disabled) Vec3 Pool Size: 3558 (199248 bytes; 0 MB) allocated, 3421 (191576 bytes; 0 MB) used Player Count: 1 / 8; [EntityPlayerMP['tomasdude'/246, l='New World', x=9,00, y=69,00, z=15,00]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge'
-
any way here are my codes my plant block package invizzble.mods.nc.platns; import invizzble.mods.nc.items.ModItems; import invizzble.mods.nc.lib.ItemIds; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.BlockCrops; import net.minecraft.util.AxisAlignedBB; import net.minecraft.world.World; import net.minecraftforge.common.ForgeDirection; public class PlantFullMoon extends BlockCrops { public PlantFullMoon (int id) { super(id); setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.5F, 1.0F); setTickRandomly(true); } @Override public AxisAlignedBB getCollisionBoundingBoxFromPool (World world, int x, int y, int z) { return null; } @Override public int getRenderType () { return 6; } @Override public boolean isOpaqueCube () { return false; } public int getBlockTextureFromSideAndMetadata (int side, int metadata) { return 32 + metadata; } @Override public void updateTick (World world, int x, int y, int z, Random random) { if (world.getBlockMetadata(x, y, z) == 1) { return; } if (random.nextInt(isFertile(world, x, y - 1, z) ? 12 : 25) != 0) { return; } world.setBlockMetadataWithNotify(x, y, z, z, z); } @Override public void onNeighborBlockChange (World world, int x, int y, int z, int neighborId) { if (!canBlockStay(world, x, y, z)) { dropBlockAsItem(world, x, y, z, world.getBlockMetadata(x, y, z), 0); ( world).setBlockWithNotify(x, y, z, 0); } } @Override public boolean canBlockStay (World world, int x, int y, int z) { net.minecraft.block.Block.tilledField = blocksList[world.getBlockId(x, y - 1, z)]; return (world.getFullBlockLightValue(x, y, z) >= 8 || world .canBlockSeeTheSky(x, y, z)) && (Block.tilledField != null && Block.tilledField.canSustainPlant(world, x, y - 1, z, ForgeDirection.UP, ModPlants.FullMoonSeeds)); } @Override public int idDropped (int metadata, Random random, int par2) { switch (metadata) { case 0: return ModPlants.FullMoonSeeds.itemID; case 1: return ModItems.DarkEssence.itemID; default: // Error case! return -1; // air } } @Override public int idPicked (World world, int x, int y, int z) { return ModItems.DarkEssence.itemID; } } my seeds : package invizzble.mods.nc.platns; import net.minecraft.item.ItemSeeds; import invizzble.mods.nc.NM; import invizzble.mods.nc.lib.Strings; public class SeedFullMoon extends ItemSeeds { public SeedFullMoon(int id, int PlantId, int SoilId){ super(id, PlantId, SoilId); this.setCreativeTab(NM.tabsNightmareCrafts); this.setUnlocalizedName(Strings.FULLMOONSEED_NAME); this.setMaxStackSize(64); } } and as last my file where i put them togheter to register them inside my preinit (or init don't remember anymore) package invizzble.mods.nc.platns; import invizzble.mods.nc.lib.BlockIds; import invizzble.mods.nc.lib.ItemIds; import invizzble.mods.nc.lib.Strings; import net.minecraft.block.Block; import net.minecraft.block.BlockCrops; import net.minecraft.item.ItemSeeds; import net.minecraft.item.ItemStack; import net.minecraftforge.common.MinecraftForge; public class ModPlants { public static BlockCrops FullMoonPlant; public static ItemSeeds FullMoonSeeds; public static void init(){ FullMoonPlant= new PlantFullMoon(BlockIds.FULLMOONPLANT_DEFAULT); FullMoonSeeds= new SeedFullMoon(ItemIds.FULLMOONSEED_DEFAULT, ModPlants.FullMoonPlant.blockID, Block.tilledField.blockID); MinecraftForge.addGrassSeed(new ItemStack(FullMoonSeeds), 100); } }
-
hey but look guys, i've got my seeds working now the only problem is that it gives me wheat and normal seeds but not my stuff, do you need the block or the seed code?
-
@Draco18 because the minecraft forge wiki told me to
-
bjt is this one correct? FullMoonSeed= new SeedFullMoon(ItemIds.FULLMOONSEED, ModPlants.FullMoonPlant.blockID, Block.tilledField.blockID); at first i have the id, second the block that comes from the seed and as last the block wich it needs to be planted on
-
Help with separate Creative Tabs and Recipes files?
invizzble replied to Shadzari's topic in Modder Support
i do it also like that as recipes class you must have as example : package invizzble.mods.nc.recipes; import net.minecraft.item.ItemStack; import invizzble.mods.nc.items.ModItems; import invizzble.mods.nc.items.ModTools; import cpw.mods.fml.common.registry.GameRegistry; public class ShapedRecipes { public static void init(){ GameRegistry.addRecipe(new ItemStack(ModItems.NightmareFuel), "xxx", "xyx", "xxx", Character.valueOf('x'), ModItems.NightMareDust, Character.valueOf('y'), ModItems.CreepyCoal); GameRegistry.addRecipe(new ItemStack(ModTools.NightmarePick), "xyx"," z " ," z ", Character.valueOf('x'), ModItems.DarkenedIngot, Character.valueOf('y'), ModItems.DarkOrb, Character.valueOf('z'), ModItems.DarkStick); GameRegistry.addRecipe(new ItemStack(ModItems.DarkOrb), "xxx", "xyx", "xxx", Character.valueOf('x'), ModItems.NightmareDiamond, Character.valueOf('y'), ModItems.NightMareDust); } } and then you just need to add in you init method -your classname-.-name you called your method- (in this example was it : ShapedRecipes.init() -
i know but do you see anything wrong (sorry if i sound brutal, hard day) package invizzble.mods.nc.plants; import invizzble.mods.nc.lib.ItemIds; import net.minecraft.block.Block; import net.minecraft.item.ItemSeeds; public class ModSeeds { public static ItemSeeds FullMoonSeed; public static void init(){ FullMoonSeed= new SeedFullMoon(ItemIds.FULLMOONSEED, ModPlants.FullMoonPlant.blockID, Block.tilledField.blockID); } } or @PreInit public void preInit (FMLPreInitializationEvent event){ // Initialize the configuration ConfigurationHandler.init(new File(event.getModConfigurationDirectory().getAbsolutePath()+File.separator + References.CHANNEL_NAME + References.MOD_ID + ".cfg")); //initialize the ModBlocks ModBlocks.init(); //initialize the Mod Items ModItems.init(); //registers modtools ModTools.init(); //registers seeds ModSeeds.init(); //registers plants ModPlants.init(); }
-
ok i don't know what i've done but i think the error of the double register is away, now another: ---- Minecraft Crash Report ---- // Surprise! Haha. Well, this is awkward. Time: 19-6-13 21:45 Description: Failed to start game java.lang.NullPointerException at invizzble.mods.nc.plants.ModSeeds.init(ModSeeds.java:15) at invizzble.mods.nc.NM.preInit(NM.java:62) 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:494) 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:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172) 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:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103) at cpw.mods.fml.common.Loader.loadMods(Loader.java:515) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:163) at net.minecraft.client.Minecraft.startGame(Minecraft.java:411) at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44) at net.minecraft.client.Minecraft.run(Minecraft.java:733) at java.lang.Thread.run(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.5.2 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.7.0_21, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 73698168 bytes (70 MB) / 186515456 bytes (177 MB) up to 922746880 bytes (880 MB) JVM Flags: 0 total; AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v7.51 FML v5.2.23.734 Minecraft Forge 7.8.0.734 13 mods loaded, 13 mods active mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{5.2.23.734} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized Forge{7.8.0.734} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized BC{0.1} [blockCraft] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Core{@VERSION@} [buildCraft] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Builders{@VERSION@} [bC Builders] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Energy{@VERSION@} [bC Energy] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Factory{@VERSION@} [bC Factory] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Transport{@VERSION@} [bC Transport] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Silicon{@VERSION@} [bC Silicon] (bin) Unloaded->Constructed->Pre-initialized EE3{@VERSION@ (build @BUILD_NUMBER@)} [Equivalent Exchange 3] (bin) Unloaded->Constructed->Pre-initialized SC{0.0.1} [scientomic craft] (bin) Unloaded->Constructed->Pre-initialized NC{0} [NightMare Craft] (bin) Unloaded->Constructed->Errored LWJGL: 2.4.2 OpenGL: GeForce 310M/PCIe/SSE2 GL version 3.3.0, NVIDIA Corporation Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Texture Pack: Default Profiler Position: N/A (disabled) Vec3 Pool Size: ~~ERROR~~ NullPointerException: null
-
i completely checked that and nothing found, it has to be something else, could it be me plant code?
-
I added a plant to mc and i don't know what to do anymore... everytime i start minecraft i get an error with this error report: ---- Minecraft Crash Report ---- // I feel sad now Time: 19-6-13 21:32 Description: Failed to start game java.lang.IllegalArgumentException: Slot 1200 is already occupied by invizzble.mods.nc.plants.PlantFullMoon@26f73ca4 when adding invizzble.mods.nc.plants.PlantFullMoon@31ae46f8 at net.minecraft.block.Block.<init>(Block.java:340) at net.minecraft.block.BlockFlower.<init>(BlockFlower.java:18) at net.minecraft.block.BlockFlower.<init>(BlockFlower.java:27) at net.minecraft.block.BlockCrops.<init>(BlockCrops.java:23) at invizzble.mods.nc.plants.PlantFullMoon.<init>(PlantFullMoon.java:17) at invizzble.mods.nc.plants.ModPlants.init(ModPlants.java:14) at invizzble.mods.nc.NM.preInit(NM.java:65) 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:494) 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:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172) 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:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103) at cpw.mods.fml.common.Loader.loadMods(Loader.java:515) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:163) at net.minecraft.client.Minecraft.startGame(Minecraft.java:411) at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44) at net.minecraft.client.Minecraft.run(Minecraft.java:733) at java.lang.Thread.run(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.5.2 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.7.0_21, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 85784592 bytes (81 MB) / 194969600 bytes (185 MB) up to 922746880 bytes (880 MB) JVM Flags: 0 total; AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v7.51 FML v5.2.23.734 Minecraft Forge 7.8.0.734 13 mods loaded, 13 mods active mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized FML{5.2.23.734} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized Forge{7.8.0.734} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized BC{0.1} [blockCraft] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Core{@VERSION@} [buildCraft] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Builders{@VERSION@} [bC Builders] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Energy{@VERSION@} [bC Energy] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Factory{@VERSION@} [bC Factory] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Transport{@VERSION@} [bC Transport] (bin) Unloaded->Constructed->Pre-initialized BuildCraft|Silicon{@VERSION@} [bC Silicon] (bin) Unloaded->Constructed->Pre-initialized EE3{@VERSION@ (build @BUILD_NUMBER@)} [Equivalent Exchange 3] (bin) Unloaded->Constructed->Pre-initialized SC{0.0.1} [scientomic craft] (bin) Unloaded->Constructed->Pre-initialized NC{0} [NightMare Craft] (bin) Unloaded->Constructed->Errored LWJGL: 2.4.2 OpenGL: GeForce 310M/PCIe/SSE2 GL version 3.3.0, NVIDIA Corporation Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Texture Pack: Default Profiler Position: N/A (disabled) Vec3 Pool Size: ~~ERROR~~ NullPointerException: null and as far is i can see is the problem that the id is already taken but it isn't and a changed it like a hundred times now
-
sorry , didn't sleep well last night and you know when things won't work right then ... ... and i mean when he's decompiling the server he gives me that error... ive tried deleting it en completly start over with decompiling but that didn't work
-
anyone? please ...
-
Is it a model or a texture?
-
[Solved] How to generate something underwater?
invizzble replied to JoseTheCrafter's topic in Modder Support
you can copy the WorldMinable (hope you ever heard of it, if you don't, search on google how to make ores in the nether, that should help a lot) and then you can just add them like you do in the overworld with you max Ycord (for example 30)