
yanksrock1019
Members-
Posts
193 -
Joined
-
Last visited
Everything posted by yanksrock1019
-
That's correct, but I need two mods folders?
-
Where would this be, in the normal minecraft folder or the forge folder where the modding was done?
-
Where would this be, in the normal minecraft folder or the forge folder where the modding was done?
-
There is the code
-
There is the code
-
package mods.puplet; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.item.EnumToolMaterial; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.Item; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; import mods.puplet.pupletArmor; import net.minecraftforge.common.EnumHelper; import cpw.mods.fml.common.Mod.Instance; 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.Mod.PreInit; 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; import cpw.mods.fml.common.registry.LanguageRegistry; @Mod(modid = "puplet", name = "puplet_mod", version = "1.0") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class puplet_mod { @Instance("puplet") public static puplet_mod Instance; @SidedProxy(clientSide = "mods.puplet.clientproxypuplet", serverSide = "mods.puplet.ServerProxy") public static ServerProxy proxy; //IDs public static Block pupletOre; int pupletOreID = 500; public static Item ingotPuplet; public static EnumToolMaterial PUPLET1 = EnumHelper.addToolMaterial("PUPLET", 3, 20000, 10, 8, 10); public static Item pupletHelmet; public int pupletHelmetID = 1006; public static Item pickaxePuplet; public static Item pupletChestplate; public int pupletChestplateID = 1007; public static Item pupletBoots; public int pupletBootsID = 1008; public static Item pupletLeggings; public int pupletLeggingsID = 1009; public int pickaxePupletID = 1001; public static Item axePuplet; public int axePupletID = 1002; public static Item swordPuplet; public int swordPupletID = 1003; public static Item hoePuplet; public int hoePupletID = 1004; public static Item shovelPuplet; public int shovelPupletID = 1005; public int ingotPupletID = 1000; @PreInit public void preInit(FMLPreInitializationEvent event){ } @Init public void load(FMLInitializationEvent event){ proxy.registerRenderers(); //Items and Blocks ingotPuplet = new ingotPuplet(ingotPupletID).setUnlocalizedName("ingotPuplet"); pupletOre = new pupletOre(pupletOreID, Material.rock).setUnlocalizedName("pupletOre").setHardness(2.0F); pickaxePuplet = new pickaxePuplet(pickaxePupletID, PUPLET1).setUnlocalizedName("pickaxePuplet"); axePuplet = new axePuplet(axePupletID, PUPLET1).setUnlocalizedName("axePuplet"); swordPuplet = new swordPuplet(swordPupletID, PUPLET1).setUnlocalizedName("swordPuplet"); hoePuplet = new hoePuplet(hoePupletID, PUPLET1).setUnlocalizedName("hoePuplet"); shovelPuplet = new shovelPuplet(shovelPupletID, PUPLET1).setUnlocalizedName("shovelPuplet"); pupletHelmet = new pupletArmor(pupletHelmetID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 0).setUnlocalizedName("pupletHelmet"); pupletChestplate = new pupletArmor(pupletChestplateID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 1).setUnlocalizedName("pupletChestplate"); pupletLeggings = new pupletArmor(pupletLeggingsID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 2).setUnlocalizedName("pupletLeggings"); pupletBoots = new pupletArmor(pupletBootsID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 3).setUnlocalizedName("pupletBoots"); gameRegisters(); languageRegisters(); craftingRecipes(); GameRegistry.registerWorldGenerator(new WorldGeneratorPuplet()); } //Crafting public void craftingRecipes(){ GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletOre), new Object[]{ "DD ", "DD ", 'D', Block.dirt }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pickaxePuplet), new Object[]{ "PPP", " S ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.axePuplet), new Object[]{ "PP ", "PS ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.swordPuplet), new Object[]{ " P ", " P ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.hoePuplet), new Object[]{ "PP ", " S ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.shovelPuplet), new Object[]{ " P ", " S ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletHelmet), new Object[]{ "PPP", "P P", 'P', puplet_mod.ingotPuplet }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletChestplate), new Object[]{ "P P", "PPP", "PPP", 'P', puplet_mod.ingotPuplet }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletLeggings), new Object[]{ "PPP", "P P", "P P", 'P', puplet_mod.ingotPuplet }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletBoots), new Object[]{ "P P", "P P", 'P', puplet_mod.ingotPuplet }); } //Game Registry private static void gameRegisters(){ GameRegistry.registerBlock(pupletOre, "pupletOre"); GameRegistry.registerItem(ingotPuplet, "ingotPuplet"); GameRegistry.registerItem(pickaxePuplet, "pickaxePuplet"); GameRegistry.registerItem(axePuplet, "axePuplet"); GameRegistry.registerItem(swordPuplet, "swordPuplet"); GameRegistry.registerItem(hoePuplet, "hoePuplet"); GameRegistry.registerItem(shovelPuplet, "shovelPuplet"); GameRegistry.registerItem(pupletHelmet, "helmetPuplet"); GameRegistry.registerItem(pupletChestplate, "chestplatePuplet"); GameRegistry.registerItem(pupletLeggings, "leggingsPuplet"); GameRegistry.registerItem(pupletBoots, "bootsPuplet"); } //Language Registry private static void languageRegisters(){ LanguageRegistry.addName(pupletOre, "Puplet Ore"); LanguageRegistry.addName(ingotPuplet, "Puplet Ingot"); LanguageRegistry.addName(pickaxePuplet, "Puplet Pickaxe"); LanguageRegistry.addName(axePuplet, "Puplet Axe"); LanguageRegistry.addName(swordPuplet, "Puplet Sword"); LanguageRegistry.addName(hoePuplet, "Puplet Hoe"); LanguageRegistry.addName(shovelPuplet, "Puplet Shovel"); LanguageRegistry.addName(pupletHelmet, "Puplet Helmet"); LanguageRegistry.addName(pupletChestplate, "Puplet Chestplate"); LanguageRegistry.addName(pupletLeggings, "Puplet Leggings"); LanguageRegistry.addName(pupletBoots, "Puplet Boots"); } @PostInit public void postInit(FMLPostInitializationEvent event){ } }
-
package mods.puplet; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.item.EnumToolMaterial; import net.minecraft.item.EnumArmorMaterial; import net.minecraft.item.Item; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; import mods.puplet.pupletArmor; import net.minecraftforge.common.EnumHelper; import cpw.mods.fml.common.Mod.Instance; 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.Mod.PreInit; 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; import cpw.mods.fml.common.registry.LanguageRegistry; @Mod(modid = "puplet", name = "puplet_mod", version = "1.0") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class puplet_mod { @Instance("puplet") public static puplet_mod Instance; @SidedProxy(clientSide = "mods.puplet.clientproxypuplet", serverSide = "mods.puplet.ServerProxy") public static ServerProxy proxy; //IDs public static Block pupletOre; int pupletOreID = 500; public static Item ingotPuplet; public static EnumToolMaterial PUPLET1 = EnumHelper.addToolMaterial("PUPLET", 3, 20000, 10, 8, 10); public static Item pupletHelmet; public int pupletHelmetID = 1006; public static Item pickaxePuplet; public static Item pupletChestplate; public int pupletChestplateID = 1007; public static Item pupletBoots; public int pupletBootsID = 1008; public static Item pupletLeggings; public int pupletLeggingsID = 1009; public int pickaxePupletID = 1001; public static Item axePuplet; public int axePupletID = 1002; public static Item swordPuplet; public int swordPupletID = 1003; public static Item hoePuplet; public int hoePupletID = 1004; public static Item shovelPuplet; public int shovelPupletID = 1005; public int ingotPupletID = 1000; @PreInit public void preInit(FMLPreInitializationEvent event){ } @Init public void load(FMLInitializationEvent event){ proxy.registerRenderers(); //Items and Blocks ingotPuplet = new ingotPuplet(ingotPupletID).setUnlocalizedName("ingotPuplet"); pupletOre = new pupletOre(pupletOreID, Material.rock).setUnlocalizedName("pupletOre").setHardness(2.0F); pickaxePuplet = new pickaxePuplet(pickaxePupletID, PUPLET1).setUnlocalizedName("pickaxePuplet"); axePuplet = new axePuplet(axePupletID, PUPLET1).setUnlocalizedName("axePuplet"); swordPuplet = new swordPuplet(swordPupletID, PUPLET1).setUnlocalizedName("swordPuplet"); hoePuplet = new hoePuplet(hoePupletID, PUPLET1).setUnlocalizedName("hoePuplet"); shovelPuplet = new shovelPuplet(shovelPupletID, PUPLET1).setUnlocalizedName("shovelPuplet"); pupletHelmet = new pupletArmor(pupletHelmetID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 0).setUnlocalizedName("pupletHelmet"); pupletChestplate = new pupletArmor(pupletChestplateID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 1).setUnlocalizedName("pupletChestplate"); pupletLeggings = new pupletArmor(pupletLeggingsID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 2).setUnlocalizedName("pupletLeggings"); pupletBoots = new pupletArmor(pupletBootsID, EnumArmorMaterial.DIAMOND, proxy.addArmor("pupletArmor"), 3).setUnlocalizedName("pupletBoots"); gameRegisters(); languageRegisters(); craftingRecipes(); GameRegistry.registerWorldGenerator(new WorldGeneratorPuplet()); } //Crafting public void craftingRecipes(){ GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletOre), new Object[]{ "DD ", "DD ", 'D', Block.dirt }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pickaxePuplet), new Object[]{ "PPP", " S ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.axePuplet), new Object[]{ "PP ", "PS ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.swordPuplet), new Object[]{ " P ", " P ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.hoePuplet), new Object[]{ "PP ", " S ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.shovelPuplet), new Object[]{ " P ", " S ", " S ", 'P', puplet_mod.ingotPuplet, 'S', Item.stick }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletHelmet), new Object[]{ "PPP", "P P", 'P', puplet_mod.ingotPuplet }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletChestplate), new Object[]{ "P P", "PPP", "PPP", 'P', puplet_mod.ingotPuplet }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletLeggings), new Object[]{ "PPP", "P P", "P P", 'P', puplet_mod.ingotPuplet }); GameRegistry.addRecipe(new ItemStack(puplet_mod.pupletBoots), new Object[]{ "P P", "P P", 'P', puplet_mod.ingotPuplet }); } //Game Registry private static void gameRegisters(){ GameRegistry.registerBlock(pupletOre, "pupletOre"); GameRegistry.registerItem(ingotPuplet, "ingotPuplet"); GameRegistry.registerItem(pickaxePuplet, "pickaxePuplet"); GameRegistry.registerItem(axePuplet, "axePuplet"); GameRegistry.registerItem(swordPuplet, "swordPuplet"); GameRegistry.registerItem(hoePuplet, "hoePuplet"); GameRegistry.registerItem(shovelPuplet, "shovelPuplet"); GameRegistry.registerItem(pupletHelmet, "helmetPuplet"); GameRegistry.registerItem(pupletChestplate, "chestplatePuplet"); GameRegistry.registerItem(pupletLeggings, "leggingsPuplet"); GameRegistry.registerItem(pupletBoots, "bootsPuplet"); } //Language Registry private static void languageRegisters(){ LanguageRegistry.addName(pupletOre, "Puplet Ore"); LanguageRegistry.addName(ingotPuplet, "Puplet Ingot"); LanguageRegistry.addName(pickaxePuplet, "Puplet Pickaxe"); LanguageRegistry.addName(axePuplet, "Puplet Axe"); LanguageRegistry.addName(swordPuplet, "Puplet Sword"); LanguageRegistry.addName(hoePuplet, "Puplet Hoe"); LanguageRegistry.addName(shovelPuplet, "Puplet Shovel"); LanguageRegistry.addName(pupletHelmet, "Puplet Helmet"); LanguageRegistry.addName(pupletChestplate, "Puplet Chestplate"); LanguageRegistry.addName(pupletLeggings, "Puplet Leggings"); LanguageRegistry.addName(pupletBoots, "Puplet Boots"); } @PostInit public void postInit(FMLPostInitializationEvent event){ } }
-
Should I post my puplet_mod code, if so, how do I do this
-
Should I post my puplet_mod code, if so, how do I do this
-
It does match
-
It does match
-
I know what both are, but what do you mean they have to match
-
I know what both are, but what do you mean they have to match
-
What do you mean
-
What do you mean
-
Ok I see what you mean, but whats the difference weather I have the parenthesis around the new and stuff like that
-
Ok I see what you mean, but whats the difference weather I have the parenthesis around the new and stuff like that
-
That's the base mod, how do I post it anyway. Also, are the stuff like: ingotPuplet = new ingotPuplet(ingotPupletID).setUnlocalizedName("ingotPuplet"); supposed to go in the @Init or the @PreInit
-
That's the base mod, how do I post it anyway. Also, are the stuff like: ingotPuplet = new ingotPuplet(ingotPupletID).setUnlocalizedName("ingotPuplet"); supposed to go in the @Init or the @PreInit
-
Minecraft has crashed! ---------------------- Minecraft has stopped running because it encountered a problem; Failed to start game A full error report has been saved to C:\Users\Anthony\AppData\Roaming\.minecraft\crash-reports\crash-2013-04-19_19.42.54-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash --- BEGIN ERROR REPORT 9391fc6e -------- Full report at: C:\Users\Anthony\AppData\Roaming\.minecraft\crash-reports\crash-2013-04-19_19.42.54-client.txt Please show that file to Mojang, NOT just this screen! Generated 4/19/13 7:42 PM -- System Details -- Details: Minecraft Version: 1.5.1 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.7.0_13, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 755886992 bytes (720 MB) / 1029046272 bytes (981 MB) up to 1029046272 bytes (981 MB) JVM Flags: 2 total; -Xms1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v7.44 FML v5.1.21.652 Minecraft Forge 7.7.1.652 4 mods loaded, 4 mods active mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed FML [Forge Mod Loader] (coremods) Unloaded->Constructed Forge [Minecraft Forge] (coremods) Unloaded->Constructed puplet [puplet_mod] (puplet.zip) Unloaded->Errored LWJGL: 2.4.2 OpenGL: Intel Bear Lake B GL version 1.4.0 - Build 8.15.10.1912, Intel Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Texture Pack: Default Profiler Position: N/A (disabled) Vec3 Pool Size: ~~ERROR~~ NullPointerException: null cpw.mods.fml.common.LoaderException: java.lang.ClassNotFoundException: mods.puplet.puplet_mod at cpw.mods.fml.common.LoadController.transition(LoadController.java:142) at cpw.mods.fml.common.Loader.loadMods(Loader.java:513) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:407) at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56) at net.minecraft.client.Minecraft.run(Minecraft.java:729) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.ClassNotFoundException: mods.puplet.puplet_mod at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:446) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98) at cpw.mods.fml.common.Loader.loadMods(Loader.java:503) ... 5 more Caused by: java.lang.NullPointerException at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227) ... 32 more --- END ERROR REPORT 8be0aee4 ----------
-
Minecraft has crashed! ---------------------- Minecraft has stopped running because it encountered a problem; Failed to start game A full error report has been saved to C:\Users\Anthony\AppData\Roaming\.minecraft\crash-reports\crash-2013-04-19_19.42.54-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash --- BEGIN ERROR REPORT 9391fc6e -------- Full report at: C:\Users\Anthony\AppData\Roaming\.minecraft\crash-reports\crash-2013-04-19_19.42.54-client.txt Please show that file to Mojang, NOT just this screen! Generated 4/19/13 7:42 PM -- System Details -- Details: Minecraft Version: 1.5.1 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.7.0_13, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 755886992 bytes (720 MB) / 1029046272 bytes (981 MB) up to 1029046272 bytes (981 MB) JVM Flags: 2 total; -Xms1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Suspicious classes: FML and Forge are installed IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v7.44 FML v5.1.21.652 Minecraft Forge 7.7.1.652 4 mods loaded, 4 mods active mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed FML [Forge Mod Loader] (coremods) Unloaded->Constructed Forge [Minecraft Forge] (coremods) Unloaded->Constructed puplet [puplet_mod] (puplet.zip) Unloaded->Errored LWJGL: 2.4.2 OpenGL: Intel Bear Lake B GL version 1.4.0 - Build 8.15.10.1912, Intel Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Texture Pack: Default Profiler Position: N/A (disabled) Vec3 Pool Size: ~~ERROR~~ NullPointerException: null cpw.mods.fml.common.LoaderException: java.lang.ClassNotFoundException: mods.puplet.puplet_mod at cpw.mods.fml.common.LoadController.transition(LoadController.java:142) at cpw.mods.fml.common.Loader.loadMods(Loader.java:513) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:160) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:407) at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56) at net.minecraft.client.Minecraft.run(Minecraft.java:729) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.ClassNotFoundException: mods.puplet.puplet_mod at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at cpw.mods.fml.common.ModClassLoader.loadClass(ModClassLoader.java:56) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:446) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:165) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:98) at cpw.mods.fml.common.Loader.loadMods(Loader.java:503) ... 5 more Caused by: java.lang.NullPointerException at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227) ... 32 more --- END ERROR REPORT 8be0aee4 ----------
-
I just finished my mod and reobfuscated, I also zipped up my class files and my textures into one zip. When I try to put it in the mods folder, though, so that forge can see it, it gives a long error code that tells me that it couldn't load the classes. HELP!
-
I just finished my mod and reobfuscated, I also zipped up my class files and my textures into one zip. When I try to put it in the mods folder, though, so that forge can see it, it gives a long error code that tells me that it couldn't load the classes. HELP!
-
Substitute for IArmorTextureProvider
yanksrock1019 replied to yanksrock1019's topic in Modder Support
So I'm trying to make armor in forge but IArmorTextureProvider is Deprecated. What is the new Armor Texture text. -
So I'm trying to make armor in forge but IArmorTextureProvider is Deprecated. What is the new Armor Texture text.