Jump to content

Mod working when using minecraft in eclipse but not working on normal minecraft!


Thecheatgamer1

Recommended Posts

Well this is my item class

 

package com.Thecheatgamer1.Annom.Item;

 

 

import java.awt.List;

 

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.entity.projectile.EntitySnowball;

import net.minecraft.item.ItemStack;

import net.minecraft.util.EnumChatFormatting;

import net.minecraft.util.Icon;

import net.minecraft.util.StringTranslate;

import net.minecraft.world.World;

 

import com.Thecheatgamer1.Annom.Annom;

import com.Thecheatgamer1.Annom.Lib.Strings;

 

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

public class ItemKi87ElementIngot extends ItemsAnnom {

   

    @SideOnly(Side.CLIENT)

    private Icon[] icons;

 

   

    public ItemKi87ElementIngot(int id) {

 

        super(id);

        this.setHasSubtypes(true);

        this.setUnlocalizedName(Strings.KI87ELEMENT_NAME);

        this.setCreativeTab(Annom.tabsAnnom);

        maxStackSize = 1;

       

    }

   

    /**

    * Called whenever this item is equipped and the right mouse button is pressed. Args: itemStack, world, entityPlayer

    */

    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)

    {

        if (!par3EntityPlayer.capabilities.isCreativeMode)

        {

            --par1ItemStack.stackSize;

        }

 

        par2World.playSoundAtEntity(par3EntityPlayer, "random.bow", 0.5F, 0.4F / (itemRand.nextFloat() * 0.4F + 0.8F));

 

        if (!par2World.isRemote)

        {

            par2World.spawnEntityInWorld(new EntitySnowball(par2World, par3EntityPlayer));

        }

 

        return par1ItemStack;

    }

   

    public void addInformation(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, List par3List, boolean par4) {}

 

    public String getItemDisplayName1(ItemStack par1ItemStack)

    {

        return ("" + StringTranslate.getInstance().translateNamedKey(this.getLocalizedName(par1ItemStack))).trim();

    }

   

    @Override

    public String getItemDisplayName(ItemStack itemStack) {

 

        return EnumChatFormatting.BLUE + super.getItemDisplayName(itemStack);

    }

}

This is my modItems class were i put all the things that load all items

 

package com.Thecheatgamer1.Annom.Item;

 

import com.Thecheatgamer1.Annom.Lib.ItemIds;

 

import cpw.mods.fml.common.registry.GameRegistry;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

import net.minecraft.block.Block;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

 

public class ModItems {

 

    /* Mod item instances */

    //public static Item ItemMicroFusionPickaxe;

    //public static Item ItemFusionIngot;

    //public static Item ItemIredantCrystal;

    public static Item ItemKI87ElementIngot;

    //public static Item ItemHappyDaysMusicDisk;

   

 

    public static void init() {

 

        /* Initialize each mod item individually */

        //ItemMicroFusionPickaxe = new ItemMicroFusionPickaxe(ItemIds.ITEMMICROFUSIONPIACKAXE);

        //ItemFusionIngot = new ItemFusionIngot(ItemIds.ITEMFUSIONINGOT);

        //ItemIredantCrystal = new ItemIredantCrystal(ItemIds.ITEMIREDANTCRYSTAL);

        ItemKI87ElementIngot = new ItemKi87ElementIngot(ItemIds.ITEMKI87ELEMENT);

        //ItemHappyDaysMusicDisk = new ItemHappyDaysMusicDisk(ItemIds.ITEMHAPPYDAYSMUSICDISK);

       

        //LanguageRegistry.addName(ItemMicroFusionPickaxe, "MicroFusion Pickaxe");

        //LanguageRegistry.addName(ItemFusionIngot, "Fusion Ingot");

        //LanguageRegistry.addName(ItemIredantCrystal, "Iredant Crystal");

        LanguageRegistry.addName(ItemKI87ElementIngot, "Ki87Element");

        //LanguageRegistry.addName(ItemHappyDaysMusicDisk, "Happy Days - Music Disk");

       

        GameRegistry.addRecipe(new ItemStack(ItemKI87ElementIngot), new Object[] { "sis", "igi", "sis", Character.valueOf('s'), Block.stone, Character.valueOf('i'), Item.ingotIron, Character.valueOf('g'), Item.ingotGold });

       

    }

}

 

And everytime i load my mod in normal minecraft i get this

 

cpw.mods.fml.common.LoaderException: java.lang.NoSuchMethodError: com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setHasSubtypes(Z)Lnet/minecraft/item/Item;

at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:515)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

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)

Caused by: java.lang.NoSuchMethodError: com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setHasSubtypes(Z)Lnet/minecraft/item/Item;

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.<init>(ItemKi87ElementIngot.java:29)

at com.Thecheatgamer1.Annom.Item.ModItems.init(ModItems.java:28)

at com.Thecheatgamer1.Annom.Annom.preInit(Annom.java:88)

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.loadMods(Loader.java:514)

... 5 more

 

And when i tryed to fix that more and more crash erros cam up!

Link to comment
Share on other sites

this.setHasSubtypes(true);

 

on your item class, change it to:

 

this.setHasSubtypes(false);

 

reply with what happens

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

this.setHasSubtypes(true);

 

on your item class, change it to:

 

this.setHasSubtypes(false);

 

reply with what happens

 

Comes up with this

 

cpw.mods.fml.common.LoaderException: java.lang.NoSuchFieldError: hasSubtypes

at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:515)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

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)

Caused by: java.lang.NoSuchFieldError: hasSubtypes

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setHasSubtypes(ItemKi87ElementIngot.java:48)

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.<init>(ItemKi87ElementIngot.java:29)

at com.Thecheatgamer1.Annom.Item.ModItems.init(ModItems.java:28)

at com.Thecheatgamer1.Annom.Annom.preInit(Annom.java:89)

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.loadMods(Loader.java:514)

... 5 more

Link to comment
Share on other sites

I badly want to clean up your code..... :P

 

remove that line:

this.setHasSubtypes();

 

if its not needed

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

Put your files and logs in spoilers, please!

 

Crash report file!

 

 

---- Minecraft Crash Report ----

// Ooh. Shiny.

 

Time: 16/06/13 17:06

Description: Failed to start game

 

cpw.mods.fml.common.LoaderException: java.lang.NoSuchFieldError: hasSubtypes

at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:515)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

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)

Caused by: java.lang.NoSuchFieldError: hasSubtypes

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setHasSubtypes(ItemKi87ElementIngot.java:48)

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.<init>(ItemKi87ElementIngot.java:29)

at com.Thecheatgamer1.Annom.Item.ModItems.init(ModItems.java:28)

at com.Thecheatgamer1.Annom.Annom.preInit(Annom.java:89)

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.loadMods(Loader.java:514)

... 5 more

 

 

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_15, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 366617912 bytes (349 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.2.684 Minecraft Forge 7.8.0.684 4 mods loaded, 4 mods active

mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized

FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized

Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized

Annom{DEV Build!} [Annom] (Annom.jar) Unloaded->Constructed->Errored

LWJGL: 2.4.2

OpenGL: Intel® HD Graphics 2000 GL version 3.1.0 - Build 9.17.10.3062, Intel

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

 

 

ForgeModLoader Client 0 File!

 

 

2013-06-16 17:06:17 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.2.684 for Minecraft 1.5.2 loading

2013-06-16 17:06:17 [iNFO] [ForgeModLoader] Java is Java HotSpot 64-Bit Server VM, version 1.7.0_15, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7

2013-06-16 17:06:17 [FINE] [ForgeModLoader] Java classpath at launch is C:\Users\Connor\Desktop\Minecraft.exe

2013-06-16 17:06:17 [FINE] [ForgeModLoader] Java library path at launch is C:\Program Files\Java\jre7\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\12.0\DLLShared\;C:\Program Files (x86)\Roxio\OEM\AudioCore\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files\Java\jre7\bin;.

2013-06-16 17:06:17 [FINE] [ForgeModLoader] Enabling runtime deobfuscation

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] All core mods are successfully located

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Discovering coremods

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Found library file argo-small-3.2.jar present and correct in lib dir

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Found library file guava-14.0-rc3.jar present and correct in lib dir

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Found library file asm-all-4.1.jar present and correct in lib dir

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-148.jar present and correct in lib dir

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Found library file deobfuscation_data_1.5.2.zip present and correct in lib dir

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Found library file scala-library.jar present and correct in lib dir

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Running coremod plugins

2013-06-16 17:06:17 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

2013-06-16 17:06:18 [sEVERE] [ForgeModLoader] FML appears to be missing any signature data. This is not a good thing

2013-06-16 17:06:18 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

2013-06-16 17:06:18 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

2013-06-16 17:06:18 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

2013-06-16 17:06:18 [FINEST] [ForgeModLoader] Validating minecraft

2013-06-16 17:06:18 [FINEST] [ForgeModLoader] Minecraft validated, launching...

2013-06-16 17:06:21 [iNFO] [sTDOUT] 229 recipes

2013-06-16 17:06:21 [iNFO] [sTDOUT] 27 achievements

2013-06-16 17:06:21 [iNFO] [Minecraft-Client] Setting user: Thecheatgamer1

2013-06-16 17:06:21 [iNFO] [sTDOUT] (Session ID is 5948326849f46afccf5f0647d815ff8754f33600)

2013-06-16 17:06:21 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2

2013-06-16 17:06:21 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization

2013-06-16 17:06:21 [iNFO] [sTDOUT] MinecraftForge v7.8.0.684 Initialized

2013-06-16 17:06:21 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.684 Initialized

2013-06-16 17:06:21 [iNFO] [sTDOUT] Replaced 85 ore recipies

2013-06-16 17:06:21 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization

2013-06-16 17:06:21 [FINE] [ForgeModLoader] No config directory found, creating one: C:\Users\Connor\AppData\Roaming\.minecraft\config

2013-06-16 17:06:21 [iNFO] [ForgeModLoader] Config directory created successfully

2013-06-16 17:06:21 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Connor\AppData\Roaming\.minecraft\config\logging.properties

2013-06-16 17:06:21 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL

2013-06-16 17:06:21 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

2013-06-16 17:06:21 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\bin\lwjgl.jar

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\bin\jinput.jar

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\bin\lwjgl_util.jar

2013-06-16 17:06:21 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Connor\AppData\Roaming\.minecraft\bin\minecraft.jar, examining for mod candidates

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\lib\argo-small-3.2.jar

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\lib\guava-14.0-rc3.jar

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\lib\asm-all-4.1.jar

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\lib\bcprov-jdk15on-148.jar

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\lib\deobfuscation_data_1.5.2.zip

2013-06-16 17:06:21 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Connor\AppData\Roaming\.minecraft\lib\scala-library.jar

2013-06-16 17:06:21 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

2013-06-16 17:06:21 [iNFO] [ForgeModLoader] Searching C:\Users\Connor\AppData\Roaming\.minecraft\mods for mods

2013-06-16 17:06:21 [FINE] [ForgeModLoader] Found a candidate zip or jar file Annom.jar

2013-06-16 17:06:21 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods

2013-06-16 17:06:21 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Examining file Annom.jar for potential mods

2013-06-16 17:06:22 [FINER] [ForgeModLoader] Located mcmod.info file in file Annom.jar

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.Thecheatgamer1.Annom.Annom

2013-06-16 17:06:22 [FINEST] [Annom] Parsed dependency info : [] [] []

2013-06-16 17:06:22 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load

2013-06-16 17:06:22 [FINER] [ForgeModLoader] Received a system property request ''

2013-06-16 17:06:22 [FINER] [ForgeModLoader] System property request managing the state of 0 mods

2013-06-16 17:06:22 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\Connor\AppData\Roaming\.minecraft\config\logging.properties

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Reloaded logging properties

2013-06-16 17:06:22 [FINE] [mcp] Mod Logging channel mcp configured at default level.

2013-06-16 17:06:22 [iNFO] [mcp] Activating mod mcp

2013-06-16 17:06:22 [FINE] [FML] Mod Logging channel FML configured at default level.

2013-06-16 17:06:22 [iNFO] [FML] Activating mod FML

2013-06-16 17:06:22 [FINE] [Forge] Mod Logging channel Forge configured at default level.

2013-06-16 17:06:22 [iNFO] [Forge] Activating mod Forge

2013-06-16 17:06:22 [FINE] [Annom] Enabling mod Annom

2013-06-16 17:06:22 [FINE] [Annom] Mod Logging channel Annom configured at default level.

2013-06-16 17:06:22 [iNFO] [Annom] Activating mod Annom

2013-06-16 17:06:22 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied

2013-06-16 17:06:22 [FINER] [ForgeModLoader] All mod requirements are satisfied

2013-06-16 17:06:22 [FINER] [ForgeModLoader] Sorting mods into an ordered list

2013-06-16 17:06:22 [FINER] [ForgeModLoader] Mod sorting completed successfully

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Mod sorting data

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Annom(Annom:DEV Build!): Annom.jar ()

2013-06-16 17:06:22 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp

2013-06-16 17:06:22 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp

2013-06-16 17:06:22 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML

2013-06-16 17:06:22 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML

2013-06-16 17:06:22 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge

2013-06-16 17:06:22 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge

2013-06-16 17:06:22 [FINEST] [Annom] Sending event FMLConstructionEvent to mod Annom

2013-06-16 17:06:22 [FINEST] [ForgeModLoader] Testing mod Annom to verify it accepts its own version in a remote connection

2013-06-16 17:06:22 [FINEST] [ForgeModLoader] The mod Annom accepts its own version (DEV Build!)

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Annom

2013-06-16 17:06:22 [FINEST] [Annom] Sent event FMLConstructionEvent to mod Annom

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Mod signature data

2013-06-16 17:06:22 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:7.44): minecraft.jar (NO VALID CERTIFICATE FOUND)

2013-06-16 17:06:22 [FINE] [ForgeModLoader] FML(Forge Mod Loader:5.2.2.684): coremods (NO VALID CERTIFICATE FOUND)

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Forge(Minecraft Forge:7.8.0.684): coremods (NO VALID CERTIFICATE FOUND)

2013-06-16 17:06:22 [FINE] [ForgeModLoader] Annom(Annom:DEV Build!): Annom.jar (NO VALID CERTIFICATE FOUND)

2013-06-16 17:06:22 [FINEST] [mcp] Sending event FMLPreInitializationEvent to mod mcp

2013-06-16 17:06:22 [FINEST] [mcp] Sent event FMLPreInitializationEvent to mod mcp

2013-06-16 17:06:22 [FINEST] [FML] Sending event FMLPreInitializationEvent to mod FML

2013-06-16 17:06:22 [FINEST] [FML] Sent event FMLPreInitializationEvent to mod FML

2013-06-16 17:06:22 [FINEST] [Forge] Sending event FMLPreInitializationEvent to mod Forge

2013-06-16 17:06:22 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0

2013-06-16 17:06:22 [FINEST] [Forge] Sent event FMLPreInitializationEvent to mod Forge

2013-06-16 17:06:22 [FINEST] [Annom] Sending event FMLPreInitializationEvent to mod Annom

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/cs_CZ.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/cy_GB.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/da_DK.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/de_DE.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/en_US.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/es_ES.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/fi_FI.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/fr_FR.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/it_IT.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/ja_JP.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/la_IT.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/nl_NL.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/nb_NO.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/pl_PL.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/pt_BR.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/pt_PT.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/ru_RU.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/sk_SK.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/sr_RS.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/sv_SE.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/tr_TR.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/zh_CN.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/zh_TW.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [sEVERE] [Annom] The language resource /mods/Annom/Lang/el_GR.xml cannot be located on the classpath. This is a programming error.

2013-06-16 17:06:22 [FINE] [fml.ItemTracker] Adding item com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot(0) owned by Annom

2013-06-16 17:06:22 [FINEST] [Annom] Sent event FMLPreInitializationEvent to mod Annom

2013-06-16 17:06:22 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from PREINITIALIZATION to INITIALIZATION. Loading cannot continue

2013-06-16 17:06:22 [sEVERE] [ForgeModLoader]

mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized

FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized

Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized

Annom{DEV Build!} [Annom] (Annom.jar) Unloaded->Constructed->Errored

2013-06-16 17:06:22 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

2013-06-16 17:06:22 [sEVERE] [ForgeModLoader] Caught exception from Annom

java.lang.NoSuchFieldError: hasSubtypes

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setHasSubtypes(ItemKi87ElementIngot.java:48)

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.<init>(ItemKi87ElementIngot.java:29)

at com.Thecheatgamer1.Annom.Item.ModItems.init(ModItems.java:28)

at com.Thecheatgamer1.Annom.Annom.preInit(Annom.java:89)

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.loadMods(Loader.java:514)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

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)

2013-06-16 17:06:32 [iNFO] [sTDERR] cpw.mods.fml.common.LoaderException: java.lang.NoSuchFieldError: hasSubtypes

2013-06-16 17:06:32 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

2013-06-16 17:06:32 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:515)

2013-06-16 17:06:32 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

2013-06-16 17:06:32 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

2013-06-16 17:06:32 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

2013-06-16 17:06:32 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)

2013-06-16 17:06:32 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] Caused by: java.lang.NoSuchFieldError: hasSubtypes

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setHasSubtypes(ItemKi87ElementIngot.java:48)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.<init>(ItemKi87ElementIngot.java:29)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.Thecheatgamer1.Annom.Item.ModItems.init(ModItems.java:28)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.Thecheatgamer1.Annom.Annom.preInit(Annom.java:89)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-06-16 17:06:32 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

2013-06-16 17:06:32 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

2013-06-16 17:06:32 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)

2013-06-16 17:06:32 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:514)

2013-06-16 17:06:32 [iNFO] [sTDERR] ... 5 more

 

 

 

 

 

 

Link to comment
Share on other sites

I badly want to clean up your code..... :P

 

remove that line:

this.setHasSubtypes();

 

if its not needed

 

Well i removed it and this is the result

 

 

cpw.mods.fml.common.LoaderException: java.lang.NoSuchMethodError: com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setUnlocalizedName(Ljava/lang/String;)Lnet/minecraft/item/Item;

at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

at cpw.mods.fml.common.Loader.loadMods(Loader.java:515)

at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

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)

Caused by: java.lang.NoSuchMethodError: com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.setUnlocalizedName(Ljava/lang/String;)Lnet/minecraft/item/Item;

at com.Thecheatgamer1.Annom.Item.ItemKi87ElementIngot.<init>(ItemKi87ElementIngot.java:29)

at com.Thecheatgamer1.Annom.Item.ModItems.init(ModItems.java:28)

at com.Thecheatgamer1.Annom.Annom.preInit(Annom.java:89)

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.loadMods(Loader.java:514)

... 5 more

--- END ERROR REPORT b9b441cb ----------

 

 

 

Link to comment
Share on other sites

What version of Forge did you code in?

What version of Forge and Minecraft are you trying to add the mod to?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

this.setHasSubtypes(true);

        this.setUnlocalizedName(Strings.KI87ELEMENT_NAME);

        maxStackSize = 1;

 

remove these lines

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

this.setHasSubtypes(true);

        this.setUnlocalizedName(Strings.KI87ELEMENT_NAME);

        maxStackSize = 1;

 

remove these lines

 

If i do, how will my items get their names and max stack sizes? :o and it is also in the ItemAnnom class so if i do remove them it will ask my to implement the unimplemented structure

Link to comment
Share on other sites

just letting you know, im gong to make an eclipse project and try to mess with your code to try and get it working

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

if you have a bitbucket account i can give you read only access to a closed source mod that i made and you can see how i planned ahead...... well the current source is closed old source is open

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

Like on mine use just what you need.

 

open source 1.4.7 version of my mod:

https://github.com/Dontrell94/Hunting-Traps-1.4.7

I took over Hunting Traps Mod and work on helping the forge community as much as I can. View my work here: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1443756-1-7-2-1-6-4-1-5-2-1-4-7-hunting-traps-mod-v-0-4-0

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • OLXTOTO adalah situs bandar togel online resmi terbesar dan terpercaya di Indonesia. Bergabunglah dengan OLXTOTO dan nikmati pengalaman bermain togel yang aman dan terjamin. Koleksi toto 4D dan togel toto terlengkap di OLXTOTO membuat para member memiliki pilihan taruhan yang lebih banyak. Sebagai situs togel terpercaya, OLXTOTO menjaga keamanan dan kenyamanan para membernya dengan sistem keamanan terbaik dan enkripsi data. Transaksi yang cepat, aman, dan terpercaya merupakan jaminan dari OLXTOTO. Nikmati layanan situs toto terbaik dari OLXTOTO dengan tampilan yang user-friendly dan mudah digunakan. Layanan pelanggan tersedia 24/7 untuk membantu para member. Bergabunglah dengan OLXTOTO sekarang untuk merasakan pengalaman bermain togel yang menyenangkan dan menguntungkan.
    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
  • Topics

×
×
  • Create New...

Important Information

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