Jump to content

EscapeMC

Forge Modder
  • Posts

    337
  • Joined

  • Last visited

Everything posted by EscapeMC

  1. Here is my GitHub for this. You can look at my models and everything. Please help. https://github.com/EcapeMC/TeamMadnessMod-1.10.2/tree/master/main/java/com/escapemc/teammadnessmod
  2. I am making a github right now for it. This is my first time with using github, so it might take me a bit to get it set up.
  3. Exactly this. When using ItemAxe, you need the damage and speed. Note, the damage is what you put, but whatever variable you put for speed, 4 is added to it. So, for the same speed and damage as a diamond axe, you should use -3. Here: ItemAxe(example_tool_material, 9, -3 (And also, if the damage for a diamond axe is not 9, sorry!)
  4. There is no error with the log. The game loads normally. But the texture in game does not work. I did get rid of that stuff, but as I stated above, it comes up with the no texture in my inventory or in hand. Use the parent "item/handheld" this is the one that vanilla uses. And in the one you posted drop the entire "display" tag. I posted one slightly later Now, following the instruction of someone else earlier for my escapemc_pickaxe, using this { "parent": "item/handheld", "textures": { "layer0": “tmm:items/escapemc_pickaxe" } } I got a not working result. What can I do?" I said that did not work for my pickaxe. Should I try it for my ingot?
  5. There is no error with the log. The game loads normally. But the texture in game does not work. I did get rid of that stuff, but as I stated above, it comes up with the no texture in my inventory or in hand.
  6. But how do I fix/change to using item/generated? If I put item/generated, it just comes up with the "no texture" block.
  7. Sorry for not responding earlier, I was camping this weekend. My current escapemc_ingot.json is { "parent": "builtin/generated", "textures": { "layer0": "tmm:items/escapemc_ingot" }, "display": { "thirdperson": { "rotation": [ -90, 0, 0 ], "translation": [ 0, 1, -3 ], "scale": [ 0.55, 0.55, 0.55 ] }, "firstperson": { "rotation": [ 0, -135, 25 ], "translation": [ 0, 4, 2 ], "scale": [ 1.7, 1.7, 1.7 ] } } } Now, following the instruction of someone else earlier for my escapemc_pickaxe, using this { "parent": "item/handheld", "textures": { "layer0": “tmm:items/escapemc_pickaxe" } } I got a not working result. What can I do?
  8. That did not work, and instead gave me the purple and black "no texture" image, made me hold the no texture block, and was still HUGE.
  9. Ok, does anyone have a item model for pickaxe, axe, shovel, hoe, sword, and ingot for 1.10.2? The ones from 1.8 do work, but they give an end result that whenever it is in-hand, the item is sideways and HUGE. Photo: First Person: (Pickaxe) https://www.dropbox.com/s/0jbwpstopaqh9r7/Screen%20Shot%202016-10-21%20at%202.07.50%20PM.png?dl=0 Third Person: (Ingot) https://www.dropbox.com/s/1rdlsk6rlcu315g/Screen%20Shot%202016-10-21%20at%202.07.42%20PM.png?dl=0 By the way, when I say item model, I mean resources.assets.(ModID).models.item
  10. Wait, so do you not know your ModID? When you make your mom, one of the first steps is making YOUR OWN ModID. You set it early on. There are several ways to do this too. my personal favorite, is @Mod(modid = Reference.MOD_ID); Refernece is another class, where i did public static final String MOD_ID = "tmm";
  11. Thank you so so so so so much! The both of you, I now have the problem solved. I owe you all my thanks!
  12. So what should I exactly do to fix this problem of mine? Make it import java.util.Random; import com.escapemc.teammadnessmod.init.TeamMadnessModBlocks; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraft.world.chunk.IChunkGenerator; import net.minecraft.world.chunk.IChunkProvider; import net.minecraft.world.gen.feature.WorldGenMinable; import net.minecraft.world.gen.feature.WorldGenerator; import net.minecraftforge.fml.common.IWorldGenerator; public class world_gen implements IWorldGenerator { @Override public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) { switch (world.provider.getDimension()) { Or where do I add @Override?
  13. In the FMLInitializationEvent in my main class
  14. 1. What is PascalCase ecaxtly? like ItemExampleItem? 2. GameRegistry.registerWorldGenerator(new world_gen(), 0); EDIT: I registered it in the FMLInitializationEvent, if that means anything
  15. Hello! I am new to modding with 1.9.4 and 1.10.2, and need some help. I put all my code from my 1.8 version of my mod and fixed all errors I got, along with the axe changes. My world generation code did not bring up any errors, or anything, but I cannot find the ores anywhere! Here is my code for world gen: package com.escapemc.teammadnessmod.world; import java.util.Random; import com.escapemc.teammadnessmod.init.TeamMadnessModBlocks; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraft.world.chunk.IChunkGenerator; import net.minecraft.world.chunk.IChunkProvider; import net.minecraft.world.gen.feature.WorldGenMinable; import net.minecraft.world.gen.feature.WorldGenerator; import net.minecraftforge.fml.common.IWorldGenerator; public class world_gen implements IWorldGenerator { public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) { switch (world.provider.getDimension()) { case 0: //Overworld this.runGenerator(this.gen_escapemc_ore, world, random, chunkX, chunkZ, 8, 0, 64); this.runGenerator(this.gen_mushrromstew_ore, world, random, chunkX, chunkZ, 8, 0, 64); this.runGenerator(this.gen_epicbudder22_ore, world, random, chunkX, chunkZ, 8, 0, 64); this.runGenerator(this.gen_jonahjoe2002_ore, world, random, chunkX, chunkZ, 8, 0, 64); this.runGenerator(this.gen_ms, world, random, chunkX, chunkZ, 6, 0, 40); this.runGenerator(this.gen_madness_ore, world, random, chunkX, chunkZ, 6, 0, 64); break; case -1: //Nether break; case 1: //End break; } } private WorldGenerator gen_escapemc_ore; private WorldGenerator gen_mushrromstew_ore; private WorldGenerator gen_epicbudder22_ore; private WorldGenerator gen_jonahjoe2002_ore; private WorldGenerator gen_ms; private WorldGenerator gen_madness_ore; public world_gen() { this.gen_escapemc_ore = new WorldGenMinable(TeamMadnessModBlocks.escapemc_ore.getDefaultState(), ; this.gen_mushrromstew_ore = new WorldGenMinable(TeamMadnessModBlocks.mushrromstew_ore.getDefaultState(), ; this.gen_epicbudder22_ore = new WorldGenMinable(TeamMadnessModBlocks.epicbudder22_ore.getDefaultState(), ; this.gen_jonahjoe2002_ore = new WorldGenMinable(TeamMadnessModBlocks.jonahjoe2002_ore.getDefaultState(), ; this.gen_ms = new WorldGenMinable(TeamMadnessModBlocks.ms.getDefaultState(), 4); this.gen_madness_ore = new WorldGenMinable(TeamMadnessModBlocks.madness_ore.getDefaultState(), 4); } private void runGenerator(WorldGenerator generator, World world, Random rand, int chunk_X, int chunk_Z, int chancesToSpawn, int minHeight, int maxHeight) { if (minHeight < 0 || maxHeight > 256 || minHeight > maxHeight) throw new IllegalArgumentException("Illegal Height Arguments for WorldGenerator"); int heightDiff = maxHeight - minHeight + 1; for (int i = 0; i < chancesToSpawn; i ++) { int x = chunk_X * 16 + rand.nextInt(16); int y = minHeight + rand.nextInt(heightDiff); int z = chunk_Z * 16 + rand.nextInt(16); generator.generate(world, rand, new BlockPos(x, y, z)); } } @Override public void generate(Random random, int chunkX, int chunkZ, World world, IChunkGenerator chunkGenerator, IChunkProvider chunkProvider) { } }
  16. Hello! I know this is a 1.8 problem, but people always still help me whenever it is an older version. if you wish not to help me, don't go yelling at me saying "THIS ISN'T LATEST VERSION!!!" I am working with crafting recipes, and for some reason a few specific ones will not work. Here: Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [10:06:35] [main/INFO]: Extra: [] [10:06:35] [main/INFO]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/school/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [10:06:35] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:06:35] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:06:35] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [10:06:35] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [10:06:35] [main/INFO]: Forge Mod Loader version 11.14.4.1563 for Minecraft 1.8 loading [10:06:35] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_101, running on Mac OS X:x86_64:10.12, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home/jre [10:06:35] [main/INFO]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [10:06:35] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [10:06:35] [main/INFO]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [10:06:35] [main/INFO]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [10:06:35] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:06:35] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:06:35] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:06:35] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:06:35] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:06:35] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:06:35] [main/ERROR]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [10:06:36] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing [10:06:36] [main/INFO]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:06:36] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:06:37] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:06:37] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [10:06:37] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [10:06:37] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main} [10:06:38] [Client thread/INFO]: Setting user: Player894 [10:06:40] [Client thread/INFO]: LWJGL Version: 2.9.2 [10:06:40] [Client thread/INFO]: Attempting early MinecraftForge initialization [10:06:41] [Client thread/INFO]: MinecraftForge v11.14.4.1563 Initialized [10:06:41] [Client thread/INFO]: Replaced 204 ore recipies [10:06:41] [Client thread/INFO]: Completed early MinecraftForge initialization [10:06:41] [Client thread/INFO]: Found 0 mods from the command line. Injecting into mod discoverer [10:06:41] [Client thread/INFO]: Searching /Users/school/Extras/TeamMadness Mod 1.8/run/mods for mods [10:06:42] [Client thread/INFO]: Forge Mod Loader has identified 4 mods to load [10:06:43] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, tmm] at CLIENT [10:06:43] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, tmm] at SERVER [10:06:43] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TeamMadness Mod [10:06:43] [Client thread/INFO]: Processing ObjectHolder annotations [10:06:43] [Client thread/INFO]: Found 384 ObjectHolder annotations [10:06:43] [Client thread/INFO]: Identifying ItemStackHolder annotations [10:06:43] [Client thread/INFO]: Found 0 ItemStackHolder annotations [10:06:43] [Client thread/INFO]: Configured a dormant chunk cache size of 0 [10:06:43] [Forge Version Check/INFO]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [10:06:43] [Client thread/INFO]: Applying holder lookups [10:06:43] [Client thread/INFO]: Holder lookups applied [10:06:43] [Client thread/INFO]: Injecting itemstacks [10:06:43] [Client thread/INFO]: Itemstack injection complete [10:06:44] [Forge Version Check/INFO]: [Forge] Found status: UP_TO_DATE Target: null [10:06:44] [sound Library Loader/INFO]: Starting up SoundSystem... [10:06:44] [Thread-7/INFO]: Initializing LWJGL OpenAL [10:06:44] [Thread-7/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [10:06:44] [Thread-7/INFO]: OpenAL initialized. [10:06:44] [sound Library Loader/INFO]: Sound engine started [10:06:46] [Client thread/INFO]: Max texture size: 16384 [10:06:46] [Client thread/INFO]: Created: 16x16 textures-atlas [10:06:47] [Client thread/ERROR]: Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue [10:06:47] [Client thread/ERROR]: States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHI mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCHI FML{8.0.99.99} [Forge Mod Loader] (forgeBin-1.8-11.14.4.1563.jar) UCHI Forge{11.14.4.1563} [Minecraft Forge] (forgeBin-1.8-11.14.4.1563.jar) UCHE tmm{1.3.0.1} [TeamMadness Mod] (bin) [10:06:47] [Client thread/ERROR]: The following problems were captured during this phase [10:06:47] [Client thread/ERROR]: Caught exception from tmm java.lang.NullPointerException at net.minecraft.item.crafting.CraftingManager.addRecipe(SourceFile:1129) ~[forgeBin-1.8-11.14.4.1563.jar:?] at net.minecraftforge.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:242) ~[forgeBin-1.8-11.14.4.1563.jar:?] at net.minecraftforge.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:237) ~[forgeBin-1.8-11.14.4.1563.jar:?] at com.escapemc.teammadnessmod.ModCrafting.initCrafting(ModCrafting.java:74) ~[bin/:?] at com.escapemc.teammadnessmod.TeamMadnessMod.Init(TeamMadnessMod.java:43) ~[bin/:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_101] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_101] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_101] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_101] at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:553) ~[forgeBin-1.8-11.14.4.1563.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_101] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_101] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_101] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_101] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) ~[forgeBin-1.8-11.14.4.1563.jar:?] at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:190) ~[forgeBin-1.8-11.14.4.1563.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_101] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_101] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_101] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_101] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:119) [LoadController.class:?] at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:731) [Loader.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:316) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:491) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:325) [Minecraft.class:?] at net.minecraft.client.main.Main.main(SourceFile:120) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_101] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_101] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_101] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_101] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_101] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_101] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_101] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_101] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [10:06:47] [Client thread/INFO]: [net.minecraft.init.Bootstrap:printToSYSOUT:571]: ---- Minecraft Crash Report ---- // Daisy, daisy... Time: 10/17/16 10:06 AM Description: Initializing game java.lang.NullPointerException: Initializing game at net.minecraft.item.crafting.CraftingManager.addRecipe(SourceFile:1129) at net.minecraftforge.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:242) at net.minecraftforge.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:237) at com.escapemc.teammadnessmod.ModCrafting.initCrafting(ModCrafting.java:74) at com.escapemc.teammadnessmod.TeamMadnessMod.Init(TeamMadnessMod.java:43) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:553) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:190) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:731) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:316) at net.minecraft.client.Minecraft.startGame(Minecraft.java:491) at net.minecraft.client.Minecraft.run(Minecraft.java:325) at net.minecraft.client.main.Main.main(SourceFile:120) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at net.minecraft.item.crafting.CraftingManager.addRecipe(SourceFile:1129) at net.minecraftforge.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:242) at net.minecraftforge.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:237) at com.escapemc.teammadnessmod.ModCrafting.initCrafting(ModCrafting.java:74) at com.escapemc.teammadnessmod.TeamMadnessMod.Init(TeamMadnessMod.java:43) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:553) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:190) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:731) at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:316) at net.minecraft.client.Minecraft.startGame(Minecraft.java:491) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:325) at net.minecraft.client.main.Main.main(SourceFile:120) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) -- System Details -- Details: Minecraft Version: 1.8 Operating System: Mac OS X (x86_64) version 10.12 Java Version: 1.8.0_101, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 679220088 bytes (647 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1563 4 mods loaded, 4 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHI mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCHI FML{8.0.99.99} [Forge Mod Loader] (forgeBin-1.8-11.14.4.1563.jar) UCHI Forge{11.14.4.1563} [Minecraft Forge] (forgeBin-1.8-11.14.4.1563.jar) UCHE tmm{1.3.0.1} [TeamMadness Mod] (bin) Loaded coremods (and transformers): Launched Version: 1.8 LWJGL: 2.9.2 OpenGL: Intel(R) Iris(TM) Graphics 6100 GL version 2.1 INTEL-10.18.65, Intel Inc. GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because ARB_framebuffer_object is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: No Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) [10:06:47] [Client thread/INFO]: [net.minecraft.init.Bootstrap:printToSYSOUT:571]: #@!@# Game crashed! Crash report saved to: #@!@# /Users/school/Extras/TeamMadness Mod 1.8/run/./crash-reports/crash-2016-10-17_10.06.47-client.txt AL lib: (EE) alc_cleanup: 1 device not closed Here is the code for my crafting recipe class: package com.escapemc.teammadnessmod; import com.escapemc.teammadnessmod.init.TeamMadnessModBlocks; import com.escapemc.teammadnessmod.init.TeamMadnessModItems; import net.minecraft.init.Items; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.registry.GameRegistry; public class ModCrafting { public static void initCrafting() { GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_sword), new Object[] {"#", "#", "S", '#', TeamMadnessModItems.escapemc_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_pickaxe), new Object[] {"###", " S ", " S ", '#', TeamMadnessModItems.escapemc_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_axe), new Object[] {"##", "S#", "S ", '#', TeamMadnessModItems.escapemc_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_axe), new Object[] {"##", "#S", " S", '#', TeamMadnessModItems.escapemc_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_shovel), new Object[] {"#", "S", "S", '#', TeamMadnessModItems.escapemc_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_hoe), new Object[] {"##", "S ", "S ", '#', TeamMadnessModItems.escapemc_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_hoe), new Object[] {"##", " S", " S", '#', TeamMadnessModItems.escapemc_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_helmet), new Object[] {"###", "# #", '#', TeamMadnessModItems.escapemc_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_chestplate), new Object[] {"# #", "###", "###", '#', TeamMadnessModItems.escapemc_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_leggings), new Object[] {"###", "# #", "# #", '#', TeamMadnessModItems.escapemc_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.escapemc_boots), new Object[] {"# #", "# #", '#', TeamMadnessModItems.escapemc_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_sword), new Object[] {"#", "#", "S", '#', TeamMadnessModItems.mushrromstew_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_pickaxe), new Object[] {"###", " S ", " S ", '#', TeamMadnessModItems.mushrromstew_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_axe), new Object[] {"##", "S#", "S ", '#', TeamMadnessModItems.mushrromstew_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_axe), new Object[] {"##", "#S", " S", '#', TeamMadnessModItems.mushrromstew_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_shovel), new Object[] {"#", "S", "S", '#', TeamMadnessModItems.mushrromstew_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_hoe), new Object[] {"##", "S ", "S ", '#', TeamMadnessModItems.mushrromstew_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_hoe), new Object[] {"##", " S", " S", '#', TeamMadnessModItems.mushrromstew_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_helmet), new Object[] {"###", "# #", '#', TeamMadnessModItems.mushrromstew_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_chestplate), new Object[] {"# #", "###", "###", '#', TeamMadnessModItems.mushrromstew_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_leggings), new Object[] {"###", "# #", "# #", '#', TeamMadnessModItems.mushrromstew_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.mushrromstew_boots), new Object[] {"# #", "# #", '#', TeamMadnessModItems.mushrromstew_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_sword), new Object[] {"#", "#", "S", '#', TeamMadnessModItems.epicbudder22_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_pickaxe), new Object[] {"###", " S ", " S ", '#', TeamMadnessModItems.epicbudder22_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_axe), new Object[] {"##", "S#", "S ", '#', TeamMadnessModItems.epicbudder22_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_axe), new Object[] {"##", "#S", " S", '#', TeamMadnessModItems.epicbudder22_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_shovel), new Object[] {"#", "S", "S", '#', TeamMadnessModItems.epicbudder22_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_hoe), new Object[] {"##", "S ", "S ", '#', TeamMadnessModItems.epicbudder22_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_hoe), new Object[] {"##", " S", " S", '#', TeamMadnessModItems.epicbudder22_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_helmet), new Object[] {"###", "# #", '#', TeamMadnessModItems.epicbudder22_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_chestplate), new Object[] {"# #", "###", "###", '#', TeamMadnessModItems.epicbudder22_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_leggings), new Object[] {"###", "# #", "# #", '#', TeamMadnessModItems.epicbudder22_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.epicbudder22_boots), new Object[] {"# #", "# #", '#', TeamMadnessModItems.epicbudder22_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_sword), new Object[] {"#", "#", "S", '#', TeamMadnessModItems.jonahjoe2002_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_pickaxe), new Object[] {"###", " S ", " S ", '#', TeamMadnessModItems.jonahjoe2002_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_axe), new Object[] {"##", "S#", "S ", '#', TeamMadnessModItems.jonahjoe2002_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_axe), new Object[] {"##", "#S", " S", '#', TeamMadnessModItems.jonahjoe2002_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_shovel), new Object[] {"#", "S", "S", '#', TeamMadnessModItems.jonahjoe2002_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_hoe), new Object[] {"##", "S ", "S ", '#', TeamMadnessModItems.jonahjoe2002_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_hoe), new Object[] {"##", " S", " S", '#', TeamMadnessModItems.jonahjoe2002_ingot, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_helmet), new Object[] {"###", "# #", '#', TeamMadnessModItems.jonahjoe2002_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_chestplate), new Object[] {"# #", "###", "###", '#', TeamMadnessModItems.jonahjoe2002_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_leggings), new Object[] {"###", "# #", "# #", '#', TeamMadnessModItems.jonahjoe2002_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.jonahjoe2002_boots), new Object[] {"# #", "# #", '#', TeamMadnessModItems.jonahjoe2002_ingot}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_sword), new Object[] {"#", "#", "S", '#', TeamMadnessModBlocks.cdm, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_pickaxe), new Object[] {"###", " S ", " S ", '#', TeamMadnessModBlocks.cdm, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_axe), new Object[] {"##", "S#", "S ", '#', TeamMadnessModBlocks.cdm, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_axe), new Object[] {"##", "#S", " S", '#', TeamMadnessModBlocks.cdm, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_shovel), new Object[] {"#", "S", "S", '#', TeamMadnessModBlocks.cdm, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_hoe), new Object[] {"##", "S ", "S ", '#', TeamMadnessModBlocks.cdm, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_hoe), new Object[] {"##", " S", " S", '#', TeamMadnessModBlocks.cdm, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_helmet), new Object[] {"###", "# #", '#', TeamMadnessModBlocks.cdm}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_chestplate), new Object[] {"# #", "###", "###", '#', TeamMadnessModBlocks.cdm}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_leggings), new Object[] {"###", "# #", "# #", '#', TeamMadnessModBlocks.cdm}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.darkmatter_boots), new Object[] {"# #", "# #", '#', TeamMadnessModBlocks.cdm}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_ingot), new Object[] {"##", "##", '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModBlocks.cdm), new Object[] {"##", "##", '#', TeamMadnessModItems.dark_matter}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_helmet), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_helmet, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_chestplate), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_chestplate, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_leggings), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_leggings, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_boots), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_boots, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_sword), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_sword, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_pickaxe), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_pickaxe, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_axe), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_axe, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_shovel), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_shovel, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addRecipe(new ItemStack(TeamMadnessModItems.madness_hoe), new Object[] {" # ", "#M#", " # ", 'M', TeamMadnessModItems.darkmatter_hoe, '#', TeamMadnessModItems.madness_shard}); GameRegistry.addSmelting(TeamMadnessModBlocks.escapemc_ore, new ItemStack(TeamMadnessModItems.escapemc_ingot), 1.0F); GameRegistry.addSmelting(TeamMadnessModBlocks.mushrromstew_ore, new ItemStack(TeamMadnessModItems.mushrromstew_ingot), 1.0F); GameRegistry.addSmelting(TeamMadnessModBlocks.epicbudder22_ore, new ItemStack(TeamMadnessModItems.epicbudder22_ingot), 1.0F); GameRegistry.addSmelting(TeamMadnessModBlocks.jonahjoe2002_ore, new ItemStack(TeamMadnessModItems.jonahjoe2002_ingot), 1.0F); GameRegistry.addSmelting(TeamMadnessModBlocks.madness_ore, new ItemStack(TeamMadnessModItems.madness_shard), 1.0F); } } Can anyone provide me with help? I am getting annoyed at this, and it is only these select few crafting recipes that do not work.
  17. Ernio, I fixed my problem. I accidentally renamed the thing that reads the Common Proxy to Server Proxy, and I forgot to change it back at some point. Silly me......
  18. Ok, so right now I have a Common Proxy, and a Client Proxy. The Client Proxy "extends Common Proxy" What must I do here? Rename "Common Proxy" to "Server Proxy" ?
  19. Ok, so I am having some trouble with my mod on a server. I worked a while ago when I had only like 1 item, but now I am done with my mod and nothing works. It just crashes now. Here is my error I can provide the Eclipse error as well, but I think this one may be the only one needed. This is 1.8*
  20. Well, I am not sure about the turning part, but the part about the upside-down-ness may be able to be fixed if in the texture itself, you may want to flip it 180°, and therefore solving that
  21. I couldn't get it at all so I had deleted it. Nothing was going for me, and the errors were not making sense
  22. Wait, so to get this straight you are making a set of armor? Or what exactly are you making?
  23. Ok, so for my mod I am trying to add a purse (that has 4 slots, almost like a backpack in a backpack mod, and when left clicked opens the GUI). Could someone help me out with this please because the only video (series) I could find I got completely lost in and would not work for me. Thanks in advance
  24. Two things, where did I make the ItemStack with the null item (does it say?), and how do I use spoilers? Thanks in advance
  25. Ok, so i removed my crafting recipes to test if my mod worked, and it did. i loaded the game again, and then this happened Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [10:18:39] [main/INFO] [GradleStart]: Extra: [] [10:18:39] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/school/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [10:18:39] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [10:18:39] [main/INFO] [FML]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading [10:18:39] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_65, running on Mac OS X:x86_64:10.11.1, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre [10:18:39] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [10:18:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [10:18:39] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [10:18:39] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [10:18:39] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [10:18:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [10:18:40] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [10:18:40] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [10:18:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [10:18:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [10:18:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:18:41] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [10:18:41] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [10:18:41] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [10:18:42] [main/INFO]: Setting user: Player414 [10:18:44] [Client thread/INFO]: LWJGL Version: 2.9.1 [10:18:44] [Client thread/INFO] [sTDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Oops. Time: 1/28/16 10:18 AM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Mac OS X (x86_64) version 10.11.1 Java Version: 1.8.0_65, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 789373616 bytes (752 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'Intel Inc.' Version: '2.1 INTEL-10.0.40' Renderer: 'Intel HD Graphics 3000 OpenGL Engine' [10:18:44] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [10:18:44] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1558 Initialized [10:18:44] [Client thread/INFO] [FML]: Replaced 183 ore recipies [10:18:45] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [10:18:45] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [10:18:45] [Client thread/INFO] [FML]: Searching /Users/school/Desktop/TeamMadnessMod/eclipse/mods for mods [10:18:51] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [10:18:51] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, tmm] at CLIENT [10:18:51] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, tmm] at SERVER [10:18:52] [Client thread/ERROR] [tmm]: The mod tmm appears to have an invalid event annotation EventHandler. This annotation can only apply to methods with recognized event arguments - it will not be called [10:18:52] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TeamMadness Mod [10:18:52] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [10:18:52] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [10:18:52] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [10:18:52] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [10:18:52] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [10:18:52] [Client thread/INFO] [FML]: Applying holder lookups [10:18:52] [Client thread/INFO] [FML]: Holder lookups applied [10:18:52] [Client thread/INFO] [FML]: Injecting itemstacks [10:18:52] [Client thread/INFO] [FML]: Itemstack injection complete [10:18:52] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:18:52] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [10:18:52] [Thread-7/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [10:18:52] [Thread-7/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2016-01-28 10:18:52.835 java[10873:1847491] 10:18:52.834 WARNING: 140: This application, or a library it uses, is using the deprecated Carbon Component Manager for hosting Audio Units. Support for this will be removed in a future release. Also, this makes the host incompatible with version 3 audio units. Please transition to the API's in AudioComponent.h. [10:18:52] [Thread-7/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [10:18:53] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:18:53] [sound Library Loader/INFO]: Sound engine started [10:18:53] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas [10:18:53] [Client thread/INFO]: Created: 16x16 textures/items-atlas [10:18:53] [Client thread/INFO] [FML]: Injecting itemstacks [10:18:53] [Client thread/INFO] [FML]: Itemstack injection complete [10:18:53] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [10:18:53] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TeamMadness Mod [10:18:54] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [10:18:54] [Client thread/INFO]: Created: 256x256 textures/items-atlas [10:18:54] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:18:54] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [10:18:54] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [10:18:54] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:18:54] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:18:54] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [10:18:54] [Thread-9/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [10:18:54] [Thread-9/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [10:18:54] [Thread-9/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [10:18:55] [Client thread/ERROR]: ########## GL ERROR ########## [10:18:55] [Client thread/ERROR]: @ Post startup [10:18:55] [Client thread/ERROR]: 1281: Invalid value [10:18:55] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:18:55] [sound Library Loader/INFO]: Sound engine started [10:19:00] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [10:19:00] [server thread/INFO]: Generating keypair [10:19:00] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [10:19:01] [server thread/INFO] [FML]: Applying holder lookups [10:19:01] [server thread/INFO] [FML]: Holder lookups applied [10:19:01] [server thread/INFO] [FML]: Loading dimension 0 (Crafting Test) (net.minecraft.server.integrated.IntegratedServer@28e87b70) [10:19:01] [server thread/INFO] [FML]: Loading dimension 1 (Crafting Test) (net.minecraft.server.integrated.IntegratedServer@28e87b70) [10:19:01] [server thread/INFO] [FML]: Loading dimension -1 (Crafting Test) (net.minecraft.server.integrated.IntegratedServer@28e87b70) [10:19:01] [server thread/INFO]: Preparing start region for level 0 [10:19:02] [server thread/INFO]: Preparing spawn area: 38% [10:19:03] [server thread/INFO]: Changing view distance to 12, from 10 [10:19:05] [server thread/INFO]: Stopping server [10:19:05] [server thread/INFO]: Saving players [10:19:05] [server thread/INFO]: Saving worlds [10:19:05] [server thread/INFO]: Saving chunks for level 'Crafting Test'/Overworld [10:19:05] [server thread/INFO]: Saving chunks for level 'Crafting Test'/Nether [10:19:05] [server thread/INFO]: Saving chunks for level 'Crafting Test'/The End [10:19:05] [server thread/INFO] [FML]: Unloading dimension 0 [10:19:05] [server thread/INFO] [FML]: Unloading dimension -1 [10:19:05] [server thread/INFO] [FML]: Unloading dimension 1 [10:19:05] [server thread/INFO] [FML]: Applying holder lookups [10:19:05] [server thread/INFO] [FML]: Holder lookups applied [10:19:06] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [10:19:06] [server thread/INFO]: Generating keypair [10:19:06] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [10:19:06] [server thread/INFO] [FML]: Applying holder lookups [10:19:06] [server thread/INFO] [FML]: Holder lookups applied [10:19:06] [server thread/INFO] [FML]: Loading dimension 0 (Crafting Test) (net.minecraft.server.integrated.IntegratedServer@3d165bf9) [10:19:06] [server thread/INFO] [FML]: Loading dimension 1 (Crafting Test) (net.minecraft.server.integrated.IntegratedServer@3d165bf9) [10:19:06] [server thread/INFO] [FML]: Loading dimension -1 (Crafting Test) (net.minecraft.server.integrated.IntegratedServer@3d165bf9) [10:19:06] [server thread/INFO]: Preparing start region for level 0 [10:19:06] [server thread/INFO]: Changing view distance to 12, from 10 [10:19:07] [Netty Client IO #1/INFO] [FML]: Server protocol version 2 [10:19:07] [Netty IO #3/INFO] [FML]: Client protocol version 2 [10:19:07] [Netty IO #3/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [10:19:07] [Netty IO #3/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [10:19:07] [Netty Client IO #1/INFO] [FML]: Attempting connection with missing mods [] at SERVER [10:19:07] [server thread/INFO] [FML]: [server thread] Server side modded connection established [10:19:07] [server thread/INFO]: Player414[local:E:a8178965] logged in with entity id 868 at (610.5, 68.0, 181.5) [10:19:07] [server thread/INFO]: Player414 joined the game [10:19:07] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [10:19:10] [server thread/INFO]: Saving and pausing game... [10:19:10] [server thread/INFO]: Saving chunks for level 'Crafting Test'/Overworld [10:19:10] [server thread/INFO]: Saving chunks for level 'Crafting Test'/Nether [10:19:10] [server thread/INFO]: Saving chunks for level 'Crafting Test'/The End [10:19:12] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TeamMadness Mod [10:19:12] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [10:19:12] [Client thread/INFO]: Created: 256x256 textures/items-atlas [10:19:13] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:19:13] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... AL lib: (WW) FreeDevice: (0x7fd882475a00) Deleting 3 Buffer(s) [10:19:13] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [10:19:13] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:19:13] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:19:13] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [10:19:13] [Thread-14/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [10:19:13] [Thread-14/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2016-01-28 10:19:13.294 java[10873:1848022] 10:19:13.294 WARNING: 140: This application, or a library it uses, is using the deprecated Carbon Component Manager for hosting Audio Units. Support for this will be removed in a future release. Also, this makes the host incompatible with version 3 audio units. Please transition to the API's in AudioComponent.h. [10:19:13] [Thread-14/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [10:19:13] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [10:19:13] [sound Library Loader/INFO]: Sound engine started [10:19:15] [server thread/INFO]: Player414 has just earned the achievement [Taking Inventory] [10:19:15] [Client thread/INFO]: [CHAT] Player414 has just earned the achievement [Taking Inventory] [10:19:21] [Client thread/INFO]: [CHAT] minecraft:record_13, minecraft:cauldron, minecraft:heavy_weighted_pressure_plate, minecraft:wooden_pickaxe, minecraft:cooked_porkchop, minecraft:chainmail_leggings, minecraft:bread, minecraft:emerald_block, minecraft:birch_stairs, minecraft:melon_block, minecraft:iron_block, minecraft:item_frame, minecraft:comparator, minecraft:coal, minecraft:sapling, minecraft:compass, minecraft:diamond_shovel, minecraft:stone, minecraft:flowing_lava, minecraft:wheat_seeds, minecraft:diamond_horse_armor, minecraft:jukebox, minecraft:carrot_on_a_stick, minecraft:record_ward, minecraft:diamond_leggings, minecraft:gold_ingot, minecraft:cake, minecraft:record_mall, minecraft:diamond_boots, minecraft:cooked_beef, minecraft:writable_book, minecraft:flowing_water, minecraft:brick, minecraft:feather, minecraft:wool, minecraft:porkchop, minecraft:iron_horse_armor, minecraft:netherrack, minecraft:log2, minecraft:name_tag, minecraft:torch, minecraft:redstone_ore, minecraft:furnace, minecraft:fire_charge, minecraft:spruce_stairs, minecraft:stone_stairs, minecraft:ice, minecraft:reeds, minecraft:gunpowder, minecraft:double_plant, minecraft:carrot, minecraft:bucket, minecraft:golden_sword, minecraft:minecart, minecraft:brick_block, minecraft:nether_brick, minecraft:iron_helmet, minecraft:enchanting_table, minecraft:diamond, minecraft:stonebrick, minecraft:vine, minecraft:log, minecraft:repeater, minecraft:coal_block, minecraft:stone_button, minecraft:gold_block, minecraft:golden_horse_armor, minecraft:glass_bottle, minecraft:quartz_block, minecraft:end_portal, minecraft:fish, minecraft:quartz_ore, minecraft:stained_hardened_clay, minecraft:command_block, minecraft:bowl, minecraft:waterlily, minecraft:dark_oak_stairs, minecraft:oak_stairs, minecraft:grass, minecraft:mycelium, minecraft:cobblestone, minecraft:arrow, minecraft:quartz_stairs, minecraft:ender_chest, minecraft:quartz, minecraft:dirt, minecraft:bow, minecraft:anvil, minecraft:lava, minecraft:diamond_hoe, minecraft:lit_furnace, minecraft:diamond_block, minecraft:filled_map, minecraft:jungle_stairs, minecraft:melon, minecraft:chest_minecart, minecraft:stone_pressure_plate, minecraft:gold_ore, minecraft:golden_boots, minecraft:wooden_shovel, minecraft:hopper, minecraft:enchanted_book, minecraft:spider_eye, minecraft:baked_potato, minecraft:melon_seeds, minecraft:brown_mushroom, minecraft:yellow_flower, minecraft:redstone_torch, minecraft:hopper_minecart, minecraft:double_wooden_slab, minecraft:flint_and_steel, minecraft:string, minecraft:leaves2, minecraft:farmland, minecraft:nether_star, minecraft:brewing_stand, minecraft:glowstone, minecraft:apple, minecraft:boat, minecraft:record_wait, minecraft:potato, minecraft:pumpkin, minecraft:dragon_egg, minecraft:blaze_rod, minecraft:sandstone, minecraft:detector_rail, minecraft:light_weighted_pressure_plate, minecraft:golden_hoe, minecraft:painting, minecraft:stone_hoe, minecraft:golden_shovel, minecraft:iron_chestplate, minecraft:record_stal, minecraft:skull, minecraft:lava_bucket, minecraft:leather_chestplate, minecraft:stone_pickaxe, minecraft:record_mellohi, minecraft:cookie, minecraft:diamond_pickaxe, minecraft:cactus, minecraft:lapis_ore, minecraft:cooked_fished, minecraft:redstone_block, minecraft:sandstone_stairs, minecraft:blaze_powder, minecraft:diamond_helmet, minecraft:command_block_minecart, minecraft:clock, minecraft:iron_leggings, minecraft:wooden_hoe, minecraft:slime_ball, minecraft:rotten_flesh, minecraft:saddle, minecraft:acacia_stairs, minecraft:record_blocks, minecraft:potion, minecraft:experience_bottle, minecraft:redstone, minecraft:netherbrick, minecraft:brick_stairs, minecraft:mushroom_stew, minecraft:map, minecraft:daylight_detector, minecraft:water_bucket, minecraft:lead, minecraft:chicken, minecraft:piston, minecraft:snow_layer, minecraft:firework_charge, minecraft:nether_wart, minecraft:red_mushroom, minecraft:chest, minecraft:fishing_rod, minecraft:iron_sword, minecraft:sticky_piston, minecraft:coal_ore, minecraft:golden_pickaxe, minecraft:bedrock, minecraft:pumpkin_pie, minecraft:iron_hoe, minecraft:record_11, minecraft:gravel, minecraft:crafting_table, minecraft:wheat, minecraft:wooden_pressure_plate, minecraft:pumpkin_seeds, minecraft:snowball, minecraft:iron_ingot, minecraft:lapis_block, minecraft:lever, minecraft:bone, minecraft:paper, minecraft:chainmail_chestplate, minecraft:leather, minecraft:end_portal_frame, minecraft:diamond_axe, minecraft:sign, minecraft:chainmail_helmet, minecraft:carrots, minecraft:noteblock, minecraft:glass, minecraft:fence, minecraft:clay_ball, minecraft:tallgrass, minecraft:milk_bucket, minecraft:packed_ice, minecraft:trapped_chest, minecraft:red_mushroom_block, minecraft:diamond_sword, minecraft:tnt_minecart, minecraft:flower_pot, minecraft:brown_mushroom_block, minecraft:emerald, minecraft:beacon, minecraft:gold_nugget, minecraft:red_flower, minecraft:golden_helmet, minecraft:dropper, minecraft:glass_pane, minecraft:leather_leggings, minecraft:iron_shovel, minecraft:book, minecraft:fire, minecraft:golden_apple, minecraft:dye, minecraft:leather_boots, minecraft:wooden_sword, minecraft:soul_sand, minecraft:diamond_ore, minecraft:deadbush, minecraft:fireworks, minecraft:speckled_melon, minecraft:bookshelf, minecraft:magma_cream, minecraft:redstone_lamp, minecraft:sand, minecraft:ender_pearl, minecraft:furnace_minecart, minecraft:iron_door, minecraft:snow, minecraft:wooden_door, minecraft:stone_brick_stairs, minecraft:portal, minecraft:chainmail_boots, minecraft:iron_boots, minecraft:golden_axe, minecraft:fence_gate, minecraft:ghast_tear, minecraft:obsidian, minecraft:diamond_chestplate, minecraft:ender_eye, minecraft:iron_pickaxe, minecraft:clay, minecraft:mossy_cobblestone, minecraft:stone_axe, minecraft:golden_carrot, minecraft:lit_pumpkin, minecraft:stick, minecraft:spawn_egg, minecraft:iron_ore, minecraft:web, minecraft:sugar, minecraft:golden_chestplate, minecraft:hay_block, minecraft:poisonous_potato, minecraft:nether_brick_stairs, minecraft:cooked_chicken, minecraft:wooden_button, minecraft:egg, minecraft:double_stone_slab, minecraft:wooden_axe, minecraft:tnt, minecraft:stone_slab, minecraft:potatoes, minecraft:emerald_ore, minecraft:beef, minecraft:record_cat, minecraft:leaves, minecraft:tripwire_hook, minecraft:fermented_spider_eye, minecraft:activator_rail, minecraft:trapdoor, minecraft:record_far, minecraft:leather_helmet, minecraft:written_book, minecraft:water, minecraft:golden_rail, minecraft:shears, minecraft:golden_leggings, minecraft:carpet, minecraft:flint, minecraft:nether_brick_fence, minecraft:record_strad, minecraft:planks, minecraft:glowstone_dust, minecraft:dispenser, minecraft:record_chirp, minecraft:hardened_clay, minecraft:bed, minecraft:stained_glass_pane, minecraft:sponge, minecraft:cocoa, minecraft:iron_bars, minecraft:stained_glass, minecraft:stone_sword, minecraft:rail, minecraft:monster_egg, minecraft:mob_spawner, minecraft:iron_axe, minecraft:wooden_slab, minecraft:stone_shovel, minecraft:cobblestone_wall, minecraft:ladder, minecraft:end_stone [10:19:21] [Client thread/INFO]: [CHAT] minecraft:record_13, minecraft:cauldron, minecraft:heavy_weighted_pressure_plate, minecraft:wooden_pickaxe, minecraft:cooked_porkchop, minecraft:chainmail_leggings, minecraft:bread, minecraft:emerald_block, minecraft:birch_stairs, minecraft:melon_block, minecraft:iron_block, minecraft:item_frame, minecraft:comparator, minecraft:coal, minecraft:sapling, minecraft:compass, minecraft:diamond_shovel, minecraft:stone, minecraft:flowing_lava, minecraft:wheat_seeds, minecraft:diamond_horse_armor, minecraft:jukebox, minecraft:carrot_on_a_stick, minecraft:record_ward, minecraft:diamond_leggings, minecraft:gold_ingot, minecraft:cake, minecraft:record_mall, minecraft:diamond_boots, minecraft:cooked_beef, minecraft:writable_book, minecraft:flowing_water, minecraft:brick, minecraft:feather, minecraft:wool, minecraft:porkchop, minecraft:iron_horse_armor, minecraft:netherrack, minecraft:log2, minecraft:name_tag, minecraft:torch, minecraft:redstone_ore, minecraft:furnace, minecraft:fire_charge, minecraft:spruce_stairs, minecraft:stone_stairs, minecraft:ice, minecraft:reeds, minecraft:gunpowder, minecraft:double_plant, minecraft:carrot, minecraft:bucket, minecraft:golden_sword, minecraft:minecart, minecraft:brick_block, minecraft:nether_brick, minecraft:iron_helmet, minecraft:enchanting_table, minecraft:diamond, minecraft:stonebrick, minecraft:vine, minecraft:log, minecraft:repeater, minecraft:coal_block, minecraft:stone_button, minecraft:gold_block, minecraft:golden_horse_armor, minecraft:glass_bottle, minecraft:quartz_block, minecraft:end_portal, minecraft:fish, minecraft:quartz_ore, minecraft:stained_hardened_clay, minecraft:command_block, minecraft:bowl, minecraft:waterlily, minecraft:dark_oak_stairs, minecraft:oak_stairs, minecraft:grass, minecraft:mycelium, minecraft:cobblestone, minecraft:arrow, minecraft:quartz_stairs, minecraft:ender_chest, minecraft:quartz, minecraft:dirt, minecraft:bow, minecraft:anvil, minecraft:lava, minecraft:diamond_hoe, minecraft:lit_furnace, minecraft:diamond_block, minecraft:filled_map, minecraft:jungle_stairs, minecraft:melon, minecraft:chest_minecart, minecraft:stone_pressure_plate, minecraft:gold_ore, minecraft:golden_boots, minecraft:wooden_shovel, minecraft:hopper, minecraft:enchanted_book, minecraft:spider_eye, minecraft:baked_potato, minecraft:melon_seeds, minecraft:brown_mushroom, minecraft:yellow_flower, minecraft:redstone_torch, minecraft:hopper_minecart, minecraft:double_wooden_slab, minecraft:flint_and_steel, minecraft:string, minecraft:leaves2, minecraft:farmland, minecraft:nether_star, minecraft:brewing_stand, minecraft:glowstone, minecraft:apple, minecraft:boat, minecraft:record_wait, minecraft:potato, minecraft:pumpkin, minecraft:dragon_egg, minecraft:blaze_rod, minecraft:sandstone, minecraft:detector_rail, minecraft:light_weighted_pressure_plate, minecraft:golden_hoe, minecraft:painting, minecraft:stone_hoe, minecraft:golden_shovel, minecraft:iron_chestplate, minecraft:record_stal, minecraft:skull, minecraft:lava_bucket, minecraft:leather_chestplate, minecraft:stone_pickaxe, minecraft:record_mellohi, minecraft:cookie, minecraft:diamond_pickaxe, minecraft:cactus, minecraft:lapis_ore, minecraft:cooked_fished, minecraft:redstone_block, minecraft:sandstone_stairs, minecraft:blaze_powder, minecraft:diamond_helmet, minecraft:command_block_minecart, minecraft:clock, minecraft:iron_leggings, minecraft:wooden_hoe, minecraft:slime_ball, minecraft:rotten_flesh, minecraft:saddle, minecraft:acacia_stairs, minecraft:record_blocks, minecraft:potion, minecraft:experience_bottle, minecraft:redstone, minecraft:netherbrick, minecraft:brick_stairs, minecraft:mushroom_stew, minecraft:map, minecraft:daylight_detector, minecraft:water_bucket, minecraft:lead, minecraft:chicken, minecraft:piston, minecraft:snow_layer, minecraft:firework_charge, minecraft:nether_wart, minecraft:red_mushroom, minecraft:chest, minecraft:fishing_rod, minecraft:iron_sword, minecraft:sticky_piston, minecraft:coal_ore, minecraft:golden_pickaxe, minecraft:bedrock, minecraft:pumpkin_pie, minecraft:iron_hoe, minecraft:record_11, minecraft:gravel, minecraft:crafting_table, minecraft:wheat, minecraft:wooden_pressure_plate, minecraft:pumpkin_seeds, minecraft:snowball, minecraft:iron_ingot, minecraft:lapis_block, minecraft:lever, minecraft:bone, minecraft:paper, minecraft:chainmail_chestplate, minecraft:leather, minecraft:end_portal_frame, minecraft:diamond_axe, minecraft:sign, minecraft:chainmail_helmet, minecraft:carrots, minecraft:noteblock, minecraft:glass, minecraft:fence, minecraft:clay_ball, minecraft:tallgrass, minecraft:milk_bucket, minecraft:packed_ice, minecraft:trapped_chest, minecraft:red_mushroom_block, minecraft:diamond_sword, minecraft:tnt_minecart, minecraft:flower_pot, minecraft:brown_mushroom_block, minecraft:emerald, minecraft:beacon, minecraft:gold_nugget, minecraft:red_flower, minecraft:golden_helmet, minecraft:dropper, minecraft:glass_pane, minecraft:leather_leggings, minecraft:iron_shovel, minecraft:book, minecraft:fire, minecraft:golden_apple, minecraft:dye, minecraft:leather_boots, minecraft:wooden_sword, minecraft:soul_sand, minecraft:diamond_ore, minecraft:deadbush, minecraft:fireworks, minecraft:speckled_melon, minecraft:bookshelf, minecraft:magma_cream, minecraft:redstone_lamp, minecraft:sand, minecraft:ender_pearl, minecraft:furnace_minecart, minecraft:iron_door, minecraft:snow, minecraft:wooden_door, minecraft:stone_brick_stairs, minecraft:portal, minecraft:chainmail_boots, minecraft:iron_boots, minecraft:golden_axe, minecraft:fence_gate, minecraft:ghast_tear, minecraft:obsidian, minecraft:diamond_chestplate, minecraft:ender_eye, minecraft:iron_pickaxe, minecraft:clay, minecraft:mossy_cobblestone, minecraft:stone_axe, minecraft:golden_carrot, minecraft:lit_pumpkin, minecraft:stick, minecraft:spawn_egg, minecraft:iron_ore, minecraft:web, minecraft:sugar, minecraft:golden_chestplate, minecraft:hay_block, minecraft:poisonous_potato, minecraft:nether_brick_stairs, minecraft:cooked_chicken, minecraft:wooden_button, minecraft:egg, minecraft:double_stone_slab, minecraft:wooden_axe, minecraft:tnt, minecraft:stone_slab, minecraft:potatoes, minecraft:emerald_ore, minecraft:beef, minecraft:record_cat, minecraft:leaves, minecraft:tripwire_hook, minecraft:fermented_spider_eye, minecraft:activator_rail, minecraft:trapdoor, minecraft:record_far, minecraft:leather_helmet, minecraft:written_book, minecraft:water, minecraft:golden_rail, minecraft:shears, minecraft:golden_leggings, minecraft:carpet, minecraft:flint, minecraft:nether_brick_fence, minecraft:record_strad, minecraft:planks, minecraft:glowstone_dust, minecraft:dispenser, minecraft:record_chirp, minecraft:hardened_clay, minecraft:bed, minecraft:stained_glass_pane, minecraft:sponge, minecraft:cocoa, minecraft:iron_bars, minecraft:stained_glass, minecraft:stone_sword, minecraft:rail, minecraft:monster_egg, minecraft:mob_spawner, minecraft:iron_axe, minecraft:wooden_slab, minecraft:stone_shovel, minecraft:cobblestone_wall, minecraft:ladder, minecraft:end_stone [10:19:37] [Client thread/INFO]: [CHAT] /give <player> <item> [amount] [data] [dataTag] [10:19:39] [server thread/INFO]: Stopping server [10:19:39] [server thread/INFO]: Saving players [10:19:39] [server thread/INFO]: Saving worlds [10:19:39] [server thread/INFO]: Saving chunks for level 'Crafting Test'/Overworld [10:19:39] [server thread/INFO]: Saving chunks for level 'Crafting Test'/Nether [10:19:39] [server thread/INFO]: Saving chunks for level 'Crafting Test'/The End [10:19:40] [server thread/INFO] [FML]: Unloading dimension 0 [10:19:40] [server thread/INFO] [FML]: Unloading dimension -1 [10:19:40] [server thread/INFO] [FML]: Unloading dimension 1 [10:19:40] [server thread/INFO] [FML]: Applying holder lookups [10:19:40] [server thread/INFO] [FML]: Holder lookups applied [10:19:40] [Client thread/FATAL]: Reported exception thrown! net.minecraft.util.ReportedException: Rendering item at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1168) ~[EntityRenderer.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067) ~[Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_65] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_65] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_65] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_65] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.NullPointerException at net.minecraft.item.ItemStack.getItemDamage(ItemStack.java:265) ~[itemStack.class:?] at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:419) ~[RenderItem.class:?] at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:585) ~[RenderItem.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.func_147051_a(GuiContainerCreative.java:968) ~[GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:795) ~[GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:93) ~[GuiContainer.class:?] at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) ~[inventoryEffectRenderer.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) ~[GuiContainerCreative.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) ~[EntityRenderer.class:?] ... 11 more [10:19:40] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Shall we play a game? Time: 1/28/16 10:19 AM Description: Rendering item java.lang.NullPointerException: Rendering item at net.minecraft.item.ItemStack.getItemDamage(ItemStack.java:265) at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:419) at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:585) at net.minecraft.client.gui.inventory.GuiContainerCreative.func_147051_a(GuiContainerCreative.java:968) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:795) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:93) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067) at net.minecraft.client.Minecraft.run(Minecraft.java:962) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at net.minecraft.item.ItemStack.getItemDamage(ItemStack.java:265) at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:419) -- Item being rendered -- Details: Item Type: null Item Aux: ~~ERROR~~ NullPointerException: null Item NBT: null Item Foil: ~~ERROR~~ NullPointerException: null Stacktrace: at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:585) at net.minecraft.client.gui.inventory.GuiContainerCreative.func_147051_a(GuiContainerCreative.java:968) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:795) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:93) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) -- Screen render details -- Details: Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative Mouse location: Scaled: (302, 12). Absolute: (605, 454) Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2 -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityClientPlayerMP['Player414'/868, l='MpServer', x=610.59, y=69.62, z=184.60]] Chunk stats: MultiplayerChunkCache: 589, 589 Level seed: 0 Level generator: ID 00 - default, ver 1. Features enabled: false Level generator options: Level spawn location: World: (603,64,182), Chunk: (at 11,4,6 in 37,11; contains blocks 592,0,176 to 607,255,191), Region: (1,0; contains chunks 32,0 to 63,31, blocks 512,0,0 to 1023,255,511) Level time: 1658 game time, 1658 day time Level dimension: 0 Level storage version: 0x00000 - Unknown? Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false Forced entities: 148 total; [EntitySkeleton['Skeleton'/518, l='MpServer', x=538.50, y=19.00, z=124.50], EntitySkeleton['Skeleton'/519, l='MpServer', x=536.69, y=12.00, z=125.69], EntitySkeleton['Skeleton'/520, l='MpServer', x=533.50, y=22.00, z=133.22], EntityCreeper['Creeper'/777, l='MpServer', x=679.00, y=42.00, z=109.50], EntitySkeleton['Skeleton'/521, l='MpServer', x=533.50, y=22.00, z=132.31], EntityZombie['Zombie'/778, l='MpServer', x=673.53, y=14.69, z=203.26], EntityCreeper['Creeper'/522, l='MpServer', x=536.38, y=20.00, z=132.53], EntityCreeper['Creeper'/779, l='MpServer', x=680.53, y=19.00, z=193.56], EntityCreeper['Creeper'/780, l='MpServer', x=685.50, y=19.00, z=194.50], EntityZombie['Zombie'/781, l='MpServer', x=677.56, y=32.00, z=193.97], EntityZombie['Zombie'/782, l='MpServer', x=673.09, y=32.00, z=192.59], EntitySkeleton['Skeleton'/783, l='MpServer', x=675.94, y=32.00, z=195.69], EntitySkeleton['Skeleton'/784, l='MpServer', x=679.22, y=32.00, z=195.44], EntitySkeleton['Skeleton'/528, l='MpServer', x=538.50, y=13.00, z=202.88], EntitySquid['Squid'/785, l='MpServer', x=671.22, y=55.34, z=241.63], EntityBat['Bat'/786, l='MpServer', x=677.47, y=16.10, z=248.35], EntitySkeleton['Skeleton'/790, l='MpServer', x=674.50, y=40.00, z=261.50], EntitySquid['Squid'/546, l='MpServer', x=559.44, y=47.00, z=156.50], EntitySquid['Squid'/547, l='MpServer', x=553.44, y=49.28, z=151.72], EntitySquid['Squid'/548, l='MpServer', x=558.50, y=47.34, z=170.50], EntityCreeper['Creeper'/810, l='MpServer', x=690.44, y=30.00, z=187.97], EntitySquid['Squid'/555, l='MpServer', x=568.91, y=47.00, z=162.81], EntityZombie['Zombie'/811, l='MpServer', x=690.56, y=19.00, z=201.09], EntitySquid['Squid'/568, l='MpServer', x=579.28, y=56.19, z=139.22], EntitySquid['Squid'/569, l='MpServer', x=586.50, y=57.13, z=137.81], EntitySquid['Squid'/570, l='MpServer', x=587.03, y=54.00, z=156.69], EntitySquid['Squid'/571, l='MpServer', x=579.38, y=52.34, z=161.81], EntitySquid['Squid'/572, l='MpServer', x=590.16, y=51.34, z=148.28], EntitySquid['Squid'/590, l='MpServer', x=596.97, y=55.81, z=138.53], EntitySquid['Squid'/591, l='MpServer', x=594.34, y=54.00, z=144.91], EntitySquid['Squid'/592, l='MpServer', x=599.38, y=57.81, z=144.66], EntitySquid['Squid'/593, l='MpServer', x=594.50, y=56.00, z=150.38], EntitySquid['Squid'/595, l='MpServer', x=605.75, y=50.88, z=244.06], EntityZombie['Zombie'/1109, l='MpServer', x=535.41, y=33.00, z=133.13], EntityBat['Bat'/606, l='MpServer', x=620.69, y=26.17, z=127.69], EntitySquid['Squid'/607, l='MpServer', x=616.97, y=51.34, z=123.50], EntitySquid['Squid'/608, l='MpServer', x=622.91, y=51.38, z=126.25], EntitySquid['Squid'/609, l='MpServer', x=626.13, y=48.00, z=129.59], EntitySquid['Squid'/610, l='MpServer', x=608.06, y=49.38, z=131.50], EntitySquid['Squid'/611, l='MpServer', x=617.97, y=49.78, z=135.50], EntitySquid['Squid'/612, l='MpServer', x=619.50, y=48.31, z=132.72], EntitySquid['Squid'/613, l='MpServer', x=621.25, y=49.34, z=135.88], EntitySquid['Squid'/614, l='MpServer', x=627.31, y=49.66, z=130.97], EntitySquid['Squid'/615, l='MpServer', x=613.81, y=58.25, z=129.03], EntityClientPlayerMP['Player414'/868, l='MpServer', x=610.59, y=69.62, z=184.60], EntitySquid['Squid'/616, l='MpServer', x=627.44, y=48.00, z=134.59], EntitySquid['Squid'/624, l='MpServer', x=623.13, y=49.19, z=125.91], EntitySquid['Squid'/625, l='MpServer', x=624.50, y=50.38, z=120.50], EntitySquid['Squid'/626, l='MpServer', x=625.72, y=53.34, z=125.44], EntitySquid['Squid'/627, l='MpServer', x=624.50, y=48.34, z=123.50], EntityZombie['Zombie'/628, l='MpServer', x=625.97, y=24.00, z=129.31], EntitySkeleton['Skeleton'/629, l='MpServer', x=625.59, y=24.00, z=130.31], EntitySquid['Squid'/630, l='MpServer', x=634.94, y=51.31, z=131.88], EntitySquid['Squid'/631, l='MpServer', x=638.50, y=49.78, z=134.50], EntitySquid['Squid'/632, l='MpServer', x=631.31, y=47.00, z=139.25], EntitySquid['Squid'/633, l='MpServer', x=625.50, y=48.38, z=140.53], EntitySquid['Squid'/634, l='MpServer', x=634.03, y=47.34, z=141.53], EntitySquid['Squid'/635, l='MpServer', x=627.50, y=49.00, z=156.50], EntitySquid['Squid'/636, l='MpServer', x=627.50, y=48.03, z=153.81], EntitySquid['Squid'/637, l='MpServer', x=630.25, y=49.09, z=149.41], EntitySquid['Squid'/638, l='MpServer', x=632.50, y=48.00, z=159.41], EntitySquid['Squid'/639, l='MpServer', x=626.91, y=48.00, z=150.81], EntitySquid['Squid'/640, l='MpServer', x=635.50, y=51.22, z=160.25], EntityCreeper['Creeper'/641, l='MpServer', x=639.38, y=28.00, z=169.53], EntitySpider['Spider'/642, l='MpServer', x=638.72, y=28.00, z=167.72], EntityBat['Bat'/643, l='MpServer', x=649.40, y=28.26, z=173.50], EntitySquid['Squid'/644, l='MpServer', x=641.31, y=47.00, z=184.84], EntitySquid['Squid'/645, l='MpServer', x=642.47, y=47.78, z=179.63], EntitySquid['Squid'/646, l='MpServer', x=635.19, y=47.00, z=201.22], EntitySquid['Squid'/647, l='MpServer', x=638.34, y=47.38, z=193.66], EntitySpider['Spider'/648, l='MpServer', x=629.38, y=33.00, z=225.66], EntitySkeleton['Skeleton'/650, l='MpServer', x=637.47, y=30.00, z=257.31], EntitySkeleton['Skeleton'/1163, l='MpServer', x=685.50, y=21.00, z=228.50], EntitySkeleton['Skeleton'/1164, l='MpServer', x=686.50, y=21.00, z=228.50], EntityZombie['Zombie'/1165, l='MpServer', x=684.50, y=19.00, z=196.50], EntityZombie['Zombie'/1166, l='MpServer', x=681.50, y=19.00, z=193.38], EntityZombie['Zombie'/1167, l='MpServer', x=683.50, y=19.00, z=196.50], EntitySkeleton['Skeleton'/1169, l='MpServer', x=683.88, y=19.00, z=198.66], EntitySkeleton['Skeleton'/1170, l='MpServer', x=684.50, y=19.00, z=200.50], EntityChicken['Chicken'/671, l='MpServer', x=650.59, y=63.00, z=126.44], EntityChicken['Chicken'/672, l='MpServer', x=654.16, y=64.00, z=125.81], EntityChicken['Chicken'/673, l='MpServer', x=661.41, y=65.00, z=114.56], EntityChicken['Chicken'/674, l='MpServer', x=652.56, y=62.32, z=138.44], EntitySquid['Squid'/675, l='MpServer', x=645.50, y=48.25, z=155.19], EntitySquid['Squid'/676, l='MpServer', x=644.75, y=47.00, z=156.50], EntityCreeper['Creeper'/677, l='MpServer', x=637.34, y=28.00, z=167.69], EntityCreeper['Creeper'/678, l='MpServer', x=651.47, y=28.00, z=173.00], EntityCreeper['Creeper'/679, l='MpServer', x=650.22, y=28.00, z=173.09], EntitySkeleton['Skeleton'/680, l='MpServer', x=639.94, y=28.00, z=170.53], EntityBat['Bat'/681, l='MpServer', x=653.07, y=29.64, z=177.76], EntityBat['Bat'/682, l='MpServer', x=638.68, y=30.11, z=174.24], EntityBat['Bat'/683, l='MpServer', x=649.00, y=35.21, z=180.46], EntityBat['Bat'/684, l='MpServer', x=640.33, y=29.79, z=174.34], EntitySquid['Squid'/685, l='MpServer', x=645.81, y=48.03, z=156.34], EntitySquid['Squid'/686, l='MpServer', x=651.31, y=50.91, z=164.88], EntitySquid['Squid'/687, l='MpServer', x=655.50, y=52.34, z=166.50], EntitySquid['Squid'/688, l='MpServer', x=637.63, y=52.34, z=169.25], EntitySquid['Squid'/689, l='MpServer', x=640.94, y=50.34, z=164.78], EntitySquid['Squid'/690, l='MpServer', x=649.66, y=47.38, z=172.03], EntitySquid['Squid'/691, l='MpServer', x=653.53, y=48.00, z=175.38], EntitySquid['Squid'/692, l='MpServer', x=645.59, y=48.03, z=162.50], EntityCreeper['Creeper'/693, l='MpServer', x=650.69, y=30.00, z=183.53], EntityCreeper['Creeper'/694, l='MpServer', x=654.69, y=29.00, z=176.41], EntityBat['Bat'/695, l='MpServer', x=653.41, y=38.10, z=178.31], EntitySquid['Squid'/696, l='MpServer', x=643.66, y=48.88, z=186.41], EntitySquid['Squid'/697, l='MpServer', x=650.16, y=51.09, z=192.78], EntitySquid['Squid'/698, l='MpServer', x=641.72, y=49.38, z=193.19], EntitySquid['Squid'/699, l='MpServer', x=651.03, y=48.72, z=190.34], EntitySquid['Squid'/700, l='MpServer', x=650.91, y=49.34, z=181.84], EntitySquid['Squid'/701, l='MpServer', x=653.13, y=48.31, z=177.53], EntitySquid['Squid'/702, l='MpServer', x=644.53, y=49.38, z=181.13], EntitySquid['Squid'/703, l='MpServer', x=647.91, y=51.38, z=180.56], EntitySquid['Squid'/704, l='MpServer', x=642.75, y=49.38, z=187.56], EntitySquid['Squid'/705, l='MpServer', x=647.56, y=46.00, z=197.50], EntitySquid['Squid'/706, l='MpServer', x=640.97, y=47.00, z=195.66], EntitySquid['Squid'/707, l='MpServer', x=652.75, y=51.34, z=198.66], EntitySquid['Squid'/708, l='MpServer', x=655.19, y=50.34, z=197.91], EntitySquid['Squid'/709, l='MpServer', x=650.06, y=53.31, z=203.16], EntitySquid['Squid'/710, l='MpServer', x=643.50, y=50.34, z=195.84], EntitySquid['Squid'/711, l='MpServer', x=650.09, y=52.34, z=196.53], EntitySquid['Squid'/712, l='MpServer', x=637.38, y=47.38, z=201.84], EntityChicken['Chicken'/713, l='MpServer', x=651.50, y=71.00, z=223.50], EntityChicken['Chicken'/714, l='MpServer', x=651.50, y=64.00, z=219.50], EntityChicken['Chicken'/715, l='MpServer', x=652.50, y=66.00, z=220.50], EntityChicken['Chicken'/716, l='MpServer', x=650.50, y=65.00, z=223.50], EntityZombie['Zombie'/717, l='MpServer', x=653.69, y=28.00, z=255.84], EntitySquid['Squid'/718, l='MpServer', x=647.50, y=57.34, z=245.16], EntitySkeleton['Skeleton'/723, l='MpServer', x=640.56, y=31.00, z=260.88], EntityCreeper['Creeper'/984, l='MpServer', x=683.50, y=37.00, z=193.50], EntitySkeleton['Skeleton'/743, l='MpServer', x=670.06, y=14.00, z=102.47], EntitySkeleton['Skeleton'/746, l='MpServer', x=668.13, y=37.00, z=104.50], EntityCow['Cow'/748, l='MpServer', x=662.06, y=64.00, z=121.81], EntityCow['Cow'/749, l='MpServer', x=663.34, y=64.00, z=123.25], EntityCow['Cow'/750, l='MpServer', x=657.31, y=63.00, z=131.22], EntityCow['Cow'/751, l='MpServer', x=666.06, y=64.00, z=134.13], EntitySkeleton['Skeleton'/752, l='MpServer', x=656.28, y=31.00, z=182.16], EntitySquid['Squid'/753, l='MpServer', x=661.50, y=48.34, z=187.50], EntitySkeleton['Skeleton'/754, l='MpServer', x=669.50, y=38.00, z=205.50], EntityZombie['Zombie'/755, l='MpServer', x=662.73, y=27.00, z=196.50], EntityZombie['Zombie'/756, l='MpServer', x=664.50, y=40.00, z=199.00], EntitySkeleton['Skeleton'/757, l='MpServer', x=667.13, y=40.00, z=200.50], EntitySquid['Squid'/758, l='MpServer', x=655.88, y=46.09, z=191.66], EntitySquid['Squid'/759, l='MpServer', x=661.72, y=52.00, z=200.72], EntitySquid['Squid'/760, l='MpServer', x=659.22, y=46.31, z=197.59], EntitySkeleton['Skeleton'/761, l='MpServer', x=659.88, y=28.00, z=199.56], EntitySkeleton['Skeleton'/762, l='MpServer', x=671.44, y=28.00, z=250.94], EntitySquid['Squid'/763, l='MpServer', x=668.13, y=56.03, z=242.66], EntitySquid['Squid'/764, l='MpServer', x=670.28, y=57.19, z=242.53]] Retry entities: 0 total; [] Server brand: fml,forge Server type: Integrated singleplayer server Stacktrace: at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415) at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2566) at net.minecraft.client.Minecraft.run(Minecraft.java:984) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Mac OS X (x86_64) version 10.11.1 Java Version: 1.8.0_65, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 815747368 bytes (777 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95 FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 4 mods loaded, 4 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJAAAAAAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCHIJAAAAAAAAA FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar) UCHIJAAAAAAAAA Forge{10.13.4.1558} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar) UCHIJAAAAAAAAA tmm{1.4.0.1} [TeamMadness Mod] (bin) GL info: ' Vendor: 'Intel Inc.' Version: '2.1 INTEL-10.0.40' Renderer: 'Intel HD Graphics 3000 OpenGL Engine' Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: Intel HD Graphics 3000 OpenGL Engine GL version 2.1 INTEL-10.0.40, Intel Inc. GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because ARB_framebuffer_object is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: English (US) Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) [10:19:40] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# /Users/school/Desktop/TeamMadnessMod/eclipse/./crash-reports/crash-2016-01-28_10.19.40-client.txt AL lib: (EE) alc_cleanup: 1 device not closed
×
×
  • Create New...

Important Information

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