Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

kmccmk9

Members
  • Joined

  • Last visited

Everything posted by kmccmk9

  1. Okay I can confirm that this mod is the one that is crashing the game. However, I can't figure out why. Everything is set up exactly like my other mods. Below are all my classes. If anyone can figure anything out, please let me know. kmccmk9.witchCraft.CommonProxy package kmccmk9.witchCraft; public class CommonProxy { // Client stuff public void registerRenderers() { // Nothing here as the server doesn't render graphics or entities! } } kmccmk9.witchCraft.EntityBee package kmccmk9.witchCraft; import net.minecraft.client.renderer.EntityRenderer; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.ai.EntityAIWander; import net.minecraft.item.Item; import net.minecraft.world.World; import net.minecraft.src.*; public class EntityBee extends EntityLiving { public EntityBee(World par1World) { super(par1World); this.getNavigator().setAvoidsWater(true); this.setSize(0.5F, 0.5F); this.setEntityHealth(15F); this.setAIMoveSpeed(3F); } protected int getDropItemId() { return Item.porkRaw.itemID; } public String getTexture() { return "textures/body.png"; } } kmccmk9.witchCraft.RenderBee package kmccmk9.witchCraft; import kmccmk9.witchCraft.client.ModelBee; import net.minecraft.client.Minecraft; import net.minecraft.client.model.ModelBase; import net.minecraft.client.renderer.EntityRenderer; import net.minecraft.client.renderer.entity.RenderLiving; import net.minecraft.entity.Entity; import net.minecraft.util.ResourceLocation; public class RendererBee extends RenderLiving { protected ModelBee model; private static final ResourceLocation field_110775_a = new ResourceLocation("textures/bee.png"); public RendererBee(ModelBee par1ModelBase, float par2) { super(par1ModelBase, par2); model = (ModelBee)par1ModelBase; } @Override protected ResourceLocation func_110775_a(Entity entity) { // TODO Auto-generated method stub return null; } } kmccmk9.witchCraft.WitchCraft package kmccmk9.witchCraft; import java.awt.Color; import net.minecraft.entity.EnumCreatureType; import net.minecraft.world.biome.BiomeGenBase; import kmccmk9.commandBlockRecipe.CommonProxy; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.EntityRegistry; import cpw.mods.fml.common.registry.LanguageRegistry; @Mod(modid="WitchCraft", name="WitchCraft", version="0.0.1") @NetworkMod(clientSideRequired=true, serverSideRequired=false) public class WitchCraft { // The instance of your mod that Forge uses. @Instance("WitchCraft") public static WitchCraft instance; // Says where the client and server 'proxy' code is loaded. @SidedProxy(clientSide="kmccmk9.witchCraft.client.ClientProxy", serverSide="kmccmk9.witchCraft.CommonProxy") public static CommonProxy proxy; @EventHandler public void preInit(FMLPreInitializationEvent event) { // Stub Method } @EventHandler public void load(FMLInitializationEvent event) { EntityRegistry.registerModEntity(EntityBee.class, "Bee", 1, this, 80, 5, true); EntityRegistry.addSpawn(EntityBee.class, 7, 1, 4, EnumCreatureType.monster, BiomeGenBase.beach, BiomeGenBase.forest, BiomeGenBase.jungle, BiomeGenBase.plains); LanguageRegistry.instance().addStringLocalization("entity.WitchCraft.Bee.name", "Bee"); } @EventHandler public void postInit(FMLPostInitializationEvent event) { // Stub Method } } kmccmk9.witchCraft.client.ClientProxy package kmccmk9.witchCraft.client; import kmccmk9.witchCraft.CommonProxy; public class ClientProxy extends CommonProxy { @Override public void registerRenderers() { // This is for rendering entities and so forth later on } } kmccmk9.witchCraft.client.ModelBee package kmccmk9.witchCraft.client; import net.minecraft.client.model.ModelBase; import net.minecraft.client.model.ModelRenderer; import net.minecraft.entity.Entity; public class ModelBee extends ModelBase { //fields ModelRenderer BeeBody; ModelRenderer BeeHead; ModelRenderer ant1; ModelRenderer ant2; ModelRenderer wing2; ModelRenderer wing1; public ModelBee() { textureWidth = 64; textureHeight = 32; BeeBody = new ModelRenderer(this, 0, 0); BeeBody.addBox(0F, 0F, 0F, 5, 4, ; BeeBody.setRotationPoint(-3F, -3F, -4F); BeeBody.setTextureSize(64, 32); BeeBody.mirror = true; setRotation(BeeBody, 0F, 0F, 0F); BeeHead = new ModelRenderer(this, 19, 2); BeeHead.addBox(0F, 0F, 0F, 3, 3, 2); BeeHead.setRotationPoint(-2F, -4F, -6F); BeeHead.setTextureSize(64, 32); BeeHead.mirror = true; setRotation(BeeHead, 0F, 0F, 0F); ant1 = new ModelRenderer(this, 0, 0); ant1.addBox(0F, 0F, 0F, 1, 4, 1); ant1.setRotationPoint(1F, -7F, -5F); ant1.setTextureSize(64, 32); ant1.mirror = true; setRotation(ant1, 0F, 0F, 0.2722714F); ant2 = new ModelRenderer(this, 0, 0); ant2.addBox(0F, 0F, 0F, 1, 4, 1); ant2.setRotationPoint(-3F, -7F, -5F); ant2.setTextureSize(64, 32); ant2.mirror = true; setRotation(ant2, 0F, 0F, -0.2617994F); wing2 = new ModelRenderer(this, 29, 0); wing2.addBox(0F, 0F, 0F, 4, 1, 3); wing2.setRotationPoint(-7F, -3F, -1F); wing2.setTextureSize(64, 32); wing2.mirror = true; setRotation(wing2, 0F, 0F, 0.1745329F); wing1 = new ModelRenderer(this, 29, 0); wing1.addBox(0F, 0F, 0F, 4, 1, 3); wing1.setRotationPoint(2F, -2F, -1F); wing1.setTextureSize(64, 32); wing1.mirror = true; setRotation(wing1, 0F, 0F, -0.1745329F); } public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5) { super.render(entity, f, f1, f2, f3, f4, f5); setRotationAngles(f, f1, f2, f3, f4, f5, entity); BeeBody.render(f5); BeeHead.render(f5); ant1.render(f5); ant2.render(f5); wing2.render(f5); wing1.render(f5); } private void setRotation(ModelRenderer model, float x, float y, float z) { model.rotateAngleX = x; model.rotateAngleY = y; model.rotateAngleZ = z; } public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5, Entity entity) { super.setRotationAngles(f, f1, f2, f3, f4, f5, entity); } }
  2. Yup, here is the code just to be sure. What's weird is my mod that I have successfully released with no problems is also now causing the same error and I haven't touched that code. Maybe I should try running the clean.bat. package kmccmk9.witchCraft.client; import kmccmk9.witchCraft.CommonProxy; public class ClientProxy extends CommonProxy { @Override public void registerRenderers() { // This is for rendering entities and so forth later on } }
  3. Hello, when I try to start the wrapped minecraft, it crashes the game. The log is below, and it appears as though it is a proxy injector problem. But how do I even fix that? 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file asm-debug-all-4.1.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container asm-debug-all-4.1.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file launchwrapper-1.3.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container launchwrapper-1.3.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file 1.6.2.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container 1.6.2.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file lzma-0.0.1.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file jopt-simple-4.5.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file codecjorbis-20101023.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file codecwav-20101023.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container codecwav-20101023.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file libraryjavasound-20101123.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file librarylwjglopenal-20100824.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file soundsystem-20120107.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file argo-2.25_fixed.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container argo-2.25_fixed.jar appears to be missing an mcmod.info file 2013-08-20 14:31:12 [FINE] [ForgeModLoader] Examining file bcprov-jdk15on-1.47.jar for potential mods 2013-08-20 14:31:12 [FINE] [ForgeModLoader] The mod container bcprov-jdk15on-1.47.jar appears to be missing an mcmod.info file 2013-08-20 14:31:14 [FINE] [ForgeModLoader] Examining file guava-14.0.jar for potential mods 2013-08-20 14:31:14 [FINE] [ForgeModLoader] The mod container guava-14.0.jar appears to be missing an mcmod.info file 2013-08-20 14:31:14 [FINE] [ForgeModLoader] Examining file commons-lang3-3.1.jar for potential mods 2013-08-20 14:31:14 [FINE] [ForgeModLoader] The mod container commons-lang3-3.1.jar appears to be missing an mcmod.info file 2013-08-20 14:31:14 [FINE] [ForgeModLoader] Examining file commons-io-2.4.jar for potential mods 2013-08-20 14:31:14 [FINE] [ForgeModLoader] The mod container commons-io-2.4.jar appears to be missing an mcmod.info file 2013-08-20 14:31:14 [FINE] [ForgeModLoader] Examining file jutils-1.0.0.jar for potential mods 2013-08-20 14:31:14 [FINE] [ForgeModLoader] The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file 2013-08-20 14:31:14 [FINE] [ForgeModLoader] Examining file gson-2.2.2.jar for potential mods 2013-08-20 14:31:14 [FINE] [ForgeModLoader] The mod container gson-2.2.2.jar appears to be missing an mcmod.info file 2013-08-20 14:31:14 [FINE] [ForgeModLoader] Examining file jinput-2.0.5.jar for potential mods 2013-08-20 14:31:14 [FINE] [ForgeModLoader] The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file 2013-08-20 14:31:14 [FINE] [ForgeModLoader] Examining file lwjgl-2.9.0.jar for potential mods 2013-08-20 14:31:14 [FINE] [ForgeModLoader] The mod container lwjgl-2.9.0.jar appears to be missing an mcmod.info file 2013-08-20 14:31:15 [FINE] [ForgeModLoader] Examining file lwjgl_util-2.9.0.jar for potential mods 2013-08-20 14:31:15 [FINE] [ForgeModLoader] The mod container lwjgl_util-2.9.0.jar appears to be missing an mcmod.info file 2013-08-20 14:31:15 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 5 mods to load 2013-08-20 14:31:15 [FINER] [ForgeModLoader] Received a system property request '' 2013-08-20 14:31:15 [FINER] [ForgeModLoader] System property request managing the state of 0 mods 2013-08-20 14:31:15 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2013-08-20 14:31:15 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\Kyle\Downloads\minecraftforge-src-1.6.2-9.10.0.804\forge\mcp\jars\config\logging.properties 2013-08-20 14:31:15 [FINE] [ForgeModLoader] Reloaded logging properties 2013-08-20 14:31:15 [FINE] [mcp] Mod Logging channel mcp configured at default level. 2013-08-20 14:31:15 [iNFO] [mcp] Activating mod mcp 2013-08-20 14:31:15 [FINE] [FML] Mod Logging channel FML configured at default level. 2013-08-20 14:31:15 [iNFO] [FML] Activating mod FML 2013-08-20 14:31:15 [FINE] [Forge] Mod Logging channel Forge configured at default level. 2013-08-20 14:31:15 [iNFO] [Forge] Activating mod Forge 2013-08-20 14:31:15 [FINE] [CommandBlockRecipe] Enabling mod CommandBlockRecipe 2013-08-20 14:31:15 [FINE] [CommandBlockRecipe] Mod Logging channel CommandBlockRecipe configured at default level. 2013-08-20 14:31:15 [iNFO] [CommandBlockRecipe] Activating mod CommandBlockRecipe 2013-08-20 14:31:15 [FINE] [WitchCraft] Enabling mod WitchCraft 2013-08-20 14:31:15 [FINE] [WitchCraft] Mod Logging channel WitchCraft configured at default level. 2013-08-20 14:31:15 [iNFO] [WitchCraft] Activating mod WitchCraft 2013-08-20 14:31:15 [WARNING] [CommandBlockRecipe] Mod CommandBlockRecipe is missing a pack.mcmeta file, things may not work well 2013-08-20 14:31:15 [WARNING] [WitchCraft] Mod WitchCraft is missing a pack.mcmeta file, things may not work well 2013-08-20 14:31:15 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:CommandBlockRecipe, FMLFileResourcePack:WitchCraft 2013-08-20 14:31:15 [iNFO] [sTDOUT] 2013-08-20 14:31:15 [iNFO] [sTDOUT] SoundSystem shutting down... 2013-08-20 14:31:15 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2013-08-20 14:31:15 [iNFO] [sTDOUT] 2013-08-20 14:31:15 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied 2013-08-20 14:31:15 [iNFO] [sTDOUT] 2013-08-20 14:31:15 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-08-20 14:31:15 [FINER] [ForgeModLoader] All mod requirements are satisfied 2013-08-20 14:31:15 [FINER] [ForgeModLoader] Sorting mods into an ordered list 2013-08-20 14:31:15 [FINER] [ForgeModLoader] Mod sorting completed successfully 2013-08-20 14:31:15 [FINE] [ForgeModLoader] Mod sorting data 2013-08-20 14:31:15 [FINE] [ForgeModLoader] CommandBlockRecipe(CommandBlockRecipe:0.0.1): bin () 2013-08-20 14:31:15 [FINE] [ForgeModLoader] WitchCraft(WitchCraft:0.0.1): bin () 2013-08-20 14:31:15 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp 2013-08-20 14:31:15 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp 2013-08-20 14:31:15 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML 2013-08-20 14:31:15 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML 2013-08-20 14:31:15 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge 2013-08-20 14:31:15 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-08-20 14:31:15 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-08-20 14:31:15 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-08-20 14:31:15 [FINEST] [ForgeModLoader] Testing mod Forge to verify it accepts its own version in a remote connection 2013-08-20 14:31:15 [FINEST] [ForgeModLoader] The mod Forge accepts its own version (9.10.0.804) 2013-08-20 14:31:16 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-08-20 14:31:16 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge 2013-08-20 14:31:16 [FINEST] [CommandBlockRecipe] Sending event FMLConstructionEvent to mod CommandBlockRecipe 2013-08-20 14:31:16 [iNFO] [sTDOUT] OpenAL initialized. 2013-08-20 14:31:16 [iNFO] [sTDOUT] 2013-08-20 14:31:16 [FINEST] [ForgeModLoader] Testing mod CommandBlockRecipe to verify it accepts its own version in a remote connection 2013-08-20 14:31:16 [FINEST] [ForgeModLoader] The mod CommandBlockRecipe accepts its own version (0.0.1) 2013-08-20 14:31:16 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CommandBlockRecipe 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] Attempted to load a proxy type kmccmk9.witchCraft.client.ClientProxy into kmccmk9.witchCraft.WitchCraft.proxy, but the types don't match 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] An error occured trying to load a proxy into {clientSide=kmccmk9.witchCraft.client.ClientProxy, serverSide=kmccmk9.witchCraft.CommonProxy}.kmccmk9.witchCraft.WitchCraft cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:519) 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:313) 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:194) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 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:313) 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:105) at cpw.mods.fml.common.Loader.loadMods(Loader.java:510) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:182) at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) at net.minecraft.client.main.Main.main(Main.java:93) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:57) at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2013-08-20 14:31:16 [FINEST] [CommandBlockRecipe] Sent event FMLConstructionEvent to mod CommandBlockRecipe 2013-08-20 14:31:16 [FINEST] [WitchCraft] Sending event FMLConstructionEvent to mod WitchCraft 2013-08-20 14:31:16 [FINEST] [ForgeModLoader] Testing mod WitchCraft to verify it accepts its own version in a remote connection 2013-08-20 14:31:16 [FINEST] [ForgeModLoader] The mod WitchCraft accepts its own version (0.0.1) 2013-08-20 14:31:16 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into WitchCraft 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] Attempted to load a proxy type kmccmk9.witchCraft.client.ClientProxy into kmccmk9.witchCraft.WitchCraft.proxy, but the types don't match 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] An error occured trying to load a proxy into {clientSide=kmccmk9.witchCraft.client.ClientProxy, serverSide=kmccmk9.witchCraft.CommonProxy}.kmccmk9.witchCraft.WitchCraft cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:519) 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:313) 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:194) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 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:313) 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:105) at cpw.mods.fml.common.Loader.loadMods(Loader.java:510) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:182) at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) at net.minecraft.client.main.Main.main(Main.java:93) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:57) at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2013-08-20 14:31:16 [FINEST] [WitchCraft] Sent event FMLConstructionEvent to mod WitchCraft 2013-08-20 14:31:16 [FINE] [ForgeModLoader] Mod signature data 2013-08-20 14:31:16 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:8.04): minecraft.jar (NO VALID CERTIFICATE FOUND) 2013-08-20 14:31:16 [FINE] [ForgeModLoader] FML(Forge Mod Loader:6.2.35.804): coremods (NO VALID CERTIFICATE FOUND) 2013-08-20 14:31:16 [FINE] [ForgeModLoader] Forge(Minecraft Forge:9.10.0.804): coremods (NO VALID CERTIFICATE FOUND) 2013-08-20 14:31:16 [FINE] [ForgeModLoader] CommandBlockRecipe(CommandBlockRecipe:0.0.1): bin (NO VALID CERTIFICATE FOUND) 2013-08-20 14:31:16 [FINE] [ForgeModLoader] WitchCraft(WitchCraft:0.0.1): bin (NO VALID CERTIFICATE FOUND) 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed FML{6.2.35.804} [Forge Mod Loader] (coremods) Unloaded->Constructed Forge{9.10.0.804} [Minecraft Forge] (coremods) Unloaded->Constructed CommandBlockRecipe{0.0.1} [CommandBlockRecipe] (bin) Unloaded->Errored WitchCraft{0.0.1} [WitchCraft] (bin) Unloaded->Errored 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] The following problems were captured during this phase 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] Caught exception from CommandBlockRecipe cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:519) 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:313) 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:194) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 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:313) 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:105) at cpw.mods.fml.common.Loader.loadMods(Loader.java:510) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:182) at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) at net.minecraft.client.main.Main.main(Main.java:93) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:57) at net.minecraft.launchwrapper.Launch.main(Launch.java:18) Caused by: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) ... 33 more 2013-08-20 14:31:16 [sEVERE] [ForgeModLoader] Caught exception from WitchCraft cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:519) 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:313) 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:194) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 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:313) 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:105) at cpw.mods.fml.common.Loader.loadMods(Loader.java:510) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:182) at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) at net.minecraft.client.main.Main.main(Main.java:93) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:57) at net.minecraft.launchwrapper.Launch.main(Launch.java:18) Caused by: cpw.mods.fml.common.LoaderException at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) ... 33 more 2013-08-20 14:31:16 [iNFO] [sTDOUT] ---- Minecraft Crash Report ---- 2013-08-20 14:31:16 [iNFO] [sTDOUT] // Why is it breaking 2013-08-20 14:31:16 [iNFO] [sTDOUT] 2013-08-20 14:31:16 [iNFO] [sTDOUT] Time: 8/20/13 2:31 PM 2013-08-20 14:31:16 [iNFO] [sTDOUT] Description: There was a severe problem during mod loading that has caused the game to fail 2013-08-20 14:31:16 [iNFO] [sTDOUT] 2013-08-20 14:31:16 [iNFO] [sTDOUT] cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:75) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:519) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Method.java:601) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Method.java:601) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.common.Loader.loadMods(Loader.java:510) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:182) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:470) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Method.java:601) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2013-08-20 14:31:16 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2013-08-20 14:31:16 [iNFO] [sTDOUT] Caused by: cpw.mods.fml.common.LoaderException 2013-08-20 14:31:16 [iNFO] [sTDOUT] at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:68) 2013-08-20 14:31:16 [iNFO] [sTDOUT] ... 33 more 2013-08-20 14:31:16 [iNFO] [sTDOUT] 2013-08-20 14:31:16 [iNFO] [sTDOUT] 2013-08-20 14:31:16 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows: 2013-08-20 14:31:16 [iNFO] [sTDOUT] --------------------------------------------------------------------------------------- 2013-08-20 14:31:16 [iNFO] [sTDOUT] 2013-08-20 14:31:16 [iNFO] [sTDOUT] -- System Details -- 2013-08-20 14:31:16 [iNFO] [sTDOUT] Details: 2013-08-20 14:31:16 [iNFO] [sTDOUT] Minecraft Version: 1.6.2 2013-08-20 14:31:16 [iNFO] [sTDOUT] Operating System: Windows 7 (amd64) version 6.1 2013-08-20 14:31:16 [iNFO] [sTDOUT] Java Version: 1.7.0_02, Oracle Corporation 2013-08-20 14:31:16 [iNFO] [sTDOUT] Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation 2013-08-20 14:31:16 [iNFO] [sTDOUT] Memory: 775790272 bytes (739 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) 2013-08-20 14:31:16 [iNFO] [sTDOUT] JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M 2013-08-20 14:31:16 [iNFO] [sTDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used 2013-08-20 14:31:16 [iNFO] [sTDOUT] Suspicious classes: FML and Forge are installed 2013-08-20 14:31:16 [iNFO] [sTDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 2013-08-20 14:31:16 [iNFO] [sTDOUT] FML: MCP v8.04 FML v6.2.35.804 Minecraft Forge 9.10.0.804 5 mods loaded, 5 mods active 2013-08-20 14:31:16 [iNFO] [sTDOUT] mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed 2013-08-20 14:31:16 [iNFO] [sTDOUT] FML{6.2.35.804} [Forge Mod Loader] (coremods) Unloaded->Constructed 2013-08-20 14:31:16 [iNFO] [sTDOUT] Forge{9.10.0.804} [Minecraft Forge] (coremods) Unloaded->Constructed 2013-08-20 14:31:16 [iNFO] [sTDOUT] CommandBlockRecipe{0.0.1} [CommandBlockRecipe] (bin) Unloaded->Errored 2013-08-20 14:31:16 [iNFO] [sTDOUT] WitchCraft{0.0.1} [WitchCraft] (bin) Unloaded->Errored 2013-08-20 14:31:16 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Kyle\Downloads\minecraftforge-src-1.6.2-9.10.0.804\forge\mcp\jars\.\crash-reports\crash-2013-08-20_14.31.16-client.txt
  4. Which I guess I don't have then. So I need to make another class? Cause I have the model class and the entity class.
  5. Okay I dont' have that, or is the same as this? package kmccmk9.witchCraft.client; import net.minecraft.client.model.ModelBase; import net.minecraft.client.model.ModelRenderer; import net.minecraft.entity.Entity; public class ModelBee extends ModelBase { //fields ModelRenderer BeeBody; ModelRenderer BeeHead; ModelRenderer ant1; ModelRenderer ant2; ModelRenderer wing2; ModelRenderer wing1; public ModelBee() { textureWidth = 64; textureHeight = 32; BeeBody = new ModelRenderer(this, 0, 0); BeeBody.addBox(0F, 0F, 0F, 5, 4, ; BeeBody.setRotationPoint(-3F, -3F, -4F); BeeBody.setTextureSize(64, 32); BeeBody.mirror = true; setRotation(BeeBody, 0F, 0F, 0F); BeeHead = new ModelRenderer(this, 19, 2); BeeHead.addBox(0F, 0F, 0F, 3, 3, 2); BeeHead.setRotationPoint(-2F, -4F, -6F); BeeHead.setTextureSize(64, 32); BeeHead.mirror = true; setRotation(BeeHead, 0F, 0F, 0F); ant1 = new ModelRenderer(this, 0, 0); ant1.addBox(0F, 0F, 0F, 1, 4, 1); ant1.setRotationPoint(1F, -7F, -5F); ant1.setTextureSize(64, 32); ant1.mirror = true; setRotation(ant1, 0F, 0F, 0.2722714F); ant2 = new ModelRenderer(this, 0, 0); ant2.addBox(0F, 0F, 0F, 1, 4, 1); ant2.setRotationPoint(-3F, -7F, -5F); ant2.setTextureSize(64, 32); ant2.mirror = true; setRotation(ant2, 0F, 0F, -0.2617994F); wing2 = new ModelRenderer(this, 29, 0); wing2.addBox(0F, 0F, 0F, 4, 1, 3); wing2.setRotationPoint(-7F, -3F, -1F); wing2.setTextureSize(64, 32); wing2.mirror = true; setRotation(wing2, 0F, 0F, 0.1745329F); wing1 = new ModelRenderer(this, 29, 0); wing1.addBox(0F, 0F, 0F, 4, 1, 3); wing1.setRotationPoint(2F, -2F, -1F); wing1.setTextureSize(64, 32); wing1.mirror = true; setRotation(wing1, 0F, 0F, -0.1745329F); } public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5) { super.render(entity, f, f1, f2, f3, f4, f5); setRotationAngles(f, f1, f2, f3, f4, f5, entity); BeeBody.render(f5); BeeHead.render(f5); ant1.render(f5); ant2.render(f5); wing2.render(f5); wing1.render(f5); } private void setRotation(ModelRenderer model, float x, float y, float z) { model.rotateAngleX = x; model.rotateAngleY = y; model.rotateAngleZ = z; } public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5, Entity entity) { super.setRotationAngles(f, f1, f2, f3, f4, f5, entity); } }
  6. Oh okay, so the texture code would go...where? Also, I'm having a hard time debugging my code from within eclipse. All of a sudden for some strange reason, none of my mods are working. They are causing a crash relating to proxy injectors. EDIT: Sorry for the newbieness, I just started making mods. My previous mod was a crafting recipe, but for some reason now is causing the wrapped game to crash.
  7. What would be the best way to set the texture?
  8. Really? Okay cause the tutorial I was following had some other things like this.texture=""; which is no longer available. What should I be using then? EDIT: this.setEntityHealth(15F); I used this instead of the health one.
  9. Hello, so I'm trying to make a mob, but I can't find a good updated tutorial on what exactly is needed. So far I have what's below, what am I missing? package kmccmk9.witchCraft; import net.minecraft.entity.EntityLiving; import net.minecraft.item.Item; import net.minecraft.world.World; import net.minecraft.src.*; public class EntityBee extends EntityLiving { public EntityBee(World par1World) { super(par1World); this.getNavigator().setAvoidsWater(true); this.setSize(0.5F, 0.5F); } protected int getDropItemId() { return this.isBurning() ? Item.porkCooked.itemID : Item.porkRaw.itemID; } public int getMaxHealth() { return 15; } public String getTexture() { return "textures/bee.png"; } }
  10. Update: It appears that when I recompile there are 100 errors in doing so. Mostly dealing with icons.
  11. Okay I did everything you suggested. Recompiled and reobed. But I am still getting this error when using the files exported to the reobf folder. ---- Minecraft Crash Report ---- // I'm sorry, Dave. Time: 7/30/13 9:09 PM Description: There was a severe problem during mod loading that has caused the game to fail cpw.mods.fml.common.LoaderException: java.lang.NoSuchFieldError: commandBlock at cpw.mods.fml.common.LoadController.transition(LoadController.java:149) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:698) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:232) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:506) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) at net.minecraft.client.main.Main.main(SourceFile:101) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:57) at net.minecraft.launchwrapper.Launch.main(Launch.java:18) Caused by: java.lang.NoSuchFieldError: commandBlock at tutorial.generic.Generic.load(Generic.java:35) 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:540) at sun.reflect.GeneratedMethodAccessor1.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:313) 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:194) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 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:313) 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:105) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:697) ... 10 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.6.2 Operating System: Windows 7 (x86) version 6.1 Java Version: 1.7.0_25, Oracle Corporation Java VM Version: Java HotSpot(TM) Client VM (mixed mode, sharing), Oracle Corporation Memory: 52324272 bytes (49 MB) / 115990528 bytes (110 MB) up to 518979584 bytes (494 MB) JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx512M 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 v8.04 FML v6.2.35.804 Minecraft Forge 9.10.0.804 19 mods loaded, 19 mods active mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{6.2.35.804} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized Forge{9.10.0.804} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized BetterSprinting{v10} [better Sprinting Coremod] (coremods) Unloaded->Constructed->Pre-initialized->Initialized CodeChickenCore{0.9.0.0} [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized NotEnoughItems{1.6.0.4} [Not Enough Items] (NotEnoughItems 1.6.0.4.jar) Unloaded->Constructed->Pre-initialized->Initialized mod_bspkrsCore{v3.03(1.6.2)} [bspkrsCore] ([1.6.2]bspkrsCorev3.03.zip) Unloaded->Constructed->Pre-initialized->Initialized CommandBlockRecipe{0.0.1} [CommandBlockRecipe] (1.6.2 CommandBlockRecipe.zip) Unloaded->Constructed->Pre-initialized->Initialized DamageIndicatorsMod{1.0} [Damage Indicators] (1.6.2 DamageIndicators v2.8.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized mod_ReiMinimap{v3.4_01 [1.6.2]} [mod_ReiMinimap] ([1.6.2]ReiMinimap_v3.4_01.zip) Unloaded->Constructed->Pre-initialized->Initialized TreeCapitator{Forge 1.6.2.r01} [TreeCapitator] ([1.6.2]TreeCapitator.Forge.1.6.2.r01.Uni.CoreMod.jar) Unloaded->Constructed->Pre-initialized->Initialized Backpack{1.12.13} [backpack] (backpack-1.12.13-1.6.2.zip) Unloaded->Constructed->Pre-initialized->Initialized buddycam{1.6.2 a} [buddyCam] (buddycam-1.6.2_a.zip) Unloaded->Constructed->Pre-initialized->Initialized ComputerCraft{1.55} [ComputerCraft] (ComputerCraft1.55.zip) Unloaded->Constructed->Pre-initialized->Initialized CCTurtle{1.55} [ComputerCraft Turtles] (ComputerCraft1.55.zip) Unloaded->Constructed->Pre-initialized->Initialized RopesPlus{1.4.3} [Ropes+] (RopePlus_1.6.2.zip) Unloaded->Constructed->Pre-initialized->Initialized row{1.6.2-13.07.30-0} [Rails of War] (RoW-162-130730-0.zip) Unloaded->Constructed->Pre-initialized->Initialized Generic{0.0.0} [Generic] (Tutorial.jar) Unloaded->Constructed->Pre-initialized->Errored AS_UpdateCheck{1.1.0} [AtomicStryker Update Check Mod] (UpdateCheckerMod_1.6.2.zip) Unloaded->Constructed->Pre-initialized->Initialized My mod does work fully from within eclipse.
  12. i misunderstood that for, "im trying to make a release" in your eclipse workspace do you have the net.* package ? (net.minecraft.*) Everything seems to work now except the crafting recipe.
  13. i misunderstood that for, "im trying to make a release" in your eclipse workspace do you have the net.* package ? (net.minecraft.*) I do. The error I'm getting is actually that of JVM. EDIT: Sometimes it works just fine. When it does work and the wrapped minecraft is loaded, my mod is listed but the crafting recipe does not work.
  14. It isn't though. It won't run the modded minecraft. Otherwise I would have done that like the tutorial said. I have 1.6.2 installed and everything.
  15. Okay so I am in the process of doing what you said. But I have to do this whole thing every time I want to test my mod?
  16. That is what I'm using. However, I should note that I am having to export my jar file as Eclipse can't run the modded minecraft for some strange reason.
  17. but you forgot to post it edit can we have logs (i dont know just by looking at it) Ya sorry about that. I program on one computer and test on the other so I had to switch back and forth and edit my posts a few times to that the rror code and java code could be in the post.
  18. Hello, I am an experienced plugin developer for bukkit and spout. However, when going through the tutorial for basic adding of a crafting recipe. The mod now crashes my game on launch. Below is the error and my code. The error is pointing to line 35 of the Generic class which is just then ItemStack commandBlock. I'm not sure what is wrong with it. Thanks for any help! Error: ---- Minecraft Crash Report ---- // Oh - I know what I did wrong! Time: 7/30/13 4:07 PM Description: There was a severe problem during mod loading that has caused the game to fail cpw.mods.fml.common.LoaderException: java.lang.NoSuchFieldError: commandBlock at cpw.mods.fml.common.LoadController.transition(LoadController.java:149) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:698) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:232) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:506) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) at net.minecraft.client.main.Main.main(SourceFile:101) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:57) at net.minecraft.launchwrapper.Launch.main(Launch.java:18) Caused by: java.lang.NoSuchFieldError: commandBlock at tutorial.generic.Generic.load(Generic.java:35) 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:540) at sun.reflect.GeneratedMethodAccessor1.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:313) 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:194) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174) 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:313) 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:105) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:697) ... 10 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.6.2 Operating System: Windows 7 (x86) version 6.1 Java Version: 1.7.0_25, Oracle Corporation Java VM Version: Java HotSpot(TM) Client VM (mixed mode, sharing), Oracle Corporation Memory: 50955944 bytes (48 MB) / 115183616 bytes (109 MB) up to 518979584 bytes (494 MB) JVM Flags: 2 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx512M 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 v8.04 FML v6.2.35.804 Minecraft Forge 9.10.0.804 18 mods loaded, 18 mods active mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{6.2.35.804} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized Forge{9.10.0.804} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized BetterSprinting{v10} [better Sprinting Coremod] (coremods) Unloaded->Constructed->Pre-initialized->Initialized CodeChickenCore{0.9.0.0} [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized NotEnoughItems{1.6.0.4} [Not Enough Items] (NotEnoughItems 1.6.0.4.jar) Unloaded->Constructed->Pre-initialized->Initialized mod_bspkrsCore{v3.03(1.6.2)} [bspkrsCore] ([1.6.2]bspkrsCorev3.03.zip) Unloaded->Constructed->Pre-initialized->Initialized DamageIndicatorsMod{2.8.5.1} [Damage Indicators] (1.6.2 DamageIndicators v2.8.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized mod_ReiMinimap{v3.4_01 [1.6.2]} [mod_ReiMinimap] ([1.6.2]ReiMinimap_v3.4_01.zip) Unloaded->Constructed->Pre-initialized->Initialized TreeCapitator{Forge 1.6.2.r01} [TreeCapitator] ([1.6.2]TreeCapitator.Forge.1.6.2.r01.Uni.CoreMod.jar) Unloaded->Constructed->Pre-initialized->Initialized Backpack{1.12.13} [backpack] (backpack-1.12.13-1.6.2.zip) Unloaded->Constructed->Pre-initialized->Initialized buddycam{1.6.2 a} [buddyCam] (buddycam-1.6.2_a.zip) Unloaded->Constructed->Pre-initialized->Initialized ComputerCraft{1.55} [ComputerCraft] (ComputerCraft1.55.zip) Unloaded->Constructed->Pre-initialized->Initialized CCTurtle{1.55} [ComputerCraft Turtles] (ComputerCraft1.55.zip) Unloaded->Constructed->Pre-initialized->Initialized RopesPlus{1.4.3} [Ropes+] (RopePlus_1.6.2.zip) Unloaded->Constructed->Pre-initialized->Initialized row{1.6.2-13.07.30-0} [Rails of War] (RoW-162-130730-0.zip) Unloaded->Constructed->Pre-initialized->Initialized Generic{0.0.0} [Generic] (Tutorial.jar) Unloaded->Constructed->Pre-initialized->Errored AS_UpdateCheck{1.1.0} [AtomicStryker Update Check Mod] (UpdateCheckerMod_1.6.2.zip) Unloaded->Constructed->Pre-initialized->Initialized Code: package tutorial.generic; import net.minecraft.block.Block; import net.minecraft.item.ItemStack; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.network.NetworkMod; import cpw.mods.fml.common.registry.GameRegistry; @Mod(modid="Generic", name="Generic", version="0.0.0") @NetworkMod(clientSideRequired=true, serverSideRequired=false) public class Generic { // The instance of your mod that Forge uses. @Instance("Generic") public static Generic instance; // Says where the client and server 'proxy' code is loaded. @SidedProxy(clientSide="tutorial.generic.client.ClientProxy", serverSide="tutorial.generic.CommonProxy") public static CommonProxy proxy; @EventHandler public void preInit(FMLPreInitializationEvent event) { // Stub Method } @EventHandler public void load(FMLInitializationEvent event) { proxy.registerRenderers(); ItemStack commandStack = new ItemStack(Block.commandBlock); ItemStack redstoneStack = new ItemStack(Block.redstoneWire); ItemStack repeaterStack = new ItemStack(Block.redstoneRepeaterIdle); GameRegistry.addRecipe(commandStack, "xy", "yx", 'x', redstoneStack, 'y', repeaterStack); } @EventHandler public void postInit(FMLPostInitializationEvent event) { // Stub Method } }
  19. Alright just to confirm/update. According to the log, it is launching the correct jar file. However, that jar file seems to not have minecraft forge even though, I installed it in there.
  20. Ok I got it to launch, but, the game isn't modded. Any reason why? I double checked the jar, and it is modded.
  21. Thanks for the response. So, I followed the video tutorial but it still doesn't launch the correct file. It showed up under local as a new one, but I can't seem to get the launcher to launch it.
  22. Hello, I tried installing it the normal way into the 1.6.1 jar but, every time I try and launch the game, the jar file is redownloaded. What am I doing wrong?

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.