Jump to content

jordsta95

Members
  • Posts

    169
  • Joined

  • Last visited

Posts posted by jordsta95

  1. Hey there, I am pretty new to modding, so I know barely anything. Which means that I have no idea how to do this, and I couldn't find a single tutorial on YouTube... so I am here.

    Usually I will go by a tutorial, but then ask on here if something doesn't work, but this time it is a case of it's not there, but I would like to know :P

     

    Simple question, but I bet there will be a complex answer :P

    How do I add custom enchantments to my mod. Specifically to give 3 potion effects when you hit something with a sword (Poison, Nausea and Weakness... all for maybe 3 - 5 seconds)?

     

    Thanks

    -Jordan

  2. I don't see where I am going wrong :(

     

    This is the code in the main class file:

     

     

    DSHelmet = new DSArmour(4209, DRAGONSCALE , ModLoader.addArmor("DSArmour"), 0).setUnlocalizedName("DSHelmet").setCreativeTab(CreativeTabs.tabCombat);

    DSBody = new DSArmour(4210, DRAGONSCALE , ModLoader.addArmor("DSArmour"), 1).setUnlocalizedName("DSBody").setCreativeTab(CreativeTabs.tabCombat);

    DSLegs = new DSArmour(4211, DRAGONSCALE , ModLoader.addArmor("DSArmour"), 2).setUnlocalizedName("DSLegs").setCreativeTab(CreativeTabs.tabCombat);

    DSBoots = new DSArmour(4212, DRAGONSCALE , ModLoader.addArmor("DSArmour"), 3).setUnlocalizedName("DSBoots").setCreativeTab(CreativeTabs.tabCombat);

     

     

     

    And this is the code in the class files for each armour piece:

    Helmet:

     

    package mods.EverythingAndMore;

     

    import net.minecraft.item.EnumArmorMaterial;

    import net.minecraft.item.ItemArmor;

    import net.minecraft.item.ItemStack;

     

    public class DSHelmet extends ItemArmor{

     

    public DSHelmet(int par1, EnumArmorMaterial par2EnumArmorMaterial,

    int par3, int par4) {

    super(par1, par2EnumArmorMaterial, par3, par4);

     

    }

     

    public String getArmorTextureFile(ItemStack itemstack) {

    if(itemstack.itemID == Everything_and_More_Mod.DSHelmet.itemID || itemstack.itemID == Everything_and_More_Mod.DSBody.itemID || itemstack.itemID == Everything_and_More_Mod.DSBoots.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_0.png";

    }

     

    if(itemstack.itemID == Everything_and_More_Mod.DSLegs.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_1.png";

    }

     

    else return null;

    }

     

     

     

    }

     

     

     

    Body:

     

    package mods.EverythingAndMore;

     

    import net.minecraft.item.EnumArmorMaterial;

    import net.minecraft.item.ItemArmor;

    import net.minecraft.item.ItemStack;

     

    public class DSBody extends ItemArmor{

     

    public DSBody(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3,

    int par4) {

    super(par1, par2EnumArmorMaterial, par3, par4);

     

    }

    public String getArmorTextureFile(ItemStack itemstack) {

    if(itemstack.itemID == Everything_and_More_Mod.DSHelmet.itemID || itemstack.itemID == Everything_and_More_Mod.DSBody.itemID || itemstack.itemID == Everything_and_More_Mod.DSBoots.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_0.png";

    }

     

    if(itemstack.itemID == Everything_and_More_Mod.DSLegs.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_1.png";

    }

     

    else return null;

    }

    }

     

     

    Legs:

     

    package mods.EverythingAndMore;

     

    import net.minecraft.item.EnumArmorMaterial;

    import net.minecraft.item.ItemArmor;

    import net.minecraft.item.ItemStack;

     

    public class DSLegs extends ItemArmor{

     

    public DSLegs(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3,

    int par4) {

    super(par1, par2EnumArmorMaterial, par3, par4);

    }

    public String getArmorTextureFile(ItemStack itemstack) {

    if(itemstack.itemID == Everything_and_More_Mod.DSHelmet.itemID || itemstack.itemID == Everything_and_More_Mod.DSBody.itemID || itemstack.itemID == Everything_and_More_Mod.DSBoots.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_0.png";

    }

     

    if(itemstack.itemID == Everything_and_More_Mod.DSLegs.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_1.png";

    }

     

    else return null;

    }

     

     

     

    }

     

     

     

    Boots:

     

    package mods.EverythingAndMore;

     

    import net.minecraft.item.EnumArmorMaterial;

    import net.minecraft.item.ItemArmor;

    import net.minecraft.item.ItemStack;

     

    public class DSBoots extends ItemArmor{

     

    public DSBoots(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3,

    int par4) {

    super(par1, par2EnumArmorMaterial, par3, par4);

    }

    public String getArmorTextureFile(ItemStack itemstack) {

    if(itemstack.itemID == Everything_and_More_Mod.DSHelmet.itemID || itemstack.itemID == Everything_and_More_Mod.DSBody.itemID || itemstack.itemID == Everything_and_More_Mod.DSBoots.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_0.png";

    }

     

    if(itemstack.itemID == Everything_and_More_Mod.DSLegs.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour_1.png";

    }

     

    else return null;

    }

     

     

     

     

    }

     

     

  3. Hey there, I am wondering how would I go about fixing this issue:

    HLk77GG.png

     

    The code I have set up (using other tutorials as guides):

     

     

    package mods.EverythingAndMore;

     

    import net.minecraft.item.EnumArmorMaterial;

    import net.minecraft.item.ItemArmor;

    import net.minecraft.item.ItemStack;

     

    public class DSArmour extends ItemArmor{

     

    public DSArmour(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3,

    int par4) {

    super(par1, par2EnumArmorMaterial, par3, par4);

     

    }

    public String getArmorTextureFile(ItemStack itemstack) {

    if(itemstack.itemID == Everything_and_More_Mod.DSHelmet.itemID || itemstack.itemID == Everything_and_More_Mod.DSBody.itemID || itemstack.itemID == Everything_and_More_Mod.DSBoots.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour1.png";

    }

     

    if(itemstack.itemID == Everything_and_More_Mod.DSLegs.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour2.png";

    }

     

    else return null;

    }

     

     

     

    }

     

     

    DSArmour1 = boots, helm, body

    DSArmour2 = legs

    armor is the spelling of the folder (because minecraft uses that) but Armour in the file names is correct (because that is how English spell it)

     

    I don't know what is going wrong :(

     

    Please help

    -Jordan

  4. Just tried loading the file you sent me in minecraft...

     

    2013-06-14 13:37:59 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.2.684 for Minecraft 1.5.2 loading

    2013-06-14 13:37:59 [iNFO] [ForgeModLoader] Java is Java HotSpot Client VM, version 1.7.0_21, running on Windows 7:x86:6.1, installed at C:\Program Files (x86)\Java\jdk1.7.0_21\jre

    2013-06-14 13:37:59 [FINE] [ForgeModLoader] Java classpath at launch is C:\Users\UKGC\Desktop\Minecraft.exe

    2013-06-14 13:37:59 [FINE] [ForgeModLoader] Java library path at launch is C:\Program Files (x86)\Java\jdk1.7.0_21\jre\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:\Program Files (x86)\AMD APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Windows Live\Shared;C:\Users\UKGC\AppData\Local\Smartbar\Application\;C:\Users\UKGC\AppData\Local\Smartbar\Application\;C:\Program Files (x86)\Java\jdk1.7.0_21\bin;C:\Program Files (x86)\Java\jdk1.7.0_21\jre\bin;.

    2013-06-14 13:37:59 [FINE] [ForgeModLoader] Enabling runtime deobfuscation

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] All core mods are successfully located

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Discovering coremods

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Found library file argo-small-3.2.jar present and correct in lib dir

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Found library file guava-14.0-rc3.jar present and correct in lib dir

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Found library file asm-all-4.1.jar present and correct in lib dir

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-148.jar present and correct in lib dir

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Found library file deobfuscation_data_1.5.2.zip present and correct in lib dir

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Found library file scala-library.jar present and correct in lib dir

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Running coremod plugins

    2013-06-14 13:37:59 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

    2013-06-14 13:38:00 [iNFO] [ForgeModLoader] Found valid fingerprint for Minecraft Forge. Certificate fingerprint de4cf8a3f3bc15635810044c39240bf96804ea7d

    2013-06-14 13:38:00 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

    2013-06-14 13:38:00 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

    2013-06-14 13:38:00 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

    2013-06-14 13:38:00 [FINEST] [ForgeModLoader] Validating minecraft

    2013-06-14 13:38:00 [FINEST] [ForgeModLoader] Minecraft validated, launching...

    2013-06-14 13:38:02 [iNFO] [sTDOUT] 229 recipes

    2013-06-14 13:38:02 [iNFO] [sTDOUT] 27 achievements

    2013-06-14 13:38:02 [iNFO] [Minecraft-Client] Setting user: jordsta95

    2013-06-14 13:38:02 [iNFO] [sTDOUT] (Session ID is -5119284929103375651)

    2013-06-14 13:38:02 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2

    2013-06-14 13:38:04 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization

    2013-06-14 13:38:04 [iNFO] [sTDOUT] MinecraftForge v7.8.0.684 Initialized

    2013-06-14 13:38:04 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.684 Initialized

    2013-06-14 13:38:04 [iNFO] [sTDOUT] Replaced 85 ore recipies

    2013-06-14 13:38:04 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization

    2013-06-14 13:38:04 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\UKGC\AppData\Roaming\.minecraft\config\logging.properties

    2013-06-14 13:38:04 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\lwjgl.jar

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\jinput.jar

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\lwjgl_util.jar

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\UKGC\AppData\Roaming\.minecraft\bin\minecraft.jar, examining for mod candidates

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\argo-small-3.2.jar

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\guava-14.0-rc3.jar

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\asm-all-4.1.jar

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\bcprov-jdk15on-148.jar

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\deobfuscation_data_1.5.2.zip

    2013-06-14 13:38:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\scala-library.jar

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

    2013-06-14 13:38:04 [iNFO] [ForgeModLoader] Searching C:\Users\UKGC\AppData\Roaming\.minecraft\mods for mods

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Found a candidate mod directory EverythingAndMore

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Found a candidate mod directory rei_minimap

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Found a candidate mod directory VoxelMods

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Found a candidate mod directory zan

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] Examining directory EverythingAndMore for potential mods

    2013-06-14 13:38:04 [FINE] [ForgeModLoader] No mcmod.info file found in directory EverythingAndMore

    2013-06-14 13:38:04 [FINEST] [ForgeModLoader] Recursing into package client

    2013-06-14 13:38:04 [FINEST] [ForgeModLoader] Recursing into package common

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Identified an FMLMod type mod mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-14 13:38:05 [FINEST] [EverythingAndMoreMod] Parsed dependency info : [] [] []

    2013-06-14 13:38:05 [FINEST] [ForgeModLoader] Recursing into package textures

    2013-06-14 13:38:05 [FINEST] [ForgeModLoader] Recursing into package textures.armor

    2013-06-14 13:38:05 [FINEST] [ForgeModLoader] Recursing into package textures.blocks

    2013-06-14 13:38:05 [FINEST] [ForgeModLoader] Recursing into package textures.items

    2013-06-14 13:38:05 [FINEST] [ForgeModLoader] Recursing into package textures.mob

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Examining directory rei_minimap for potential mods

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] No mcmod.info file found in directory rei_minimap

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Examining directory VoxelMods for potential mods

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] No mcmod.info file found in directory VoxelMods

    2013-06-14 13:38:05 [FINEST] [ForgeModLoader] Recursing into package voxelMap

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Examining directory zan for potential mods

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] No mcmod.info file found in directory zan

    2013-06-14 13:38:05 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load

    2013-06-14 13:38:05 [FINER] [ForgeModLoader] Received a system property request ''

    2013-06-14 13:38:05 [FINER] [ForgeModLoader] System property request managing the state of 0 mods

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\UKGC\AppData\Roaming\.minecraft\config\logging.properties

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Reloaded logging properties

    2013-06-14 13:38:05 [FINE] [mcp] Mod Logging channel mcp configured at default level.

    2013-06-14 13:38:05 [iNFO] [mcp] Activating mod mcp

    2013-06-14 13:38:05 [FINE] [FML] Mod Logging channel FML configured at default level.

    2013-06-14 13:38:05 [iNFO] [FML] Activating mod FML

    2013-06-14 13:38:05 [FINE] [Forge] Mod Logging channel Forge configured at default level.

    2013-06-14 13:38:05 [iNFO] [Forge] Activating mod Forge

    2013-06-14 13:38:05 [FINE] [EverythingAndMoreMod] Enabling mod EverythingAndMoreMod

    2013-06-14 13:38:05 [FINE] [EverythingAndMoreMod] Mod Logging channel EverythingAndMoreMod configured at default level.

    2013-06-14 13:38:05 [iNFO] [EverythingAndMoreMod] Activating mod EverythingAndMoreMod

    2013-06-14 13:38:05 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied

    2013-06-14 13:38:05 [FINER] [ForgeModLoader] All mod requirements are satisfied

    2013-06-14 13:38:05 [FINER] [ForgeModLoader] Sorting mods into an ordered list

    2013-06-14 13:38:05 [FINER] [ForgeModLoader] Mod sorting completed successfully

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Mod sorting data

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] EverythingAndMoreMod(Everything And More:v0.1): EverythingAndMore ()

    2013-06-14 13:38:05 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp

    2013-06-14 13:38:05 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp

    2013-06-14 13:38:05 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML

    2013-06-14 13:38:05 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML

    2013-06-14 13:38:05 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge

    2013-06-14 13:38:05 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge

    2013-06-14 13:38:05 [FINEST] [EverythingAndMoreMod] Sending event FMLConstructionEvent to mod EverythingAndMoreMod

    2013-06-14 13:38:05 [FINEST] [EverythingAndMoreMod] Sent event FMLConstructionEvent to mod EverythingAndMoreMod

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Mod signature data

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:7.44): minecraft.jar (NO VALID CERTIFICATE FOUND)

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] FML(Forge Mod Loader:5.2.2.684): coremods (de4cf8a3f3bc15635810044c39240bf96804ea7d)

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] Forge(Minecraft Forge:7.8.0.684): coremods (NO VALID CERTIFICATE FOUND)

    2013-06-14 13:38:05 [FINE] [ForgeModLoader] EverythingAndMoreMod(Everything And More:v0.1): EverythingAndMore (NO VALID CERTIFICATE FOUND)

    2013-06-14 13:38:05 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue

    2013-06-14 13:38:05 [sEVERE] [ForgeModLoader]

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

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

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

    EverythingAndMoreMod{v0.1} [Everything And More] (EverythingAndMore) Unloaded->Errored

    2013-06-14 13:38:05 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

    2013-06-14 13:38:05 [sEVERE] [ForgeModLoader] Caught exception from EverythingAndMoreMod

    java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:423)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:356)

    at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56)

    at java.lang.Class.forName0(Native Method)

    at java.lang.Class.forName(Class.java:266)

    at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:425)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    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(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    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:503)

    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(Thread.java:722)

    Caused by: java.lang.NullPointerException

    at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227)

    ... 32 more

    2013-06-14 13:38:15 [iNFO] [sTDERR] cpw.mods.fml.common.LoaderException: java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:513)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at java.lang.Thread.run(Thread.java:722)

    2013-06-14 13:38:15 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:423)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:356)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at java.lang.Class.forName0(Native Method)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at java.lang.Class.forName(Class.java:266)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:425)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:503)

    2013-06-14 13:38:15 [iNFO] [sTDERR] ... 5 more

    2013-06-14 13:38:15 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException

    2013-06-14 13:38:15 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227)

    2013-06-14 13:38:15 [iNFO] [sTDERR] ... 32 more

     

     

    ...again -_- Could it be my minecraft forge client, thing?

  5. Added in the post init, and the instance (before the init, because it wouldn't let me put it in the post init... some error in eclipse)

    Here is the crashlog I get:

     

    2013-06-14 10:35:00 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.2.684 for Minecraft 1.5.2 loading

    2013-06-14 10:35:00 [iNFO] [ForgeModLoader] Java is Java HotSpot Client VM, version 1.7.0_21, running on Windows 7:x86:6.1, installed at C:\Program Files (x86)\Java\jdk1.7.0_21\jre

    2013-06-14 10:35:00 [FINE] [ForgeModLoader] Java classpath at launch is C:\Users\UKGC\Desktop\Minecraft.exe

    2013-06-14 10:35:00 [FINE] [ForgeModLoader] Java library path at launch is C:\Program Files (x86)\Java\jdk1.7.0_21\jre\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:\Program Files (x86)\AMD APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Windows Live\Shared;C:\Users\UKGC\AppData\Local\Smartbar\Application\;C:\Users\UKGC\AppData\Local\Smartbar\Application\;C:\Program Files (x86)\Java\jdk1.7.0_21\bin;C:\Program Files (x86)\Java\jdk1.7.0_21\jre\bin;.

    2013-06-14 10:35:00 [FINE] [ForgeModLoader] Enabling runtime deobfuscation

    2013-06-14 10:35:00 [FINEST] [ForgeModLoader] All core mods are successfully located

    2013-06-14 10:35:00 [FINEST] [ForgeModLoader] Discovering coremods

    2013-06-14 10:35:00 [FINEST] [ForgeModLoader] Found library file argo-small-3.2.jar present and correct in lib dir

    2013-06-14 10:35:00 [FINEST] [ForgeModLoader] Found library file guava-14.0-rc3.jar present and correct in lib dir

    2013-06-14 10:35:00 [FINEST] [ForgeModLoader] Found library file asm-all-4.1.jar present and correct in lib dir

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-148.jar present and correct in lib dir

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Found library file deobfuscation_data_1.5.2.zip present and correct in lib dir

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Found library file scala-library.jar present and correct in lib dir

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Running coremod plugins

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

    2013-06-14 10:35:01 [iNFO] [ForgeModLoader] Found valid fingerprint for Minecraft Forge. Certificate fingerprint de4cf8a3f3bc15635810044c39240bf96804ea7d

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Validating minecraft

    2013-06-14 10:35:01 [FINEST] [ForgeModLoader] Minecraft validated, launching...

    2013-06-14 10:35:03 [iNFO] [sTDOUT] 229 recipes

    2013-06-14 10:35:03 [iNFO] [sTDOUT] 27 achievements

    2013-06-14 10:35:03 [iNFO] [Minecraft-Client] Setting user: jordsta95

    2013-06-14 10:35:03 [iNFO] [sTDOUT] (Session ID is -8204414533785500790)

    2013-06-14 10:35:03 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2

    2013-06-14 10:35:04 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization

    2013-06-14 10:35:04 [iNFO] [sTDOUT] MinecraftForge v7.8.0.684 Initialized

    2013-06-14 10:35:04 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.684 Initialized

    2013-06-14 10:35:04 [iNFO] [sTDOUT] Replaced 85 ore recipies

    2013-06-14 10:35:04 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization

    2013-06-14 10:35:04 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\UKGC\AppData\Roaming\.minecraft\config\logging.properties

    2013-06-14 10:35:04 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\lwjgl.jar

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\jinput.jar

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\lwjgl_util.jar

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\UKGC\AppData\Roaming\.minecraft\bin\minecraft.jar, examining for mod candidates

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\argo-small-3.2.jar

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\guava-14.0-rc3.jar

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\asm-all-4.1.jar

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\bcprov-jdk15on-148.jar

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\deobfuscation_data_1.5.2.zip

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\scala-library.jar

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

    2013-06-14 10:35:04 [iNFO] [ForgeModLoader] Searching C:\Users\UKGC\AppData\Roaming\.minecraft\mods for mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Found a candidate mod directory EverythingAndMore

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Found a candidate mod directory rei_minimap

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Found a candidate mod directory VoxelMods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Found a candidate mod directory zan

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Examining directory EverythingAndMore for potential mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] No mcmod.info file found in directory EverythingAndMore

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package client

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package common

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Identified an FMLMod type mod mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-14 10:35:04 [FINEST] [EverythingAndMoreMod] Parsed dependency info : [] [] []

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package textures

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package textures.armor

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package textures.blocks

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package textures.items

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package textures.mob

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Examining directory rei_minimap for potential mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] No mcmod.info file found in directory rei_minimap

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Examining directory VoxelMods for potential mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] No mcmod.info file found in directory VoxelMods

    2013-06-14 10:35:04 [FINEST] [ForgeModLoader] Recursing into package voxelMap

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Examining directory zan for potential mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] No mcmod.info file found in directory zan

    2013-06-14 10:35:04 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Received a system property request ''

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] System property request managing the state of 0 mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\UKGC\AppData\Roaming\.minecraft\config\logging.properties

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Reloaded logging properties

    2013-06-14 10:35:04 [FINE] [mcp] Mod Logging channel mcp configured at default level.

    2013-06-14 10:35:04 [iNFO] [mcp] Activating mod mcp

    2013-06-14 10:35:04 [FINE] [FML] Mod Logging channel FML configured at default level.

    2013-06-14 10:35:04 [iNFO] [FML] Activating mod FML

    2013-06-14 10:35:04 [FINE] [Forge] Mod Logging channel Forge configured at default level.

    2013-06-14 10:35:04 [iNFO] [Forge] Activating mod Forge

    2013-06-14 10:35:04 [FINE] [EverythingAndMoreMod] Enabling mod EverythingAndMoreMod

    2013-06-14 10:35:04 [FINE] [EverythingAndMoreMod] Mod Logging channel EverythingAndMoreMod configured at default level.

    2013-06-14 10:35:04 [iNFO] [EverythingAndMoreMod] Activating mod EverythingAndMoreMod

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] All mod requirements are satisfied

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Sorting mods into an ordered list

    2013-06-14 10:35:04 [FINER] [ForgeModLoader] Mod sorting completed successfully

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Mod sorting data

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] EverythingAndMoreMod(Everything And More:v0.1): EverythingAndMore ()

    2013-06-14 10:35:04 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp

    2013-06-14 10:35:04 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp

    2013-06-14 10:35:04 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML

    2013-06-14 10:35:04 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML

    2013-06-14 10:35:04 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge

    2013-06-14 10:35:04 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge

    2013-06-14 10:35:04 [FINEST] [EverythingAndMoreMod] Sending event FMLConstructionEvent to mod EverythingAndMoreMod

    2013-06-14 10:35:04 [FINEST] [EverythingAndMoreMod] Sent event FMLConstructionEvent to mod EverythingAndMoreMod

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Mod signature data

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:7.44): minecraft.jar (NO VALID CERTIFICATE FOUND)

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] FML(Forge Mod Loader:5.2.2.684): coremods (de4cf8a3f3bc15635810044c39240bf96804ea7d)

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] Forge(Minecraft Forge:7.8.0.684): coremods (NO VALID CERTIFICATE FOUND)

    2013-06-14 10:35:04 [FINE] [ForgeModLoader] EverythingAndMoreMod(Everything And More:v0.1): EverythingAndMore (NO VALID CERTIFICATE FOUND)

    2013-06-14 10:35:04 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue

    2013-06-14 10:35:04 [sEVERE] [ForgeModLoader]

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

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

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

    EverythingAndMoreMod{v0.1} [Everything And More] (EverythingAndMore) Unloaded->Errored

    2013-06-14 10:35:04 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

    2013-06-14 10:35:04 [sEVERE] [ForgeModLoader] Caught exception from EverythingAndMoreMod

    java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:423)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:356)

    at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56)

    at java.lang.Class.forName0(Native Method)

    at java.lang.Class.forName(Class.java:266)

    at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:425)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    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(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    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:503)

    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(Thread.java:722)

    Caused by: java.lang.NullPointerException

    at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227)

    ... 32 more

    2013-06-14 10:35:14 [iNFO] [sTDERR] cpw.mods.fml.common.LoaderException: java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:142)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:513)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:410)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:732)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at java.lang.Thread.run(Thread.java:722)

    2013-06-14 10:35:14 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:423)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:356)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at java.lang.Class.forName0(Native Method)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at java.lang.Class.forName(Class.java:266)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:425)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98)

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:503)

    2013-06-14 10:35:14 [iNFO] [sTDERR] ... 5 more

    2013-06-14 10:35:14 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException

    2013-06-14 10:35:14 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227)

    2013-06-14 10:35:14 [iNFO] [sTDERR] ... 32 more

     

     

  6. Alright, here is the main file (Everything_And_More_Mod)... gotta say it is a little messy, so I do apologise :P

     

    package mods.EverythingAndMore; //Package directory

     

    /*

    * Basic importing

    */

     

     

    import scala.collection.mutable.Map;

    import net.minecraft.block.Block;

    import net.minecraft.client.renderer.entity.RenderCreeper;

    import net.minecraft.client.renderer.entity.RenderManager;

    import net.minecraft.creativetab.CreativeTabs;

    import net.minecraft.entity.Entity;

    import net.minecraft.entity.EntityEggInfo;

    import net.minecraft.entity.EntityList;

    import net.minecraft.entity.EnumCreatureType;

    import net.minecraft.item.EnumArmorMaterial;

    import net.minecraft.item.EnumToolMaterial;

    import net.minecraft.item.Item;

    import net.minecraft.item.ItemFood;

    import net.minecraft.item.ItemStack;

    import net.minecraft.src.ModLoader;

    import net.minecraft.world.biome.BiomeGenBase;

    import net.minecraftforge.common.EnumHelper;

    import net.minecraftforge.common.MinecraftForge;

    import cpw.mods.fml.client.registry.RenderingRegistry;

    import cpw.mods.fml.common.Mod;

    import cpw.mods.fml.common.Mod.Init;

    import cpw.mods.fml.common.Mod.PostInit;

    import cpw.mods.fml.common.SidedProxy;

    import cpw.mods.fml.common.event.FMLInitializationEvent;

    import cpw.mods.fml.common.network.NetworkMod;

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

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

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

     

     

    /*

    * Basic needed forge stuff

    */

    @Mod(modid="EverythingAndMoreMod",name="Everything And More",version="v0.1")

    @NetworkMod(clientSideRequired=true,serverSideRequired=false)

     

     

    public class Everything_and_More_Mod {

     

     

    public static CreativeTabs EEMTab = new EEMTab("Everything And More");

    /*

    * ToolMaterial

    */

     

    //Telling forge that we are creating these

     

    //items

    public static Item Lovite;

    public static Item Cyanitide;

    public static Item RefinedHeart;

    public static Item HeartWheat;

    public static Item BakedWithLove;

    public static Item GoldStick;

    public static Item TaurinPick;

    public static Item Vertide;

    public static Item TaurinAxe;

    public static Item TaurinShovel;

    public static Item TaurinSword;

    public static Item DragonScale;

    public static Item DSHelmet;

    public static Item DSBoots;

    public static Item DSLegs;

    public static Item DSBody;

    public static Item Cape;

     

    //blocks

    public static Block HeartStone;

    public static Block CyOre;

    public static Block LoveOre;

    public static Block VertOre;

    public static Block LoveLight;

    public static Block Light;

     

    static int startEntityID = 300;

     

    EnumArmorMaterial DRAGONSCALE;

    EnumToolMaterial TAURIN;

     

    @SidedProxy(clientSide = "mods.EverythingAndMore.ClientProxy", serverSide = "mods.EverythingAndMore.CommonProxy")

    public static mods.EverythingAndMore.CommonProxy CommonProxy;

     

     

    //Declaring Init

    @Init

    public void load(FMLInitializationEvent event)

    {

    //Define material enums

    DefineMaterials();

     

    //Define items/blocks

    DefineBlocksAndItems();

     

    //Register the mod's world gen

    GameRegistry.registerWorldGenerator(new OreGen());

     

    //Add names to the registry

    AddNames();

     

    //Add mod related entities to the registry

    AddEntities();

     

    //Do minecraft forge related tasks

    DoMinecraftForgeStuff();

     

    //Add crafting and furnace recipes

    AddCraftingRecipes();

    }

     

    //Get a unique entity ID

    public int getUniqueEntityID()

    {

    do

    {

    startEntityID++;

    }

    while(EntityList.getStringFromID(startEntityID) != null);

     

    return startEntityID;

     

    }

     

    //Register entity eggs for the mod

    public void registerEntityEgg(Class <? extends Entity> entity, int primaryColor, int secondaryColor)

    {

    int id = getUniqueEntityID();

    EntityList.IDtoClassMapping.put(id, entity);

    EntityList.entityEggs.put(id, new EntityEggInfo(id, primaryColor, secondaryColor));

    }

     

    //Add all mod related names to registry

    public void AddNames()

    {

    LanguageRegistry.addName(Lovite, "Lovite");

    LanguageRegistry.addName(Cyanitide, "Cyanitide");

    LanguageRegistry.addName(RefinedHeart, "Refined Heart");

    LanguageRegistry.addName(HeartWheat, "Grown with Love");

    LanguageRegistry.addName(BakedWithLove, "Baked with Love");

    LanguageRegistry.addName(GoldStick, "Golden Stick");

    LanguageRegistry.addName(TaurinPick, "Taurin Pickaxe");

    LanguageRegistry.addName(Vertide, "Taurin");

    LanguageRegistry.addName(TaurinAxe, "Taurin Axe");

    LanguageRegistry.addName(TaurinShovel, "Taurin Shovel");

    LanguageRegistry.addName(TaurinSword, "Taurin Sword");

    LanguageRegistry.addName(DragonScale, "Dragon Scale");

    LanguageRegistry.addName(DSHelmet, "DragonScale Helmet");

    LanguageRegistry.addName(DSBody, "DragonScale Body");

    LanguageRegistry.addName(DSLegs, "DragonScale Leggings");

    LanguageRegistry.addName(DSBoots, "DragonScale Boots");

    LanguageRegistry.addName(HeartStone, "Heart Stone");

    LanguageRegistry.addName(CyOre, "Cyanitide Ore");

    LanguageRegistry.addName(LoveOre, "Lovite Ore");

    LanguageRegistry.addName(LoveLight, "Love Light");

    LanguageRegistry.addName(VertOre, "Taurin Ore");

    LanguageRegistry.addName(Light, "Illuminator");

     

     

    LanguageRegistry.instance().addStringLocalization("itemGroup.Everything And More", "en_US", "Everything and More");

    }

     

    //Define all blocks and items in the mod, registering each

    public void DefineBlocksAndItems()

    {

    Lovite = new Lovite(4198).setUnlocalizedName("Lovite");

    Cyanitide = new Cyanitide(4197).setUnlocalizedName("Cyanitide");

    RefinedHeart = new RefinedHeart(4199).setUnlocalizedName("RefinedHeart");

    HeartWheat = new HeartWheat(4200).setUnlocalizedName("HeartWheat");

    BakedWithLove = new Bread(4201, 8, 6.5F, false).setUnlocalizedName("BakedWithLove");

    GoldStick = new GoldStick(4202).setUnlocalizedName("GoldStick");

    TaurinPick = new TaurinPick(4203, TAURIN).setUnlocalizedName("TaurinPick");

    Vertide = new Vertide(4204).setUnlocalizedName("Vertide");

    TaurinAxe = new TaurinAxe(4205, TAURIN).setUnlocalizedName("TaurinAxe");

    TaurinShovel = new TaurinShovel(4206,TAURIN).setUnlocalizedName("TaurinShovel");

    TaurinSword = new TaurinSword(4207, TAURIN).setUnlocalizedName("TaurinSword");

    DragonScale = new DragonScale(4208).setUnlocalizedName("DragonScale");

    DSHelmet = new DSArmour(4209, DRAGONSCALE , ModLoader.addArmor("DragonScale"), 0).setUnlocalizedName("DSHelmet").setCreativeTab(CreativeTabs.tabCombat);

    DSBody = new DSArmour(4210, DRAGONSCALE , ModLoader.addArmor("DragonScale"), 1).setUnlocalizedName("DSBody").setCreativeTab(CreativeTabs.tabCombat);

    DSLegs = new DSArmour(4211, DRAGONSCALE , ModLoader.addArmor("DragonScale"), 2).setUnlocalizedName("DSLegs").setCreativeTab(CreativeTabs.tabCombat);

    DSBoots = new DSArmour(4212, DRAGONSCALE , ModLoader.addArmor("DragonScale"), 3).setUnlocalizedName("DSBoots").setCreativeTab(CreativeTabs.tabCombat);

     

    HeartStone= new HeartStone(2189, "HeartStone").setUnlocalizedName("HeartStone").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

    GameRegistry.registerBlock(HeartStone, "HeartStone");

     

    CyOre= new CyanOre(2188, "CyanOre").setUnlocalizedName("CyanOre").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

    GameRegistry.registerBlock(CyOre, "CyanOre");

     

    LoveOre= new LoviteOre(2187, "LoviteOre").setUnlocalizedName("LoviteOre").setHardness(3.5F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

    GameRegistry.registerBlock(LoveOre, "LoveOre");

     

    LoveLight= new LoveLight(2190, "LoveLight").setUnlocalizedName("LoveLight").setHardness(1.0F).setStepSound(Block.soundGlassFootstep).setResistance(3.0F).setLightValue(0.9F);

    GameRegistry.registerBlock(LoveLight, "LoveLight");

     

    VertOre= new VertOre(2191, "VertOre").setUnlocalizedName("VertOre").setHardness(4.0F).setStepSound(Block.soundStoneFootstep).setResistance(10.0F);

    GameRegistry.registerBlock(VertOre, "VertOre");

     

    Light= new Light(2192, "Light").setUnlocalizedName("Light").setHardness(1.0F).setStepSound(Block.soundGlassFootstep).setResistance(3.0F).setLightValue(1.0F);

    GameRegistry.registerBlock(Light, "Light");

     

    GameRegistry.registerItem(TaurinPick, "Taurin Pickaxe");

    GameRegistry.registerItem(TaurinAxe, "Taurin Axe");

    GameRegistry.registerItem(TaurinShovel, "Taurin Shovel");

    }

     

    //Define material enums

    public void DefineMaterials()

    {

    DRAGONSCALE = EnumHelper.addArmorMaterial("DRAGONSCALE", 50, new int[]{4, 8, 6, 2}, 30);

    TAURIN = EnumHelper.addToolMaterial("TAURIN", 3, 3210, 14.0F, 7, 20);

    }

     

    //Add all crafting and furnace recipes to the registry

    public void AddCraftingRecipes()

    {

    GameRegistry.addRecipe(new ItemStack(HeartStone,1), new Object[]{"LSL","SLS","LSL",'L',Lovite,'S',Block.stone});

    GameRegistry.addRecipe(new ItemStack(LoveLight,1), new Object[]{"LGL","LGL","LLL",'L',Lovite,'G',Item.lightStoneDust});

    GameRegistry.addShapelessRecipe(new ItemStack(HeartWheat,1), new Object[]{RefinedHeart, Item.wheat});

    GameRegistry.addRecipe(new ItemStack(GoldStick,1), new Object[]{"I","S","N",'I',Item.ingotGold,'S',Item.stick,'N',Item.goldNugget});

    GameRegistry.addRecipe(new ItemStack(TaurinPick,1), new Object[]{"TTT"," S "," S ",'T',Vertide,'S',GoldStick});

    GameRegistry.addRecipe(new ItemStack(TaurinAxe,1), new Object[]{"TT ","TS "," S ",'T',Vertide,'S',GoldStick});

    GameRegistry.addRecipe(new ItemStack(TaurinAxe,1), new Object[]{" TT"," ST"," S ",'T',Vertide,'S',GoldStick});

    GameRegistry.addRecipe(new ItemStack(TaurinShovel,1), new Object[]{" T "," S "," S ",'T',Vertide,'S',GoldStick});

    GameRegistry.addRecipe(new ItemStack(TaurinShovel,1), new Object[]{" T "," T "," S ",'T',Vertide,'S',GoldStick});

     

    GameRegistry.addSmelting(Lovite.itemID, new ItemStack(RefinedHeart, 1), 1F);

    GameRegistry.addSmelting(HeartWheat.itemID, new ItemStack(BakedWithLove, 1), 1F);

    }

     

    //Add all entities, rendering included

    public void AddEntities()

    {

    //dragoone

    EntityRegistry.registerModEntity(EntityDragoone.class, "Dragoone", 1, this, 80, 3, true);

    EntityRegistry.addSpawn(EntityDragoone.class, 1, 1, 1, EnumCreatureType.monster, BiomeGenBase.desertHills, BiomeGenBase.extremeHills, BiomeGenBase.forestHills, BiomeGenBase.iceMountains, BiomeGenBase.jungleHills, BiomeGenBase.taigaHills);

    LanguageRegistry.instance().addStringLocalization("entity.EverythingAndMoreMod.Dragoone.name", "Dragoone");

    registerEntityEgg(EntityDragoone.class, 0x070708, 0x5E10C4);

    RenderingRegistry.registerEntityRenderingHandler(EntityDragoone.class, new RenderDragoone(new ModelDragoone(), 1.0f));

     

    }

     

    //Does minecraft forge related tasks such as setting tool classes, etc.

    public void DoMinecraftForgeStuff()

    {

    MinecraftForge.setToolClass(TaurinPick, "pickaxe", 3);

    MinecraftForge.setToolClass(TaurinAxe, "axe", 3);

    MinecraftForge.setToolClass(TaurinShovel, "shovel", 3);

    MinecraftForge.setBlockHarvestLevel(VertOre, "pickaxe", 3);

    }

    }

     

  7. Hey there, I am having a REALLY annoying issue when trying to load my mod in minecraft (not eclipse) it gives an error, saying something about my main .class file missing... however the class file is there, and does work, because there are no crashes in eclipse when I run it there.

    Here is the crashlog

     

     

    2013-06-12 19:42:05 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.21.727 for Minecraft 1.5.2 loading

    2013-06-12 19:42:05 [iNFO] [ForgeModLoader] Java is Java HotSpot Client VM, version 1.7.0_21, running on Windows 7:x86:6.1, installed at C:\Program Files (x86)\Java\jdk1.7.0_21\jre

    2013-06-12 19:42:05 [FINE] [ForgeModLoader] Java classpath at launch is C:\Users\UKGC\Desktop\Minecraft.exe

    2013-06-12 19:42:05 [FINE] [ForgeModLoader] Java library path at launch is C:\Program Files (x86)\Java\jdk1.7.0_21\jre\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:\Program Files (x86)\AMD APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Windows Live\Shared;C:\Users\UKGC\AppData\Local\Smartbar\Application\;C:\Users\UKGC\AppData\Local\Smartbar\Application\;C:\Program Files (x86)\Java\jdk1.7.0_21\bin;C:\Program Files (x86)\Java\jdk1.7.0_21\jre\bin;.

    2013-06-12 19:42:05 [FINE] [ForgeModLoader] Enabling runtime deobfuscation

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] All core mods are successfully located

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Discovering coremods

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Found library file argo-small-3.2.jar present and correct in lib dir

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Found library file guava-14.0-rc3.jar present and correct in lib dir

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Found library file asm-all-4.1.jar present and correct in lib dir

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-148.jar present and correct in lib dir

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Found library file deobfuscation_data_1.5.2.zip present and correct in lib dir

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Found library file scala-library.jar present and correct in lib dir

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Running coremod plugins

    2013-06-12 19:42:05 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

    2013-06-12 19:42:06 [iNFO] [ForgeModLoader] Found valid fingerprint for Minecraft Forge. Certificate fingerprint de4cf8a3f3bc15635810044c39240bf96804ea7d

    2013-06-12 19:42:06 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

    2013-06-12 19:42:06 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

    2013-06-12 19:42:06 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

    2013-06-12 19:42:06 [FINEST] [ForgeModLoader] Validating minecraft

    2013-06-12 19:42:06 [FINEST] [ForgeModLoader] Minecraft validated, launching...

    2013-06-12 19:42:07 [iNFO] [sTDOUT] 229 recipes

    2013-06-12 19:42:07 [iNFO] [sTDOUT] 27 achievements

    2013-06-12 19:42:07 [iNFO] [Minecraft-Client] Setting user: jordsta95

    2013-06-12 19:42:07 [iNFO] [sTDOUT] (Session ID is 1)

    2013-06-12 19:42:07 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2

    2013-06-12 19:42:08 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization

    2013-06-12 19:42:08 [iNFO] [sTDOUT] MinecraftForge v7.8.0.727 Initialized

    2013-06-12 19:42:08 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.727 Initialized

    2013-06-12 19:42:08 [iNFO] [sTDOUT] Replaced 85 ore recipies

    2013-06-12 19:42:08 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization

    2013-06-12 19:42:08 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\UKGC\AppData\Roaming\.minecraft\config\logging.properties

    2013-06-12 19:42:08 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\lwjgl.jar

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\jinput.jar

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\bin\lwjgl_util.jar

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\UKGC\AppData\Roaming\.minecraft\bin\minecraft.jar, examining for mod candidates

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\argo-small-3.2.jar

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\guava-14.0-rc3.jar

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\asm-all-4.1.jar

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\bcprov-jdk15on-148.jar

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\deobfuscation_data_1.5.2.zip

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Skipping known library file C:\Users\UKGC\AppData\Roaming\.minecraft\lib\scala-library.jar

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

    2013-06-12 19:42:08 [iNFO] [ForgeModLoader] Searching C:\Users\UKGC\AppData\Roaming\.minecraft\mods for mods

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Found a candidate mod directory EverythingAndMore

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Examining directory EverythingAndMore for potential mods

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] No mcmod.info file found in directory EverythingAndMore

    2013-06-12 19:42:08 [FINEST] [ForgeModLoader] Recursing into package client

    2013-06-12 19:42:08 [FINEST] [ForgeModLoader] Recursing into package common

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Identified an FMLMod type mod mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-12 19:42:08 [FINEST] [EverythingAndMoreMod] Parsed dependency info : [] [] []

    2013-06-12 19:42:08 [FINEST] [ForgeModLoader] Recursing into package textures

    2013-06-12 19:42:08 [FINEST] [ForgeModLoader] Recursing into package textures.armor

    2013-06-12 19:42:08 [FINEST] [ForgeModLoader] Recursing into package textures.blocks

    2013-06-12 19:42:08 [FINEST] [ForgeModLoader] Recursing into package textures.items

    2013-06-12 19:42:08 [FINEST] [ForgeModLoader] Recursing into package textures.mob

    2013-06-12 19:42:08 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Received a system property request ''

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] System property request managing the state of 0 mods

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\UKGC\AppData\Roaming\.minecraft\config\logging.properties

    2013-06-12 19:42:08 [FINE] [ForgeModLoader] Reloaded logging properties

    2013-06-12 19:42:08 [FINE] [mcp] Mod Logging channel mcp configured at default level.

    2013-06-12 19:42:08 [iNFO] [mcp] Activating mod mcp

    2013-06-12 19:42:08 [FINE] [FML] Mod Logging channel FML configured at default level.

    2013-06-12 19:42:08 [iNFO] [FML] Activating mod FML

    2013-06-12 19:42:08 [FINE] [Forge] Mod Logging channel Forge configured at default level.

    2013-06-12 19:42:08 [iNFO] [Forge] Activating mod Forge

    2013-06-12 19:42:08 [FINE] [EverythingAndMoreMod] Enabling mod EverythingAndMoreMod

    2013-06-12 19:42:08 [FINE] [EverythingAndMoreMod] Mod Logging channel EverythingAndMoreMod configured at default level.

    2013-06-12 19:42:08 [iNFO] [EverythingAndMoreMod] Activating mod EverythingAndMoreMod

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied

    2013-06-12 19:42:08 [FINER] [ForgeModLoader] All mod requirements are satisfied

    2013-06-12 19:42:09 [FINER] [ForgeModLoader] Sorting mods into an ordered list

    2013-06-12 19:42:09 [FINER] [ForgeModLoader] Mod sorting completed successfully

    2013-06-12 19:42:09 [FINE] [ForgeModLoader] Mod sorting data

    2013-06-12 19:42:09 [FINE] [ForgeModLoader] EverythingAndMoreMod(Everything And More:v0.1): EverythingAndMore ()

    2013-06-12 19:42:09 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp

    2013-06-12 19:42:09 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp

    2013-06-12 19:42:09 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML

    2013-06-12 19:42:09 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML

    2013-06-12 19:42:09 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge

    2013-06-12 19:42:09 [iNFO] [ForgeModLoader] Registering Forge Packet Handler

    2013-06-12 19:42:09 [FINEST] [ForgeModLoader] Testing mod Forge to verify it accepts its own version in a remote connection

    2013-06-12 19:42:09 [FINEST] [ForgeModLoader] The mod Forge accepts its own version (7.8.0.727)

    2013-06-12 19:42:09 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler

    2013-06-12 19:42:09 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge

    2013-06-12 19:42:09 [FINEST] [EverythingAndMoreMod] Sending event FMLConstructionEvent to mod EverythingAndMoreMod

    2013-06-12 19:42:09 [FINEST] [EverythingAndMoreMod] Sent event FMLConstructionEvent to mod EverythingAndMoreMod

    2013-06-12 19:42:09 [FINE] [ForgeModLoader] Mod signature data

    2013-06-12 19:42:09 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:7.44): minecraft.jar (NO VALID CERTIFICATE FOUND)

    2013-06-12 19:42:09 [FINE] [ForgeModLoader] FML(Forge Mod Loader:5.2.21.727): coremods (de4cf8a3f3bc15635810044c39240bf96804ea7d)

    2013-06-12 19:42:09 [FINE] [ForgeModLoader] Forge(Minecraft Forge:7.8.0.727): coremods (NO VALID CERTIFICATE FOUND)

    2013-06-12 19:42:09 [FINE] [ForgeModLoader] EverythingAndMoreMod(Everything And More:v0.1): EverythingAndMore (NO VALID CERTIFICATE FOUND)

    2013-06-12 19:42:09 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue

    2013-06-12 19:42:09 [sEVERE] [ForgeModLoader]

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

    FML{5.2.21.727} [Forge Mod Loader] (coremods) Unloaded->Constructed

    Forge{7.8.0.727} [Minecraft Forge] (coremods) Unloaded->Constructed

    EverythingAndMoreMod{v0.1} [Everything And More] (EverythingAndMore) Unloaded->Errored

    2013-06-12 19:42:09 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

    2013-06-12 19:42:09 [sEVERE] [ForgeModLoader] Caught exception from EverythingAndMoreMod

    java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:423)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:356)

    at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56)

    at java.lang.Class.forName0(Native Method)

    at java.lang.Class.forName(Class.java:266)

    at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:425)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:186)

    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:166)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:601)

    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)

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

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

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

    at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

    at net.minecraft.client.Minecraft.run(Minecraft.java:733)

    at java.lang.Thread.run(Thread.java:722)

    Caused by: java.lang.NullPointerException

    at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227)

    ... 33 more

    2013-06-12 19:42:19 [iNFO] [sTDERR] cpw.mods.fml.common.LoaderException: java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:147)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:514)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:163)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:411)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:733)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at java.lang.Thread.run(Thread.java:722)

    2013-06-12 19:42:19 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: mods.EverythingAndMore.Everything_and_More_Mod

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:423)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:356)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at java.lang.Class.forName0(Native Method)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at java.lang.Class.forName(Class.java:266)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:425)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:186)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:166)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.loadMods(Loader.java:504)

    2013-06-12 19:42:19 [iNFO] [sTDERR] ... 5 more

    2013-06-12 19:42:19 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException

    2013-06-12 19:42:19 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227)

    2013-06-12 19:42:19 [iNFO] [sTDERR] ... 33 more

     

     

     

    ...well I think it is my main class file anyway. Looking at that confuses me more than helps me.

    But I do know that ever file that is needed is in the mod folder (EverythingAndMore)

     

    Any help on how to stop minecraft crashing with this error?

     

    Thanks

    -Jordan

  8. Hey there.. I am having issues getting the textures to work for amour and my mob.

     

    Let's start with the mob:

    The code I have:

    this.texture = "/EverythingAndMore/textures/mob/Dragoone.png";

    with the file location being exactly that, with the file exactly as I have spelled it above.

     

    And now for the armour:

    public String getArmorTextureFile(ItemStack itemstack) {

    if(itemstack.itemID == Everything_and_More_Mod.DSHelmet.itemID || itemstack.itemID == Everything_and_More_Mod.DSBody.itemID || itemstack.itemID == Everything_and_More_Mod.DSBoots.itemID){

    return "EverythingAndMore/textures/armor/DSArmour1.png";

    }

     

    if(itemstack.itemID == Everything_and_More_Mod.DSLegs.itemID){

    return "/mods/EverythingAndMore/textures/armor/DSArmour2.png";

    }

     

    else return null;

    }

     

    With the body/boots and helmet being DSArmour1... and legs being DSArmour2... any other info you need just ask.

    But both mob and armour render with the white missing texture file.

     

    Thanks

    -Jordan

     

  9. You put the textures into the file once it's re-obfuscated..... the obfuscation will only move the code, it doesn't know what to do with textures, so it pretends they don't exist.

     

    :o So it;s like me and some code... I don't understand it so I pretend it doesn't exist :P

     

    That may be why the textures still aren't showing... I seriously have no idea what I need to add for it to work. I will look at it again tomorrow. Probably see the obvious mistake when I am more awake :P

×
×
  • Create New...

Important Information

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