Jump to content

123456789link

Members
  • Posts

    26
  • Joined

  • Last visited

Posts posted by 123456789link

  1. I fix it that was for this line:

            if (this.blockMaterial == Material.iron)

            {

                return true;

            }

    and the trapdorr material is iron too then i replace it for this an works:

            if (this.blockMaterial == Material.wood)

            {

                return true;

            }

     

  2. I fix it that was for this line:

            if (this.blockMaterial == Material.iron)

            {

                return true;

            }

    and the trapdorr material is iron too then i replace it for this an works:

            if (this.blockMaterial == Material.wood)

            {

                return true;

            }

     

  3. Please paste all of your code so that we can try to find the problem.

    is this

    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.creativetab.CreativeTabs;
    import net.minecraft.entity.player.EntityPlayer;
    import net.minecraft.util.AxisAlignedBB;
    import net.minecraft.util.MovingObjectPosition;
    import net.minecraft.util.Vec3;
    import net.minecraft.world.IBlockAccess;
    import net.minecraft.world.World;
    
    import net.minecraftforge.common.ForgeDirection;
    
    public class Blockirontd extends Block
    {
        /** Set this to allow trapdoors to remain free-floating */
        public static boolean disableValidation = false;
    
        public Blockirontd(int par1, Material par2Material)
        {
            super(par1, par2Material);
            float f = 0.5F;
            float f1 = 1.0F;
            this.setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f1, 0.5F + f);
    
        }
    
        /**
         * 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;
        }
    
        /**
         * If this block doesn't render as an ordinary block it will return False (examples: signs, buttons, stairs, etc)
         */
        public boolean renderAsNormalBlock()
        {
            return false;
        }
    
        public boolean getBlocksMovement(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
        {
            return !isTrapdoorOpen(par1IBlockAccess.getBlockMetadata(par2, par3, par4));
        }
    
        /**
         * The type of render function that is called for this block
         */
        public int getRenderType()
        {
            return 0;
        }
    
        @SideOnly(Side.CLIENT)
    
        /**
         * Returns the bounding box of the wired rectangular prism to render.
         */
        public AxisAlignedBB getSelectedBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
        {
            this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
            return super.getSelectedBoundingBoxFromPool(par1World, par2, par3, par4);
        }
    
        /**
         * Returns a bounding box from the pool of bounding boxes (this means this box can change after the pool has been
         * cleared to be reused)
         */
        public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
        {
            this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
            return super.getCollisionBoundingBoxFromPool(par1World, par2, par3, par4);
        }
    
        /**
         * Updates the blocks bounds based on its current state. Args: world, x, y, z
         */
        public void setBlockBoundsBasedOnState(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
        {
            this.setBlockBoundsForBlockRender(par1IBlockAccess.getBlockMetadata(par2, par3, par4));
        }
    
        /**
         * Sets the block's bounds for rendering it as an item
         */
        public void setBlockBoundsForItemRender()
        {
            float f = 0.1875F;
            this.setBlockBounds(0.0F, 0.5F - f / 2.0F, 0.0F, 1.0F, 0.5F + f / 2.0F, 1.0F);
        }
    
        public void setBlockBoundsForBlockRender(int par1)
        {
            float f = 0.1875F;
    
            if ((par1 &  != 0)
            {
                this.setBlockBounds(0.0F, 1.0F - f, 0.0F, 1.0F, 1.0F, 1.0F);
            }
            else
            {
                this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, f, 1.0F);
            }
    
            if (isTrapdoorOpen(par1))
            {
                if ((par1 & 3) == 0)
                {
                    this.setBlockBounds(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
                }
    
                if ((par1 & 3) == 1)
                {
                    this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, f);
                }
    
                if ((par1 & 3) == 2)
                {
                    this.setBlockBounds(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
                }
    
                if ((par1 & 3) == 3)
                {
                    this.setBlockBounds(0.0F, 0.0F, 0.0F, f, 1.0F, 1.0F);
                }
            }
        }
    
        /**
         * Called when the block is clicked by a player. Args: x, y, z, entityPlayer
         */
        public void onBlockClicked(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer) {}
    
        /**
         * Called upon block activation (right click on the block.)
         */
        public boolean onBlockActivated(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9)
        {
            if (this.blockMaterial == Material.iron)
            {
                return true;
            }
            else
            {
                int i1 = par1World.getBlockMetadata(par2, par3, par4);
                par1World.setBlockMetadataWithNotify(par2, par3, par4, i1 ^ 4, 2);
                par1World.playAuxSFXAtEntity(par5EntityPlayer, 1003, par2, par3, par4, 0);
                return true;
            }
        }
    
        public void onPoweredBlockChange(World par1World, int par2, int par3, int par4, boolean par5)
        {
            int l = par1World.getBlockMetadata(par2, par3, par4);
            boolean flag1 = (l & 4) > 0;
    
            if (flag1 != par5)
            {
                par1World.setBlockMetadataWithNotify(par2, par3, par4, l ^ 4, 2);
                par1World.playAuxSFXAtEntity((EntityPlayer)null, 1003, par2, par3, par4, 0);
            }
        }
    
        /**
         * Lets the block know when one of its neighbor changes. Doesn't know which neighbor changed (coordinates passed are
         * their own) Args: x, y, z, neighbor blockID
         */
        public void onNeighborBlockChange(World par1World, int par2, int par3, int par4, int par5)
        {
            if (!par1World.isRemote)
            {
                int i1 = par1World.getBlockMetadata(par2, par3, par4);
                int j1 = par2;
                int k1 = par4;
    
                if ((i1 & 3) == 0)
                {
                    k1 = par4 + 1;
                }
    
                if ((i1 & 3) == 1)
                {
                    --k1;
                }
    
                if ((i1 & 3) == 2)
                {
                    j1 = par2 + 1;
                }
    
                if ((i1 & 3) == 3)
                {
                    --j1;
                }
    
                if (!(isValidSupportBlock(par1World.getBlockId(j1, par3, k1)) || par1World.isBlockSolidOnSide(j1, par3, k1, ForgeDirection.getOrientation((i1 & 3) + 2))))
                {
                    par1World.setBlockToAir(par2, par3, par4);
                    this.dropBlockAsItem(par1World, par2, par3, par4, i1, 0);
                }
    
                boolean flag = par1World.isBlockIndirectlyGettingPowered(par2, par3, par4);
    
                if (flag || par5 > 0 && Block.blocksList[par5].canProvidePower())
                {
                    this.onPoweredBlockChange(par1World, par2, par3, par4, flag);
                }
            }
        }
    
        /**
         * Ray traces through the blocks collision from start vector to end vector returning a ray trace hit. Args: world,
         * x, y, z, startVec, endVec
         */
        public MovingObjectPosition collisionRayTrace(World par1World, int par2, int par3, int par4, Vec3 par5Vec3, Vec3 par6Vec3)
        {
            this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
            return super.collisionRayTrace(par1World, par2, par3, par4, par5Vec3, par6Vec3);
        }
    
        /**
         * Called when a block is placed using its ItemBlock. Args: World, X, Y, Z, side, hitX, hitY, hitZ, block metadata
         */
        public int onBlockPlaced(World par1World, int par2, int par3, int par4, int par5, float par6, float par7, float par8, int par9)
        {
            int j1 = 0;
    
            if (par5 == 2)
            {
                j1 = 0;
            }
    
            if (par5 == 3)
            {
                j1 = 1;
            }
    
            if (par5 == 4)
            {
                j1 = 2;
            }
    
            if (par5 == 5)
            {
                j1 = 3;
            }
    
            if (par5 != 1 && par5 != 0 && par7 > 0.5F)
            {
                j1 |= 8;
            }
    
            return j1;
        }
    
        /**
         * checks to see if you can place this block can be placed on that side of a block: BlockLever overrides
         */
        public boolean canPlaceBlockOnSide(World par1World, int par2, int par3, int par4, int par5)
        {
            if (disableValidation)
            {
                return true;
            }
            if (par5 == 0)
            {
                return false;
            }
            else if (par5 == 1)
            {
                return false;
            }
            else
            {
                if (par5 == 2)
                {
                    ++par4;
                }
    
                if (par5 == 3)
                {
                    --par4;
                }
    
                if (par5 == 4)
                {
                    ++par2;
                }
    
                if (par5 == 5)
                {
                    --par2;
                }
    
                return isValidSupportBlock(par1World.getBlockId(par2, par3, par4)) || par1World.isBlockSolidOnSide(par2, par3, par4, ForgeDirection.UP);
            }
        }
    
        public static boolean isTrapdoorOpen(int par0)
        {
            return (par0 & 4) != 0;
        }
    
        /**
         * Checks if the block ID is a valid support block for the trap door to connect with. If it is not the trapdoor is
         * dropped into the world.
         */
        private static boolean isValidSupportBlock(int par0)
        {
            if (disableValidation)
            {
                return true;
            }
            if (par0 <= 0)
            {
                return false;
            }
            else
            {
                Block block = Block.blocksList[par0];
                return block != null && block.blockMaterial.isOpaque() && block.renderAsNormalBlock() || block == Block.glowStone || block instanceof BlockHalfSlab || block instanceof BlockStairs;
            }
        }
    }

    and the line

              irontd = (new Blockirontd(2668, Material.iron)).setHardness(3.0F).setStepSound(Block.soundMetalFootstep).setUnlocalizedName("irontd");

     

     

  4. Please paste all of your code so that we can try to find the problem.

    is this

    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.creativetab.CreativeTabs;
    import net.minecraft.entity.player.EntityPlayer;
    import net.minecraft.util.AxisAlignedBB;
    import net.minecraft.util.MovingObjectPosition;
    import net.minecraft.util.Vec3;
    import net.minecraft.world.IBlockAccess;
    import net.minecraft.world.World;
    
    import net.minecraftforge.common.ForgeDirection;
    
    public class Blockirontd extends Block
    {
        /** Set this to allow trapdoors to remain free-floating */
        public static boolean disableValidation = false;
    
        public Blockirontd(int par1, Material par2Material)
        {
            super(par1, par2Material);
            float f = 0.5F;
            float f1 = 1.0F;
            this.setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f1, 0.5F + f);
    
        }
    
        /**
         * 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;
        }
    
        /**
         * If this block doesn't render as an ordinary block it will return False (examples: signs, buttons, stairs, etc)
         */
        public boolean renderAsNormalBlock()
        {
            return false;
        }
    
        public boolean getBlocksMovement(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
        {
            return !isTrapdoorOpen(par1IBlockAccess.getBlockMetadata(par2, par3, par4));
        }
    
        /**
         * The type of render function that is called for this block
         */
        public int getRenderType()
        {
            return 0;
        }
    
        @SideOnly(Side.CLIENT)
    
        /**
         * Returns the bounding box of the wired rectangular prism to render.
         */
        public AxisAlignedBB getSelectedBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
        {
            this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
            return super.getSelectedBoundingBoxFromPool(par1World, par2, par3, par4);
        }
    
        /**
         * Returns a bounding box from the pool of bounding boxes (this means this box can change after the pool has been
         * cleared to be reused)
         */
        public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
        {
            this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
            return super.getCollisionBoundingBoxFromPool(par1World, par2, par3, par4);
        }
    
        /**
         * Updates the blocks bounds based on its current state. Args: world, x, y, z
         */
        public void setBlockBoundsBasedOnState(IBlockAccess par1IBlockAccess, int par2, int par3, int par4)
        {
            this.setBlockBoundsForBlockRender(par1IBlockAccess.getBlockMetadata(par2, par3, par4));
        }
    
        /**
         * Sets the block's bounds for rendering it as an item
         */
        public void setBlockBoundsForItemRender()
        {
            float f = 0.1875F;
            this.setBlockBounds(0.0F, 0.5F - f / 2.0F, 0.0F, 1.0F, 0.5F + f / 2.0F, 1.0F);
        }
    
        public void setBlockBoundsForBlockRender(int par1)
        {
            float f = 0.1875F;
    
            if ((par1 &  != 0)
            {
                this.setBlockBounds(0.0F, 1.0F - f, 0.0F, 1.0F, 1.0F, 1.0F);
            }
            else
            {
                this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, f, 1.0F);
            }
    
            if (isTrapdoorOpen(par1))
            {
                if ((par1 & 3) == 0)
                {
                    this.setBlockBounds(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
                }
    
                if ((par1 & 3) == 1)
                {
                    this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, f);
                }
    
                if ((par1 & 3) == 2)
                {
                    this.setBlockBounds(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
                }
    
                if ((par1 & 3) == 3)
                {
                    this.setBlockBounds(0.0F, 0.0F, 0.0F, f, 1.0F, 1.0F);
                }
            }
        }
    
        /**
         * Called when the block is clicked by a player. Args: x, y, z, entityPlayer
         */
        public void onBlockClicked(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer) {}
    
        /**
         * Called upon block activation (right click on the block.)
         */
        public boolean onBlockActivated(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9)
        {
            if (this.blockMaterial == Material.iron)
            {
                return true;
            }
            else
            {
                int i1 = par1World.getBlockMetadata(par2, par3, par4);
                par1World.setBlockMetadataWithNotify(par2, par3, par4, i1 ^ 4, 2);
                par1World.playAuxSFXAtEntity(par5EntityPlayer, 1003, par2, par3, par4, 0);
                return true;
            }
        }
    
        public void onPoweredBlockChange(World par1World, int par2, int par3, int par4, boolean par5)
        {
            int l = par1World.getBlockMetadata(par2, par3, par4);
            boolean flag1 = (l & 4) > 0;
    
            if (flag1 != par5)
            {
                par1World.setBlockMetadataWithNotify(par2, par3, par4, l ^ 4, 2);
                par1World.playAuxSFXAtEntity((EntityPlayer)null, 1003, par2, par3, par4, 0);
            }
        }
    
        /**
         * Lets the block know when one of its neighbor changes. Doesn't know which neighbor changed (coordinates passed are
         * their own) Args: x, y, z, neighbor blockID
         */
        public void onNeighborBlockChange(World par1World, int par2, int par3, int par4, int par5)
        {
            if (!par1World.isRemote)
            {
                int i1 = par1World.getBlockMetadata(par2, par3, par4);
                int j1 = par2;
                int k1 = par4;
    
                if ((i1 & 3) == 0)
                {
                    k1 = par4 + 1;
                }
    
                if ((i1 & 3) == 1)
                {
                    --k1;
                }
    
                if ((i1 & 3) == 2)
                {
                    j1 = par2 + 1;
                }
    
                if ((i1 & 3) == 3)
                {
                    --j1;
                }
    
                if (!(isValidSupportBlock(par1World.getBlockId(j1, par3, k1)) || par1World.isBlockSolidOnSide(j1, par3, k1, ForgeDirection.getOrientation((i1 & 3) + 2))))
                {
                    par1World.setBlockToAir(par2, par3, par4);
                    this.dropBlockAsItem(par1World, par2, par3, par4, i1, 0);
                }
    
                boolean flag = par1World.isBlockIndirectlyGettingPowered(par2, par3, par4);
    
                if (flag || par5 > 0 && Block.blocksList[par5].canProvidePower())
                {
                    this.onPoweredBlockChange(par1World, par2, par3, par4, flag);
                }
            }
        }
    
        /**
         * Ray traces through the blocks collision from start vector to end vector returning a ray trace hit. Args: world,
         * x, y, z, startVec, endVec
         */
        public MovingObjectPosition collisionRayTrace(World par1World, int par2, int par3, int par4, Vec3 par5Vec3, Vec3 par6Vec3)
        {
            this.setBlockBoundsBasedOnState(par1World, par2, par3, par4);
            return super.collisionRayTrace(par1World, par2, par3, par4, par5Vec3, par6Vec3);
        }
    
        /**
         * Called when a block is placed using its ItemBlock. Args: World, X, Y, Z, side, hitX, hitY, hitZ, block metadata
         */
        public int onBlockPlaced(World par1World, int par2, int par3, int par4, int par5, float par6, float par7, float par8, int par9)
        {
            int j1 = 0;
    
            if (par5 == 2)
            {
                j1 = 0;
            }
    
            if (par5 == 3)
            {
                j1 = 1;
            }
    
            if (par5 == 4)
            {
                j1 = 2;
            }
    
            if (par5 == 5)
            {
                j1 = 3;
            }
    
            if (par5 != 1 && par5 != 0 && par7 > 0.5F)
            {
                j1 |= 8;
            }
    
            return j1;
        }
    
        /**
         * checks to see if you can place this block can be placed on that side of a block: BlockLever overrides
         */
        public boolean canPlaceBlockOnSide(World par1World, int par2, int par3, int par4, int par5)
        {
            if (disableValidation)
            {
                return true;
            }
            if (par5 == 0)
            {
                return false;
            }
            else if (par5 == 1)
            {
                return false;
            }
            else
            {
                if (par5 == 2)
                {
                    ++par4;
                }
    
                if (par5 == 3)
                {
                    --par4;
                }
    
                if (par5 == 4)
                {
                    ++par2;
                }
    
                if (par5 == 5)
                {
                    --par2;
                }
    
                return isValidSupportBlock(par1World.getBlockId(par2, par3, par4)) || par1World.isBlockSolidOnSide(par2, par3, par4, ForgeDirection.UP);
            }
        }
    
        public static boolean isTrapdoorOpen(int par0)
        {
            return (par0 & 4) != 0;
        }
    
        /**
         * Checks if the block ID is a valid support block for the trap door to connect with. If it is not the trapdoor is
         * dropped into the world.
         */
        private static boolean isValidSupportBlock(int par0)
        {
            if (disableValidation)
            {
                return true;
            }
            if (par0 <= 0)
            {
                return false;
            }
            else
            {
                Block block = Block.blocksList[par0];
                return block != null && block.blockMaterial.isOpaque() && block.renderAsNormalBlock() || block == Block.glowStone || block instanceof BlockHalfSlab || block instanceof BlockStairs;
            }
        }
    }

    and the line

              irontd = (new Blockirontd(2668, Material.iron)).setHardness(3.0F).setStepSound(Block.soundMetalFootstep).setUnlocalizedName("irontd");

     

     

  5. The versionBounds are for your own version, not for MC version. It is so that you can specify which versions of the mod are compatible to each other.

     

    I know im talking about mod version has a bug

    the minecraft version is okay

     

    You misunderstood diesieben07. He meant this line:

        versionBounds = "[1.5.1]"

     

    This variable is NOT for the Minecraft version! It is for your own version.

    i see thank you it works now

     

  6. in eclipse always appear this bug

    The mod Test appears to reject its own version number (3.1) in its version handling

    but it run normaly

    but doent work when i connect in my server it say

    you dont have the required mods or are outdated

    but i have the same mods in the client and the server

     

    i think the bug is in here

     

    @Mod (modid = "Test", name = "Funny Start!", modLanguage = "en_US", version = "3.1")
    @NetworkMod (
    	clientSideRequired = true,
        serverSideRequired = false,
        versionBounds = "[1.5.1]"
    

  7. ok ok new log

     

    2012-07-27 17:07:50 [iNFO] Forge Mod Loader version 2.2.106.176 for Minecraft c:1.2.5, s:1.2.5 loading

    2012-07-27 17:07:50 [FINE] Attempting to load mods contained in the minecraft jar file and associated classes

    2012-07-27 17:07:50 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\lwjgl.jar, loading

    2012-07-27 17:07:50 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\jinput.jar, loading

    2012-07-27 17:07:50 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\lwjgl_util.jar, loading

    2012-07-27 17:07:50 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar, loading

    2012-07-27 17:07:50 [FINE] Found a mod class mod_MinecraftForge in file minecraft.jar, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_MinecraftForge found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_MinecraftForge loaded

    2012-07-27 17:07:50 [FINE] Mod class mod_MinecraftForge loaded successfully

    2012-07-27 17:07:50 [FINE] Found a mod class mod_ModLoaderMp in file minecraft.jar, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_ModLoaderMp found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_ModLoaderMp loaded

    2012-07-27 17:07:50 [FINE] Mod class mod_ModLoaderMp loaded successfully

    2012-07-27 17:07:50 [FINE] Found a mod class mod_TooManyItems in file minecraft.jar, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_TooManyItems found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_TooManyItems loaded

    2012-07-27 17:07:50 [FINE] Mod class mod_TooManyItems loaded successfully

    2012-07-27 17:07:50 [FINE] Minecraft jar mods loaded successfully

    2012-07-27 17:07:50 [iNFO] Loading mods from C:\Users\olle\AppData\Roaming\.minecraft\mods

    2012-07-27 17:07:50 [FINE] Found a zip or jar file industrialcraft-2-client_1.97 (1).jar, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_IC2 in file industrialcraft-2-client_1.97 (1).jar, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_IC2 found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_IC2 loaded

    2012-07-27 17:07:50 [FINE] Mod class mod_IC2 loaded successfully

    2012-07-27 17:07:50 [FINE] File industrialcraft-2-client_1.97 (1).jar loaded successfully

    2012-07-27 17:07:50 [FINE] Found a zip or jar file RedPowerControl-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_RedPowerControl in file RedPowerControl-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerControl found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerControl loaded

    2012-07-27 17:07:50 [FINE] Failed to find mcmod.info file in RedPowerControl-2.0pr5b2.zip for mod_RedPowerControl

    2012-07-27 17:07:50 [FINE] Mod class mod_RedPowerControl loaded successfully

    2012-07-27 17:07:50 [FINE] File RedPowerControl-2.0pr5b2.zip loaded successfully

    2012-07-27 17:07:50 [FINE] Found a zip or jar file RedPowerCore-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_RedPowerCore in file RedPowerCore-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerCore found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerCore loaded

    2012-07-27 17:07:50 [FINE] Failed to find mcmod.info file in RedPowerCore-2.0pr5b2.zip for mod_RedPowerCore

    2012-07-27 17:07:50 [FINE] Mod class mod_RedPowerCore loaded successfully

    2012-07-27 17:07:50 [FINE] File RedPowerCore-2.0pr5b2.zip loaded successfully

    2012-07-27 17:07:50 [FINE] Found a zip or jar file RedPowerLighting-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_RedPowerLighting in file RedPowerLighting-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerLighting found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerLighting loaded

    2012-07-27 17:07:50 [FINE] Failed to find mcmod.info file in RedPowerLighting-2.0pr5b2.zip for mod_RedPowerLighting

    2012-07-27 17:07:50 [FINE] Mod class mod_RedPowerLighting loaded successfully

    2012-07-27 17:07:50 [FINE] File RedPowerLighting-2.0pr5b2.zip loaded successfully

    2012-07-27 17:07:50 [FINE] Found a zip or jar file RedPowerLogic-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_RedPowerLogic in file RedPowerLogic-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerLogic found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerLogic loaded

    2012-07-27 17:07:50 [FINE] Failed to find mcmod.info file in RedPowerLogic-2.0pr5b2.zip for mod_RedPowerLogic

    2012-07-27 17:07:50 [FINE] Mod class mod_RedPowerLogic loaded successfully

    2012-07-27 17:07:50 [FINE] File RedPowerLogic-2.0pr5b2.zip loaded successfully

    2012-07-27 17:07:50 [FINE] Found a zip or jar file RedPowerMachine-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_RedPowerMachine in file RedPowerMachine-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerMachine found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerMachine loaded

    2012-07-27 17:07:50 [FINE] Failed to find mcmod.info file in RedPowerMachine-2.0pr5b2.zip for mod_RedPowerMachine

    2012-07-27 17:07:50 [FINE] Mod class mod_RedPowerMachine loaded successfully

    2012-07-27 17:07:50 [FINE] File RedPowerMachine-2.0pr5b2.zip loaded successfully

    2012-07-27 17:07:50 [FINE] Found a zip or jar file RedPowerWiring-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_RedPowerWiring in file RedPowerWiring-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerWiring found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerWiring loaded

    2012-07-27 17:07:50 [FINE] Failed to find mcmod.info file in RedPowerWiring-2.0pr5b2.zip for mod_RedPowerWiring

    2012-07-27 17:07:50 [FINE] Mod class mod_RedPowerWiring loaded successfully

    2012-07-27 17:07:50 [FINE] File RedPowerWiring-2.0pr5b2.zip loaded successfully

    2012-07-27 17:07:50 [FINE] Found a zip or jar file RedPowerWorld-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] Found a mod class mod_RedPowerWorld in file RedPowerWorld-2.0pr5b2.zip, attempting to load it

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerWorld found, loading

    2012-07-27 17:07:50 [FINE] ModLoader BaseMod class mod_RedPowerWorld loaded

    2012-07-27 17:07:50 [FINE] Failed to find mcmod.info file in RedPowerWorld-2.0pr5b2.zip for mod_RedPowerWorld

    2012-07-27 17:07:50 [FINE] Mod class mod_RedPowerWorld loaded successfully

    2012-07-27 17:07:50 [FINE] File RedPowerWorld-2.0pr5b2.zip loaded successfully

    2012-07-27 17:07:50 [iNFO] Forge Mod Loader has loaded 11 mods

    2012-07-27 17:07:50 [FINE] Beginning mod pre-initialization

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar

    2012-07-27 17:07:50 [FINE] Reading existing configuration file for mod_MinecraftForge : mod_MinecraftForge.cfg

    2012-07-27 17:07:50 [FINEST] Configuration for mod_MinecraftForge.DISABLE_DARK_ROOMS found values default: false, configured: false, interpreted: false

    2012-07-27 17:07:50 [FINEST] Configuration for mod_MinecraftForge.SPAWNER_ALLOW_ON_INVERTED found values default: true, configured: true, interpreted: true

    2012-07-27 17:07:50 [FINEST] Configuration for mod_MinecraftForge.SPAWNER_MAKE_MORE_RANDOM found values default: false, configured: false, interpreted: false

    2012-07-27 17:07:50 [FINE] Configuration for mod_MinecraftForge written to mod_MinecraftForge.cfg

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_ModLoaderMp found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_TooManyItems found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\industrialcraft-2-client_1.97 (1).jar

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_IC2 found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerControl-2.0pr5b2.zip

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_RedPowerControl found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerCore-2.0pr5b2.zip

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_RedPowerCore found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerLighting-2.0pr5b2.zip

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_RedPowerLighting found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerLogic-2.0pr5b2.zip

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_RedPowerLogic found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerMachine-2.0pr5b2.zip

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_RedPowerMachine found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerWiring-2.0pr5b2.zip

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_RedPowerWiring found or required. No file written

    2012-07-27 17:07:50 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerWorld-2.0pr5b2.zip

    2012-07-27 17:07:50 [FINE] No MLProp configuration for mod_RedPowerWorld found or required. No file written

    2012-07-27 17:07:50 [FINE] Mod pre-initialization complete

    2012-07-27 17:07:50 [FINE] Verifying mod dependencies are satisfied

    2012-07-27 17:07:50 [FINE] All dependencies are satisfied

    2012-07-27 17:07:50 [FINE] Sorting mods into an ordered list

    2012-07-27 17:07:50 [FINE] Sorted mod list:

    2012-07-27 17:07:50 [FINE] mod_MinecraftForge: minecraft.jar ()

    2012-07-27 17:07:50 [FINE] mod_ModLoaderMp: minecraft.jar ()

    2012-07-27 17:07:50 [FINE] mod_TooManyItems: minecraft.jar ()

    2012-07-27 17:07:50 [FINE] mod_IC2: industrialcraft-2-client_1.97 (1).jar ()

    2012-07-27 17:07:50 [FINE] mod_RedPowerControl: RedPowerControl-2.0pr5b2.zip ()

    2012-07-27 17:07:50 [FINE] mod_RedPowerCore: RedPowerCore-2.0pr5b2.zip ()

    2012-07-27 17:07:50 [FINE] mod_RedPowerLighting: RedPowerLighting-2.0pr5b2.zip ()

    2012-07-27 17:07:50 [FINE] mod_RedPowerLogic: RedPowerLogic-2.0pr5b2.zip ()

    2012-07-27 17:07:50 [FINE] mod_RedPowerMachine: RedPowerMachine-2.0pr5b2.zip ()

    2012-07-27 17:07:50 [FINE] mod_RedPowerWiring: RedPowerWiring-2.0pr5b2.zip ()

    2012-07-27 17:07:50 [FINE] mod_RedPowerWorld: RedPowerWorld-2.0pr5b2.zip ()

    2012-07-27 17:07:52 [FINE] Beginning mod initialization

    2012-07-27 17:07:52 [FINER] Initializing mod_MinecraftForge

    2012-07-27 17:07:52 [iNFO] MinecraftForge v3.3.8.164 Initialized

    2012-07-27 17:07:52 [FINER] Initializing mod_ModLoaderMp

    2012-07-27 17:07:52 [FINER] Initializing mod_TooManyItems

    2012-07-27 17:07:52 [FINER] Initializing mod_IC2

    2012-07-27 17:07:53 [FINER] Initializing mod_RedPowerControl

    2012-07-27 17:07:53 [FINER] Initializing mod_RedPowerCore

    2012-07-27 17:07:53 [FINER] Initializing mod_RedPowerLighting

    2012-07-27 17:07:53 [FINER] Initializing mod_RedPowerLogic

    2012-07-27 17:07:53 [FINER] Initializing mod_RedPowerMachine

    2012-07-27 17:07:53 [FINER] Initializing mod_RedPowerWiring

    2012-07-27 17:07:53 [FINER] Initializing mod_RedPowerWorld

    2012-07-27 17:07:53 [FINE] Mod initialization complete

    2012-07-27 17:07:53 [FINE] Beginning mod post-initialization

    2012-07-27 17:07:53 [FINER] Post-initializing mod_MinecraftForge

    2012-07-27 17:07:53 [FINER] Post-initializing mod_ModLoaderMp

    2012-07-27 17:07:53 [FINE] ModLoaderMP 1.0.0 Initialized

    2012-07-27 17:07:53 [FINER] Post-initializing mod_TooManyItems

    2012-07-27 17:07:53 [FINER] Post-initializing mod_IC2

    2012-07-27 17:07:53 [FINER] Post-initializing mod_RedPowerControl

    2012-07-27 17:07:53 [FINER] Post-initializing mod_RedPowerCore

    2012-07-27 17:07:53 [FINER] Post-initializing mod_RedPowerLighting

    2012-07-27 17:07:53 [FINER] Post-initializing mod_RedPowerLogic

    2012-07-27 17:07:53 [FINER] Post-initializing mod_RedPowerMachine

    2012-07-27 17:07:54 [FINER] Post-initializing mod_RedPowerWiring

    2012-07-27 17:07:54 [FINER] Post-initializing mod_RedPowerWorld

    2012-07-27 17:07:54 [FINE] Mod post-initialization complete

    2012-07-27 17:07:54 [iNFO] Forge Mod Loader load complete, 11 mods loaded

    2012-07-27 17:08:07 [FINER] Registered texture override 239 (239) on TextureAnimFX (0)

    2012-07-27 17:08:07 [FINER] Registered texture override 255 (255) on TextureAnimFX (0)

     

     

  8. here is

     

    2012-07-27 14:08:26 [iNFO] Forge Mod Loader version 2.2.106.176 for Minecraft c:1.2.5, s:1.2.5 loading

    2012-07-27 14:08:26 [FINE] Attempting to load mods contained in the minecraft jar file and associated classes

    2012-07-27 14:08:26 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\lwjgl.jar, loading

    2012-07-27 14:08:26 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\jinput.jar, loading

    2012-07-27 14:08:26 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\lwjgl_util.jar, loading

    2012-07-27 14:08:26 [FINE] Found a minecraft related file at C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar, loading

    2012-07-27 14:08:26 [FINE] Found a mod class mod_MinecraftForge in file minecraft.jar, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_MinecraftForge found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_MinecraftForge loaded

    2012-07-27 14:08:26 [FINE] Mod class mod_MinecraftForge loaded successfully

    2012-07-27 14:08:26 [FINE] Found a mod class mod_ModLoaderMp in file minecraft.jar, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_ModLoaderMp found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_ModLoaderMp loaded

    2012-07-27 14:08:26 [FINE] Mod class mod_ModLoaderMp loaded successfully

    2012-07-27 14:08:26 [FINE] Found a mod class mod_Pokeball in file minecraft.jar, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_Pokeball found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_Pokeball loaded

    2012-07-27 14:08:26 [FINE] Mod class mod_Pokeball loaded successfully

    2012-07-27 14:08:26 [FINE] Found a mod class mod_TooManyItems in file minecraft.jar, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_TooManyItems found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_TooManyItems loaded

    2012-07-27 14:08:26 [FINE] Mod class mod_TooManyItems loaded successfully

    2012-07-27 14:08:26 [FINE] Minecraft jar mods loaded successfully

    2012-07-27 14:08:26 [iNFO] Loading mods from C:\Users\olle\AppData\Roaming\.minecraft\mods

    2012-07-27 14:08:26 [FINE] Found a zip or jar file industrialcraft-2-client_1.97 (1).jar, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_IC2 in file industrialcraft-2-client_1.97 (1).jar, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_IC2 found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_IC2 loaded

    2012-07-27 14:08:26 [FINE] Mod class mod_IC2 loaded successfully

    2012-07-27 14:08:26 [FINE] File industrialcraft-2-client_1.97 (1).jar loaded successfully

    2012-07-27 14:08:26 [FINE] Found a zip or jar file RedPowerControl-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_RedPowerControl in file RedPowerControl-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerControl found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerControl loaded

    2012-07-27 14:08:26 [FINE] Failed to find mcmod.info file in RedPowerControl-2.0pr5b2.zip for mod_RedPowerControl

    2012-07-27 14:08:26 [FINE] Mod class mod_RedPowerControl loaded successfully

    2012-07-27 14:08:26 [FINE] File RedPowerControl-2.0pr5b2.zip loaded successfully

    2012-07-27 14:08:26 [FINE] Found a zip or jar file RedPowerCore-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_RedPowerCore in file RedPowerCore-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerCore found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerCore loaded

    2012-07-27 14:08:26 [FINE] Failed to find mcmod.info file in RedPowerCore-2.0pr5b2.zip for mod_RedPowerCore

    2012-07-27 14:08:26 [FINE] Mod class mod_RedPowerCore loaded successfully

    2012-07-27 14:08:26 [FINE] File RedPowerCore-2.0pr5b2.zip loaded successfully

    2012-07-27 14:08:26 [FINE] Found a zip or jar file RedPowerLighting-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_RedPowerLighting in file RedPowerLighting-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerLighting found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerLighting loaded

    2012-07-27 14:08:26 [FINE] Failed to find mcmod.info file in RedPowerLighting-2.0pr5b2.zip for mod_RedPowerLighting

    2012-07-27 14:08:26 [FINE] Mod class mod_RedPowerLighting loaded successfully

    2012-07-27 14:08:26 [FINE] File RedPowerLighting-2.0pr5b2.zip loaded successfully

    2012-07-27 14:08:26 [FINE] Found a zip or jar file RedPowerLogic-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_RedPowerLogic in file RedPowerLogic-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerLogic found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerLogic loaded

    2012-07-27 14:08:26 [FINE] Failed to find mcmod.info file in RedPowerLogic-2.0pr5b2.zip for mod_RedPowerLogic

    2012-07-27 14:08:26 [FINE] Mod class mod_RedPowerLogic loaded successfully

    2012-07-27 14:08:26 [FINE] File RedPowerLogic-2.0pr5b2.zip loaded successfully

    2012-07-27 14:08:26 [FINE] Found a zip or jar file RedPowerMachine-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_RedPowerMachine in file RedPowerMachine-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerMachine found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerMachine loaded

    2012-07-27 14:08:26 [FINE] Failed to find mcmod.info file in RedPowerMachine-2.0pr5b2.zip for mod_RedPowerMachine

    2012-07-27 14:08:26 [FINE] Mod class mod_RedPowerMachine loaded successfully

    2012-07-27 14:08:26 [FINE] File RedPowerMachine-2.0pr5b2.zip loaded successfully

    2012-07-27 14:08:26 [FINE] Found a zip or jar file RedPowerWiring-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_RedPowerWiring in file RedPowerWiring-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerWiring found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerWiring loaded

    2012-07-27 14:08:26 [FINE] Failed to find mcmod.info file in RedPowerWiring-2.0pr5b2.zip for mod_RedPowerWiring

    2012-07-27 14:08:26 [FINE] Mod class mod_RedPowerWiring loaded successfully

    2012-07-27 14:08:26 [FINE] File RedPowerWiring-2.0pr5b2.zip loaded successfully

    2012-07-27 14:08:26 [FINE] Found a zip or jar file RedPowerWorld-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] Found a mod class mod_RedPowerWorld in file RedPowerWorld-2.0pr5b2.zip, attempting to load it

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerWorld found, loading

    2012-07-27 14:08:26 [FINE] ModLoader BaseMod class mod_RedPowerWorld loaded

    2012-07-27 14:08:26 [FINE] Failed to find mcmod.info file in RedPowerWorld-2.0pr5b2.zip for mod_RedPowerWorld

    2012-07-27 14:08:26 [FINE] Mod class mod_RedPowerWorld loaded successfully

    2012-07-27 14:08:26 [FINE] File RedPowerWorld-2.0pr5b2.zip loaded successfully

    2012-07-27 14:08:26 [iNFO] Forge Mod Loader has loaded 12 mods

    2012-07-27 14:08:26 [FINE] Beginning mod pre-initialization

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar

    2012-07-27 14:08:26 [FINE] Reading existing configuration file for mod_MinecraftForge : mod_MinecraftForge.cfg

    2012-07-27 14:08:26 [FINEST] Configuration for mod_MinecraftForge.DISABLE_DARK_ROOMS found values default: false, configured: false, interpreted: false

    2012-07-27 14:08:26 [FINEST] Configuration for mod_MinecraftForge.SPAWNER_ALLOW_ON_INVERTED found values default: true, configured: true, interpreted: true

    2012-07-27 14:08:26 [FINEST] Configuration for mod_MinecraftForge.SPAWNER_MAKE_MORE_RANDOM found values default: false, configured: false, interpreted: false

    2012-07-27 14:08:26 [FINE] Configuration for mod_MinecraftForge written to mod_MinecraftForge.cfg

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_ModLoaderMp found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_Pokeball found or required. No file written

    2012-07-27 14:08:26 [FINE] Overriding /gui/items.png @ 102 with /pokeball.png. 83 slots remaining

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\bin\minecraft.jar

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_TooManyItems found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\industrialcraft-2-client_1.97 (1).jar

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_IC2 found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerControl-2.0pr5b2.zip

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_RedPowerControl found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerCore-2.0pr5b2.zip

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_RedPowerCore found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerLighting-2.0pr5b2.zip

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_RedPowerLighting found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerLogic-2.0pr5b2.zip

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_RedPowerLogic found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerMachine-2.0pr5b2.zip

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_RedPowerMachine found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerWiring-2.0pr5b2.zip

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_RedPowerWiring found or required. No file written

    2012-07-27 14:08:26 [FINER] Pre-initializing C:\Users\olle\AppData\Roaming\.minecraft\mods\RedPowerWorld-2.0pr5b2.zip

    2012-07-27 14:08:26 [FINE] No MLProp configuration for mod_RedPowerWorld found or required. No file written

    2012-07-27 14:08:26 [FINE] Mod pre-initialization complete

    2012-07-27 14:08:26 [FINE] Verifying mod dependencies are satisfied

    2012-07-27 14:08:26 [FINE] All dependencies are satisfied

    2012-07-27 14:08:26 [FINE] Sorting mods into an ordered list

    2012-07-27 14:08:26 [FINE] Sorted mod list:

    2012-07-27 14:08:26 [FINE] mod_MinecraftForge: minecraft.jar ()

    2012-07-27 14:08:26 [FINE] mod_ModLoaderMp: minecraft.jar ()

    2012-07-27 14:08:26 [FINE] mod_Pokeball: minecraft.jar ()

    2012-07-27 14:08:26 [FINE] mod_TooManyItems: minecraft.jar ()

    2012-07-27 14:08:26 [FINE] mod_IC2: industrialcraft-2-client_1.97 (1).jar ()

    2012-07-27 14:08:26 [FINE] mod_RedPowerControl: RedPowerControl-2.0pr5b2.zip ()

    2012-07-27 14:08:26 [FINE] mod_RedPowerCore: RedPowerCore-2.0pr5b2.zip ()

    2012-07-27 14:08:26 [FINE] mod_RedPowerLighting: RedPowerLighting-2.0pr5b2.zip ()

    2012-07-27 14:08:26 [FINE] mod_RedPowerLogic: RedPowerLogic-2.0pr5b2.zip ()

    2012-07-27 14:08:26 [FINE] mod_RedPowerMachine: RedPowerMachine-2.0pr5b2.zip ()

    2012-07-27 14:08:26 [FINE] mod_RedPowerWiring: RedPowerWiring-2.0pr5b2.zip ()

    2012-07-27 14:08:26 [FINE] mod_RedPowerWorld: RedPowerWorld-2.0pr5b2.zip ()

    2012-07-27 14:08:26 [FINE] Beginning mod initialization

    2012-07-27 14:08:26 [FINER] Initializing mod_MinecraftForge

    2012-07-27 14:08:26 [iNFO] MinecraftForge v3.3.8.164 Initialized

    2012-07-27 14:08:26 [FINER] Initializing mod_ModLoaderMp

    2012-07-27 14:08:26 [FINER] Initializing mod_Pokeball

    2012-07-27 14:08:26 [FINER] Initializing mod_TooManyItems

    2012-07-27 14:08:26 [FINER] Initializing mod_IC2

    2012-07-27 14:08:27 [FINER] Initializing mod_RedPowerControl

    2012-07-27 14:08:27 [FINER] Initializing mod_RedPowerCore

    2012-07-27 14:08:27 [FINER] Initializing mod_RedPowerLighting

    2012-07-27 14:08:27 [FINER] Initializing mod_RedPowerLogic

    2012-07-27 14:08:27 [FINER] Initializing mod_RedPowerMachine

    2012-07-27 14:08:27 [FINER] Initializing mod_RedPowerWiring

    2012-07-27 14:08:27 [FINER] Initializing mod_RedPowerWorld

    2012-07-27 14:08:27 [FINE] Mod initialization complete

    2012-07-27 14:08:27 [FINE] Beginning mod post-initialization

    2012-07-27 14:08:27 [FINER] Post-initializing mod_MinecraftForge

    2012-07-27 14:08:27 [FINER] Post-initializing mod_ModLoaderMp

    2012-07-27 14:08:27 [FINE] ModLoaderMP 1.0.0 Initialized

    2012-07-27 14:08:27 [FINER] Post-initializing mod_Pokeball

    2012-07-27 14:08:27 [FINER] Post-initializing mod_TooManyItems

    2012-07-27 14:08:27 [FINER] Post-initializing mod_IC2

    2012-07-27 14:08:27 [FINER] Post-initializing mod_RedPowerControl

    2012-07-27 14:08:27 [FINER] Post-initializing mod_RedPowerCore

    2012-07-27 14:08:27 [FINER] Post-initializing mod_RedPowerLighting

    2012-07-27 14:08:27 [FINER] Post-initializing mod_RedPowerLogic

    2012-07-27 14:08:27 [FINER] Post-initializing mod_RedPowerMachine

    2012-07-27 14:08:27 [FINER] Post-initializing mod_RedPowerWiring

    2012-07-27 14:08:27 [FINER] Post-initializing mod_RedPowerWorld

    2012-07-27 14:08:27 [FINE] Mod post-initialization complete

    2012-07-27 14:08:27 [iNFO] Forge Mod Loader load complete, 12 mods loaded

    2012-07-27 14:08:32 [FINER] Registered texture override 239 (239) on TextureAnimFX (0)

    2012-07-27 14:08:32 [FINER] Registered texture override 255 (255) on TextureAnimFX (0)

    2012-07-27 14:08:32 [FINER] Registered texture override 102 (102) on /gui/items.png (28)

     

     

     

    note:i say i dont had mods because i delete it and the bug still happends

×
×
  • Create New...

Important Information

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