• 0

    posted a message on Texture Problem
    My textures arent loading on minecraft 1.6.2.

    I am getting lines of code the all look like this:

    Using missing texture, unable to load: missing_icon_item_1257_joe_doe:textures/items/onions.png

    I am also getting the same lines of code for my crop textures, i have put the textures at:
    src/minecraft/assets/joe_doe/textures/(block/item)

    The missing textures apply to my onions, onion seeds, and onion crop.

    Here's my mod code:




    package mod;
    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;

    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.item.Item;
    import net.minecraft.item.ItemFood;
    import net.minecraft.item.ItemSeeds;
    import net.minecraft.item.ItemStack;
    import cpw.mods.fml.common.Mod;
    import cpw.mods.fml.common.Mod.Init;
    import cpw.mods.fml.common.event.FMLInitializationEvent;
    import cpw.mods.fml.common.network.NetworkMod;
    import cpw.mods.fml.common.registry.GameRegistry;
    import cpw.mods.fml.common.registry.LanguageRegistry;

    @Mod(modid = "joe_doe", name = "Foods Galore", version = "Beta 0.0")
    @NetworkMod(clientSideRequired = true, serverSideRequired = false)

    public class FoodGalore {

    public static Item OnionSeeds;
    public int OnionSeedsID = 1000;

    public static Item Onion;
    public int OnionID = 1001;

    public static Block OnionCrop;
    int OnionCropID = 500;


    @Init
    public void load(FMLInitializationEvent event){

    Onion = new ItemFood(OnionID, 1, 2.0F, false).setUnlocalizedName("joe_doe:onions");

    OnionSeeds = new ItemSeeds(1000, OnionCropID,
    Block.tilledField.blockID).setUnlocalizedName("joe_doe:onionseeds");

    OnionCrop = new BlockOnionCrop(OnionCropID).setHardness(0.0F).setStepSound(Block.soundGrassFootstep).setUnlocalizedName("joe_doe:onion");

    gameRegisters();
    languageRegisters();

    }

    private static void gameRegisters(){
    GameRegistry.registerItem(Onion, "Onion");
    GameRegistry.registerBlock(OnionCrop, "OnionCrop");
    GameRegistry.registerItem(OnionSeeds, "OnionSeeds");

    }

    private static void languageRegisters(){
    LanguageRegistry.addName(Onion, "Onion");
    LanguageRegistry.addName(OnionCrop, "Onion Crop");
    LanguageRegistry.addName(OnionSeeds, "Onion Seeds");

    }



    }


    Here is my OnionCrop class:


    package mod;

    import cpw.mods.fml.relauncher.Side;
    import cpw.mods.fml.relauncher.SideOnly;

    import java.util.ArrayList;
    import java.util.Random;

    import net.minecraft.block.Block;
    import net.minecraft.block.BlockCrops;
    import net.minecraft.block.BlockFlower;
    import net.minecraft.client.renderer.texture.IconRegister;
    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.item.Item;
    import net.minecraft.item.ItemStack;
    import net.minecraft.util.Icon;
    import net.minecraft.util.MathHelper;
    import net.minecraft.world.World;
    import net.minecraftforge.common.ForgeDirection;

    public class BlockOnionCrop extends BlockCrops
    {
    @SideOnly(Side.CLIENT)
    private Icon[] iconArray;

    protected BlockOnionCrop(int par1)
    {
    super(par1);
    this.setTickRandomly(true);
    float f = 0.5F;
    this.setBlockBounds(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, 0.25F, 0.5F + f);
    this.setCreativeTab((CreativeTabs)null);
    this.setHardness(0.0F);
    this.setStepSound(soundGrassFootstep);
    this.disableStats();
    }

    /**
    * Gets passed in the blockID of the block below and supposed to return true if its allowed to grow on the type of
    * blockID passed in. Args: blockID
    */
    protected boolean canThisPlantGrowOnThisBlockID(int par1)
    {
    return par1 == Block.tilledField.blockID;
    }

    /**
    * Ticks the block if it's been scheduled
    */
    public void updateTick(World par1World, int par2, int par3, int par4, Random par5Random)
    {
    super.updateTick(par1World, par2, par3, par4, par5Random);

    if (par1World.getBlockLightValue(par2, par3 + 1, par4) >= 9)
    {
    int l = par1World.getBlockMetadata(par2, par3, par4);

    if (l < 7)
    {
    float f = this.getGrowthRate(par1World, par2, par3, par4);

    if (par5Random.nextInt((int)(25.0F / f) + 1) == 0)
    {
    ++l;
    par1World.setBlockMetadataWithNotify(par2, par3, par4, l, 2);
    }
    }
    }
    }

    /**
    * Apply bonemeal to the crops.
    */
    public void fertilize(World par1World, int par2, int par3, int par4)
    {
    int l = par1World.getBlockMetadata(par2, par3, par4) + MathHelper.getRandomIntegerInRange(par1World.rand, 2, 5);

    if (l > 7)
    {
    l = 7;
    }

    par1World.setBlockMetadataWithNotify(par2, par3, par4, l, 2);
    }

    /**
    * Gets the growth rate for the crop. Setup to encourage rows by halving growth rate if there is diagonals, crops on
    * different sides that aren't opposing, and by adding growth for every crop next to this one (and for crop below
    * this one). Args: x, y, z
    */
    private float getGrowthRate(World par1World, int par2, int par3, int par4)
    {
    float f = 1.0F;
    int l = par1World.getBlockId(par2, par3, par4 - 1);
    int i1 = par1World.getBlockId(par2, par3, par4 + 1);
    int j1 = par1World.getBlockId(par2 - 1, par3, par4);
    int k1 = par1World.getBlockId(par2 + 1, par3, par4);
    int l1 = par1World.getBlockId(par2 - 1, par3, par4 - 1);
    int i2 = par1World.getBlockId(par2 + 1, par3, par4 - 1);
    int j2 = par1World.getBlockId(par2 + 1, par3, par4 + 1);
    int k2 = par1World.getBlockId(par2 - 1, par3, par4 + 1);
    boolean flag = j1 == this.blockID || k1 == this.blockID;
    boolean flag1 = l == this.blockID || i1 == this.blockID;
    boolean flag2 = l1 == this.blockID || i2 == this.blockID || j2 == this.blockID || k2 == this.blockID;

    for (int l2 = par2 - 1; l2 <= par2 + 1; ++l2)
    {
    for (int i3 = par4 - 1; i3 <= par4 + 1; ++i3)
    {
    int j3 = par1World.getBlockId(l2, par3 - 1, i3);
    float f1 = 0.0F;

    if (blocksList[j3] != null && blocksList[j3].canSustainPlant(par1World, l2, par3 - 1, i3, ForgeDirection.UP, this))
    {
    f1 = 1.0F;

    if (blocksList[j3].isFertile(par1World, l2, par3 - 1, i3))
    {
    f1 = 3.0F;
    }
    }

    if (l2 != par2 || i3 != par4)
    {
    f1 /= 4.0F;
    }

    f += f1;
    }
    }

    if (flag2 || flag && flag1)
    {
    f /= 2.0F;
    }

    return f;
    }

    @SideOnly(Side.CLIENT)

    /**
    * From the specified side and block metadata retrieves the blocks texture. Args: side, metadata
    */
    public Icon getIcon(int par1, int par2)
    {
    if (par2 < 0 || par2 > 7)
    {
    par2 = 7;
    }

    return this.iconArray[par2];
    }

    /**
    * The type of render function that is called for this block
    */
    public int getRenderType()
    {
    return 6;
    }

    /**
    * Generate a seed ItemStack for this crop.
    */
    protected int getSeedItem()
    {
    return FoodGalore.OnionSeeds.itemID;
    }

    /**
    * Generate a crop produce ItemStack for this crop.
    */
    protected int getCropItem()
    {
    return FoodGalore.Onion.itemID;
    }

    /**
    * Drops the block items with a specified chance of dropping the specified items
    */
    public void dropBlockAsItemWithChance(World par1World, int par2, int par3, int par4, int par5, float par6, int par7)
    {
    super.dropBlockAsItemWithChance(par1World, par2, par3, par4, par5, par6, 0);
    }

    @Override
    public ArrayList<ItemStack> getBlockDropped(World world, int x, int y, int z, int metadata, int fortune)
    {
    ArrayList<ItemStack> ret = super.getBlockDropped(world, x, y, z, metadata, fortune);

    if (metadata >= 7)
    {
    for (int n = 0; n < 3 + fortune; n++)
    {
    if (world.rand.nextInt(15) <= metadata)
    {
    ret.add(new ItemStack(this.getSeedItem(), 1, 0));
    }
    }
    }

    return ret;
    }

    /**
    * Returns the ID of the items to drop on destruction.
    */
    public int idDropped(int par1, Random par2Random, int par3)
    {
    return par1 == 7 ? this.getCropItem() : this.getSeedItem();
    }

    /**
    * Returns the quantity of items to drop on block destruction.
    */
    public int quantityDropped(Random par1Random)
    {
    return 1;
    }

    @SideOnly(Side.CLIENT)

    /**
    * only called by clickMiddleMouseButton , and passed to inventory.setCurrentItem (along with isCreative)
    */
    public int idPicked(World par1World, int par2, int par3, int par4)
    {
    return this.getSeedItem();
    }

    @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.iconArray = new Icon[8];

    for (int i = 0; i < this.iconArray.length; ++i)
    {
    this.iconArray[i] = par1IconRegister.registerIcon(this.func_111023_E() + "_stage_" + i);
    }
    }
    }

    All of my code works it's just that the textures are "missing"

    Please help me, thanks.
    Posted in: Modification Development
  • 0

    posted a message on [1.6.X/1.5.2/Others]Pam's Mods - Feb 9th (I'm Back!)
    I don't know if this was intentional, but it would be better if you could place cakes down(from your mod) and eat them like vanilla minecraft cakes. It's acutally not that hard at all. Just copy the BlockCake.java Into a new class, rename the files into your cake name, and import everything. And all you need to do is change the textures of the top bottom side and middle of the cakes. You can also change the amount it heals per slice of cake eaten. Maybe you can make it give you regen for 10 sec? or potion effects? Thanks.
    Posted in: Minecraft Mods
  • 0

    posted a message on SCMowns Server V2 - Minecraft 1.6.4 [New Discord Launched 2020!]
    Both of the servers aren't working. The Modded server which I really want to join (because I saw the video) is down beacuse the server is "outdated". Please Fix this and I look forward to joining your server :)
    Posted in: PC Servers
  • 0

    posted a message on Mo' Creatures - v12.0.0 for Minecraft 1.12.1!! Now Opensource!!
    I can't dismount my horse by shift clicking!
    Posted in: Minecraft Mods
  • 0

    posted a message on I can't use some forge mods
    Ok I'll try and install it again...
    Posted in: Mods Discussion
  • 0

    posted a message on Minecraft Crash on World loading
    I am running minecraft version 1.5.2 and I keep getting a crash report.

    I am running a couple of mods:

    Minecraft forge(latest version)(minecraftforge-universal-1.5.2-7.8.0.716)
    Too Many Items(TooManyItems2013_04_25_1.5.2)
    Player Api(Required for More Enchantments)(MC 1.5.2-Player API universal 1.1)
    More Enchantments(1.5.2 Version created by Lithial)(Mod_MorePlayerEnchantmentsv1.5.2)
    Optifine_1.5.2_HD_U_D3
    Balkon's Weapon Mod(Latest Version)(1.5.2)

    I can get to the mojang screen and I can select a world to play on but right before it opens it gives me this crash report


    ---- Minecraft Crash Report ----
    // I feel sad now :(

    Time: 5/31/13 10:01 PM
    Description: Exception in server tick loop

    java.lang.ClassCastException: net.minecraft.entity.player.EntityPlayerMP cannot be cast to cpw.mods.fml.common.network.Player
    at cpw.mods.fml.common.network.NetworkRegistry.playerLoggedIn(NetworkRegistry.java:173)
    at cpw.mods.fml.common.network.FMLNetworkHandler.handlePlayerLogin(FMLNetworkHandler.java:298)
    at net.minecraft.server.management.ServerConfigurationManager.func_72355_a(ServerConfigurationManager.java:150)
    at net.minecraft.server.integrated.IntegratedServerListenThread.func_71747_b(IntegratedServerListenThread.java:97)
    at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:675)
    at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:571)
    at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:171)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469)
    at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:573)


    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 7 (amd64) version 6.1
    Java Version: 1.7.0_13, Oracle Corporation
    Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 327379912 bytes (312 MB) / 622723072 bytes (593 MB) up to 954466304 bytes (910 MB)
    JVM Flags: 2 total; -Xms512m -Xmx1024m
    AABB Pool Size: 2 (112 bytes; 0 MB) allocated, 2 (112 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.17.716 Minecraft Forge 7.8.0.716 Optifine OptiFine_1.5.2_HD_U_D3 6 mods loaded, 6 mods active
    mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    FML{5.2.17.716} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    Forge{7.8.0.716} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    mod_TooManyItems{1.5.2 2013-04-25} [mod_TooManyItems] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    mod_playerEnchantments{1.3.3Unoffial} [mod_playerEnchantments] (Mod_MorePlayerEnchantmentsv1.5.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    weaponmod{1.5.2 v1.11.3} [Balkon's WeaponMod] (WeaponMod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Player Count: 1 / 8; [EntityPlayerMP['Joe_Doe'/15, l='Hi', x=608.36, y=64.00, z=24.74]]
    Type: Integrated Server (map_client.txt)
    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Please help, thanks.
    Posted in: Mods Discussion
  • 0

    posted a message on I can't use some forge mods
    So there are some forge mods that won't work and everytime it doesn't work it gives give a similiar crash report
    And I have read all the instrucitons for every mod and they still don't work
    (The area highlighted in red is the similarity between the mods)

    All of these mods are for 1.5.2
    Ps: I'm having the same crash reports with tekkit so I'm guessing it's my computer or something

    Here is one for Enchanting Plus


    ---- Minecraft Crash Report ----
    // You're mean.

    Time: 5/31/13 6:09 PM
    Description: Failed to start game

    java.lang.ClassCastException: eplus.blocks.BlockEnchantTable cannot be cast to cpw.mods.fml.common.registry.BlockProxy
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:234)
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:195)
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:171)
    at eplus.blocks.Blocks.init(Blocks.java:29)
    at eplus.EnchantingPlus.init(EnchantingPlus.java:58)
    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.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.propogateStateMessage(LoadController.java:165)
    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:98)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:448)
    at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)
    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 7 (amd64) version 6.1
    Java Version: 1.7.0_13, Oracle Corporation
    Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 547331856 bytes (521 MB) / 693501952 bytes (661 MB) up to 954466304 bytes (910 MB)
    JVM Flags: 2 total; -Xms512m -Xmx1024m
    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.12.712 Minecraft Forge 7.8.0.712 4 mods loaded, 4 mods active
    mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.12.712} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.0.712} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    eplus{1.14.6} [Enchanting Plus] (EnchantingPlus-1.14.6.jar) Unloaded->Constructed->Pre-initialized->Errored
    LWJGL: 2.4.2
    OpenGL: AMD Radeon HD 6320 Graphics GL version 4.1.10834 Compatibility Profile Context, ATI Technologies Inc.
    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 Mo' Creatures


    ---- Minecraft Crash Report ----
    // I feel sad now :(

    Time: 5/31/13 7:21 PM
    Description: Failed to start game

    java.lang.ClassCastException: drzhark.mocreatures.block.MoCBlockRock cannot be cast to cpw.mods.fml.common.registry.BlockProxy
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:234)
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:195)
    at drzhark.mocreatures.MoCreatures.InitItems(MoCreatures.java:725)
    at drzhark.mocreatures.MoCreatures.load(MoCreatures.java:383)
    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.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.propogateStateMessage(LoadController.java:165)
    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:98)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:447)
    at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)
    at net.minecraft.client.Minecraft.run(Minecraft.java:732)
    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 7 (amd64) version 6.1
    Java Version: 1.7.0_13, Oracle Corporation
    Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 426268456 bytes (406 MB) / 671350784 bytes (640 MB) up to 954466304 bytes (910 MB)
    JVM Flags: 2 total; -Xms512m -Xmx1024m
    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.2.684 Minecraft Forge 7.8.0.684 6 mods loaded, 6 mods active
    mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    GuiAPI{0.15.6} [GuiAPI] (GuiAPI-0.15.6-1.5.2.jar) Unloaded->Constructed->Pre-initialized->Initialized
    CustomSpawner{2.2.2} [DrZhark's CustomSpawner] (CustomMobSpawner 2.2.2.zip) Unloaded->Constructed->Pre-initialized->Initialized
    MoCreatures{5.2.2} [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v5.2.zip) Unloaded->Constructed->Pre-initialized->Errored
    LWJGL: 2.4.2
    OpenGL: AMD Radeon HD 6320 Graphics GL version 4.1.10834 Compatibility Profile Context, ATI Technologies Inc.
    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
    Please help me, thanks
    Posted in: Mods Discussion
  • 0

    posted a message on ENCHANTING PLUS
    I can't install this mod, here is my error log


    ---- Minecraft Crash Report ----
    // Shall we play a game?

    Time: 5/30/13 3:25 PM
    Description: Failed to start game

    java.lang.ClassCastException: eplus.blocks.BlockEnchantTable cannot be cast to cpw.mods.fml.common.registry.BlockProxy
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:234)
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:195)
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:171)
    at eplus.blocks.Blocks.init(Blocks.java:29)
    at eplus.EnchantingPlus.init(EnchantingPlus.java:58)
    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.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.propogateStateMessage(LoadController.java:165)
    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:98)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:696)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:448)
    at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)
    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 7 (amd64) version 6.1
    Java Version: 1.7.0_13, Oracle Corporation
    Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 489339968 bytes (466 MB) / 648740864 bytes (618 MB) up to 954466304 bytes (910 MB)
    JVM Flags: 2 total; -Xms512m -Xmx1024m
    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.17.716 Minecraft Forge 7.8.0.716 4 mods loaded, 4 mods active
    mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.17.716} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.0.716} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    eplus{1.14.6} [Enchanting Plus] (EnchantingPlus-1.14.6.jar) Unloaded->Constructed->Pre-initialized->Errored
    LWJGL: 2.4.2
    OpenGL: AMD Radeon HD 6320 Graphics GL version 4.1.10834 Compatibility Profile Context, ATI Technologies Inc.
    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
    Posted in: Minecraft Mods
  • 0

    posted a message on Mo' Creatures - v12.0.0 for Minecraft 1.12.1!! Now Opensource!!
    I followed all of the install instructions step by step but I still get this error report:

    ---- Minecraft Crash Report ----
    // I'm sorry, Dave.

    Time: 5/27/13 8:33 PM
    Description: Failed to start game

    java.lang.ClassCastException: drzhark.mocreatures.block.MoCBlockRock cannot be cast to cpw.mods.fml.common.registry.BlockProxy
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:234)
    at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:195)
    at drzhark.mocreatures.MoCreatures.InitItems(MoCreatures.java:725)
    at drzhark.mocreatures.MoCreatures.load(MoCreatures.java:383)
    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.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.propogateStateMessage(LoadController.java:165)
    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:98)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:690)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:206)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:447)
    at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)
    at net.minecraft.client.Minecraft.run(Minecraft.java:732)
    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 7 (amd64) version 6.1
    Java Version: 1.7.0_13, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 482291536 bytes (459 MB) / 693501952 bytes (661 MB) up to 954466304 bytes (910 MB)
    JVM Flags: 2 total; -Xms512m -Xmx1024m
    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.2.684 Minecraft Forge 7.8.0.684 6 mods loaded, 6 mods active
    mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    GuiAPI{0.15.6} [GuiAPI] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    CustomSpawner{2.2.2} [DrZhark's CustomSpawner] (CustomMobSpawner 2.2.2.zip) Unloaded->Constructed->Pre-initialized->Initialized
    MoCreatures{5.2.2} [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v5.2.2.zip) Unloaded->Constructed->Pre-initialized->Errored
    LWJGL: 2.4.2
    OpenGL: AMD Radeon HD 6320 Graphics GL version 4.1.10834 Compatibility Profile Context, ATI Technologies Inc.
    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

    Please help me
    Posted in: Minecraft Mods
  • 1

    posted a message on DrZhark's Mo' Creatures (mod suggestion thread)
    A garfish would be an agressive water mob found hiding at the bottom of the river and attack the player on sight. They have a long mouth with many teeth and lay eggs at the bottom of the river, behaves like ostrich when eggs are stolen.
    More variety to fish and specific kinds of fish as well.
    Like a baracuda
    a saw shark
    a rock fish,
    giant squid perhaps,
    sperm whale.
    The giant squid and sperm whale would naturally fight eachother.
    Posted in: Mods Discussion
  • 0

    posted a message on Mo' Creatures - v12.0.0 for Minecraft 1.12.1!! Now Opensource!!
    Suggestion:
    Sea Turtles: There would be 3 Types of the sea turtle, the green sea turtle, the leatherback sea turtle, and the ghost sea turtle(there's an actual name for this white turtle but I can't think of it). The green sea turtle would be the most common, it would be half the size of the player, drops the same things that turtles drop. The leatherback sea turtle would be 1 1/2 size of the player and would be mountable without saddles or anything, it can also be a slow mount on land but fast in the water. The leatherback sea turtle would be the largest sea turtle and have a blackish "leather" texture. The "ghost" sea turtle would be whitish and 1/3 the size of the player. It wouldn't be a mount or serve much of a purpose, but you can mount it's white shell on your wall. The sea turtle can occasionally go on the beach and lay eggs, where you can hatch your own turtle and have it tamed. They would be healed by giving it a fish net with a jellyfish, or healed a little with a raw fish. Sea turtles would only go on beach biomes and only lay eggs at sunset or sunrise.
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.6.4] [Forge] [IN HIATUS] Power of the Elements v1.1.3 - Control All The Elements!
    Looks cool I'll try it, when there is a download link :D
    Posted in: Minecraft Mods
  • 0

    posted a message on ModLoader 1.5.1 Making a new crop
    I'm using forge now, which is a lot easier and I've made my CROP! Thanks
    Posted in: Modification Development
  • 0

    posted a message on ModLoader 1.5.1 Making a new crop
    Quote from cannibalturtle87

    Check out the Crops class in the Minecraft code. I've been able to make many crops by extending that class.

    I'm a beginner modder as I said at the top. Plus I don't know where to fit in the textures and such.


    If you're doing something a bit more advanced like a plant, you really need to use Forge not ModLoader: it has a designated plant API and a full tutorial on adding plants can be found here (in the tutorials section of the Forge wiki).

    Hmmm, I'll try to look into Forge. It just looks a lot more complicated, and I've only ever used ModLoader.
    Posted in: Modification Development
  • 0

    posted a message on ModLoader 1.5.1 Making a new crop
    Thanks for the responses, I'll check it out
    Posted in: Modification Development
  • To post a comment, please .