Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

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

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

DarkZ55

Members
  • Joined

  • Last visited

Everything posted by DarkZ55

  1. When i try to craft my items that i have added minecraft crash (note:i am a novice code writer so pls dont hate for any obvious mistakes) Main Registry ----------------------------------------------------------------------------------- package com.DarkZ55.Main; import com.DarkZ55.blocks.ModBlocks; import com.DarkZ55.item.ModItems; import com.DarkZ55.lib.RefStrings; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; 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.registry.GameRegistry; @Mod(modid = RefStrings.MODID , name = RefStrings.NAME , version = RefStrings.VERSION ) public class MainRegistry { @SidedProxy(clientSide = RefStrings.CLIENTSIDE , serverSide = RefStrings.SERVERSIDE) public static ServerProxy proxy; @EventHandler public static void PreLoad (FMLPreInitializationEvent PreEvent) { proxy.registerRenderInfo(); CraftingManager.MainRegistry(); ModBlocks.mainRegistry(); ModItems.mainRegistry(); } @EventHandler public static void load (FMLInitializationEvent event) { } @EventHandler public static void PostLoad (FMLPostInitializationEvent PostEvent) { } } AdvnStone(broken item) -------------------------------------------------------------------------------------------------------------------------------------- package com.DarkZ55.blocks; import net.minecraft.block.Block; import net.minecraft.block.material.Material; public class AdvnStone extends Block { protected AdvnStone(Material p_i45394_1_) { super(p_i45394_1_); } } CraftingHandler ----------------------------------------------------------------------------------------------------------- package com.DarkZ55.Main; import com.DarkZ55.blocks.ModBlocks; import com.DarkZ55.item.ModItems; import net.minecraft.block.Block; import net.minecraft.init.Blocks; import net.minecraft.item.ItemStack; import cpw.mods.fml.common.registry.GameRegistry; public class CraftingManager { public static void MainRegistry(){ AddCraftingRec(); } public static void AddCraftingRec(){ //Shaped GameRegistry.addRecipe(new ItemStack(ModBlocks.AdvnStone), new Object[] {"YXY", "XXX", "YXY", 'X', Blocks.stone , 'Y', Blocks.obsidian, }); } } crash report -------------------------------------------------------------------------------------------------------------------------------------------------------------- [00:19:18] [main/INFO] [GradleStart]: No arguments specified, assuming client. [00:19:18] [main/INFO] [GradleStart]: Extra: [] [00:19:18] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/mrsquilt/.gradle/caches/minecraft/assets, --version, 1.7.10] [00:19:18] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [00:19:18] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [00:19:18] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [00:19:18] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1230 for Minecraft 1.7.10 loading [00:19:18] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_67, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7 [00:19:18] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [00:19:18] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [00:19:18] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [00:19:18] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [00:19:18] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [00:19:18] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [00:19:18] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [00:19:21] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [00:19:21] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [00:19:21] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [00:19:22] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [00:19:22] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [00:19:22] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [00:19:23] [main/INFO]: Setting user: Player572 [00:19:25] [Client thread/INFO]: LWJGL Version: 2.9.1 [00:19:26] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [00:19:26] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1230 Initialized [00:19:26] [Client thread/INFO] [FML]: Replaced 182 ore recipies [00:19:26] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [00:19:26] [Client thread/INFO] [FML]: Searching C:\Users\mrsquilt\Downloads\Zacs Stuff\Mod\My MC Mod\eclipse\mods for mods [00:19:40] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [00:19:41] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, advancedcraft] at CLIENT [00:19:41] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, advancedcraft] at SERVER [00:19:42] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Advanced Craft [00:19:42] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [00:19:42] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations [00:19:42] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [00:19:42] [Client thread/INFO] [FML]: Applying holder lookups [00:19:42] [Client thread/INFO] [FML]: Holder lookups applied [00:19:42] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [00:19:42] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [00:19:42] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [00:19:42] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [00:19:42] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [00:19:43] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [00:19:43] [sound Library Loader/INFO]: Sound engine started [00:19:45] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [00:19:45] [Client thread/INFO]: Created: 256x256 textures/items-atlas [00:19:46] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [00:19:46] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Advanced Craft [00:19:46] [Client thread/INFO]: Created: 256x256 textures/items-atlas [00:19:46] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [00:19:46] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [00:19:46] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [00:19:46] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [00:19:46] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [00:19:46] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [00:19:46] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [00:19:47] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [00:19:47] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [00:19:47] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [00:19:47] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: [00:19:47] [sound Library Loader/INFO]: Sound engine started [00:19:52] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [00:19:52] [server thread/INFO]: Generating keypair [00:19:52] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance [00:19:52] [server thread/INFO] [FML]: Applying holder lookups [00:19:52] [server thread/INFO] [FML]: Holder lookups applied [00:19:52] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@62197b84) [00:19:53] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@62197b84) [00:19:53] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@62197b84) [00:19:53] [server thread/INFO]: Preparing start region for level 0 [00:19:54] [server thread/INFO]: Changing view distance to 12, from 10 [00:19:55] [Netty Client IO #0/INFO] [FML]: Server protocol version 1 [00:19:55] [Netty IO #1/INFO] [FML]: Client protocol version 1 [00:19:55] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [00:19:55] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [00:19:55] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [00:19:55] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [00:19:55] [server thread/INFO] [FML]: [server thread] Server side modded connection established [00:19:55] [server thread/INFO]: Player572[local:E:6d0e56f8] logged in with entity id 229 at (-684.5, 4.0, -1178.5) [00:19:55] [server thread/INFO]: Player572 joined the game [00:20:01] [server thread/INFO]: Player572 has just earned the achievement [Taking Inventory] [00:20:01] [Client thread/INFO]: [CHAT] Player572 has just earned the achievement [Taking Inventory] [00:20:19] [server thread/INFO]: Stopping server [00:20:19] [server thread/INFO]: Saving players [00:20:21] [server thread/INFO]: Saving worlds [00:20:21] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [00:20:21] [server thread/INFO]: Saving chunks for level 'New World'/Nether [00:20:21] [server thread/INFO]: Saving chunks for level 'New World'/The End [00:20:21] [server thread/INFO] [FML]: Unloading dimension 0 [00:20:21] [server thread/INFO] [FML]: Unloading dimension -1 [00:20:21] [server thread/INFO] [FML]: Unloading dimension 1 [00:20:21] [server thread/INFO] [FML]: Applying holder lookups [00:20:21] [server thread/INFO] [FML]: Holder lookups applied [00:20:22] [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:1056) ~[Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_67] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_67] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_67] at GradleStart.bounce(GradleStart.java:107) [start/:?] at GradleStart.startClient(GradleStart.java:100) [start/:?] at GradleStart.main(GradleStart.java:55) [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.GuiContainer.func_146977_a(GuiContainer.java:287) ~[GuiContainer.class:?] at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:114) ~[GuiContainer.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) ~[EntityRenderer.class:?] ... 16 more [00:20:22] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Daisy, daisy... Time: 11/2/14 12:20 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.GuiContainer.func_146977_a(GuiContainer.java:287) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:114) at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1056) at net.minecraft.client.Minecraft.run(Minecraft.java:951) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) 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 GradleStart.bounce(GradleStart.java:107) at GradleStart.startClient(GradleStart.java:100) at GradleStart.main(GradleStart.java:55) 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.GuiContainer.func_146977_a(GuiContainer.java:287) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:114) -- Screen render details -- Details: Screen name: net.minecraft.client.gui.inventory.GuiCrafting Mouse location: Scaled: (221, 97). Absolute: (665, 579) Screen size: Scaled: (507, 291). Absolute: (1520, 873). Scale factor of 3 -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityClientPlayerMP['Player572'/229, l='MpServer', x=-684.34, y=5.62, z=-1178.11]] Chunk stats: MultiplayerChunkCache: 622, 622 Level seed: 0 Level generator: ID 01 - flat, ver 0. Features enabled: false Level generator options: Level spawn location: World: (-689,4,-1186), Chunk: (at 15,0,14 in -44,-75; contains blocks -704,0,-1200 to -689,255,-1185), Region: (-2,-3; contains chunks -64,-96 to -33,-65, blocks -1024,0,-1536 to -513,255,-1025) Level time: 35661 game time, 11387 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: 58 total; [EntityPig['Pig'/137, l='MpServer', x=-677.13, y=4.00, z=-1118.16], EntityChicken['Chicken'/136, l='MpServer', x=-676.44, y=4.00, z=-1111.56], EntityCow['Cow'/129, l='MpServer', x=-674.25, y=4.00, z=-1246.69], EntityPig['Pig'/128, l='MpServer', x=-681.16, y=4.00, z=-1257.59], EntityHorse['Horse'/131, l='MpServer', x=-670.94, y=4.00, z=-1208.03], EntityHorse['Donkey'/130, l='MpServer', x=-679.13, y=4.00, z=-1211.91], EntityPig['Pig'/133, l='MpServer', x=-677.78, y=4.00, z=-1145.13], EntitySheep['Sheep'/132, l='MpServer', x=-674.52, y=4.00, z=-1187.61], EntityChicken['Chicken'/135, l='MpServer', x=-682.38, y=4.00, z=-1123.47], EntityHorse['Horse'/134, l='MpServer', x=-681.34, y=4.00, z=-1125.53], EntityHorse['Horse'/152, l='MpServer', x=-656.00, y=4.00, z=-1181.09], EntityChicken['Chicken'/153, l='MpServer', x=-659.56, y=4.00, z=-1150.44], EntityChicken['Chicken'/154, l='MpServer', x=-657.59, y=4.00, z=-1122.47], EntityHorse['Horse'/155, l='MpServer', x=-665.38, y=4.00, z=-1127.28], EntityPig['Pig'/156, l='MpServer', x=-663.78, y=4.00, z=-1106.06], EntitySheep['Sheep'/145, l='MpServer', x=-663.13, y=4.00, z=-1258.25], EntitySheep['Sheep'/147, l='MpServer', x=-651.16, y=4.00, z=-1256.22], EntityCow['Cow'/148, l='MpServer', x=-666.31, y=4.00, z=-1249.13], EntityChicken['Chicken'/149, l='MpServer', x=-670.38, y=4.00, z=-1243.59], EntitySheep['Sheep'/150, l='MpServer', x=-657.84, y=4.00, z=-1234.88], EntitySheep['Sheep'/151, l='MpServer', x=-669.19, y=4.00, z=-1189.41], EntitySheep['Sheep'/171, l='MpServer', x=-649.81, y=4.00, z=-1204.84], EntitySheep['Sheep'/170, l='MpServer', x=-650.97, y=4.00, z=-1204.16], EntityChicken['Chicken'/169, l='MpServer', x=-658.38, y=4.00, z=-1231.41], EntityChicken['Chicken'/168, l='MpServer', x=-644.44, y=4.00, z=-1226.41], EntityHorse['Horse'/175, l='MpServer', x=-643.50, y=4.00, z=-1197.00], EntitySheep['Sheep'/174, l='MpServer', x=-641.22, y=4.00, z=-1194.06], EntitySheep['Sheep'/173, l='MpServer', x=-642.81, y=4.00, z=-1206.63], EntityHorse['Donkey'/172, l='MpServer', x=-652.38, y=4.00, z=-1203.94], EntitySheep['Sheep'/167, l='MpServer', x=-647.91, y=4.00, z=-1241.09], EntityPig['Pig'/166, l='MpServer', x=-640.03, y=4.00, z=-1256.03], EntitySheep['Sheep'/165, l='MpServer', x=-662.88, y=4.00, z=-1251.88], EntitySheep['Sheep'/186, l='MpServer', x=-637.75, y=4.00, z=-1200.19], EntitySheep['Sheep'/187, l='MpServer', x=-638.84, y=4.00, z=-1187.31], EntitySheep['Sheep'/184, l='MpServer', x=-635.78, y=4.00, z=-1221.63], EntitySheep['Sheep'/185, l='MpServer', x=-626.16, y=4.00, z=-1224.13], EntityHorse['Horse'/190, l='MpServer', x=-628.50, y=4.00, z=-1136.22], EntityHorse['Horse'/191, l='MpServer', x=-623.41, y=4.00, z=-1173.03], EntityHorse['Horse'/188, l='MpServer', x=-637.00, y=4.00, z=-1170.88], EntitySheep['Sheep'/189, l='MpServer', x=-628.81, y=4.00, z=-1167.19], EntityHorse['Horse'/176, l='MpServer', x=-646.81, y=4.00, z=-1172.41], EntityChicken['Chicken'/182, l='MpServer', x=-635.66, y=4.00, z=-1236.19], EntitySheep['Sheep'/183, l='MpServer', x=-628.94, y=4.00, z=-1227.97], EntityHorse['Horse'/199, l='MpServer', x=-606.91, y=4.00, z=-1106.00], EntityHorse['Horse'/193, l='MpServer', x=-621.06, y=4.00, z=-1103.97], EntityPig['Pig'/195, l='MpServer', x=-612.78, y=4.00, z=-1104.44], EntitySheep['Sheep'/194, l='MpServer', x=-616.72, y=4.00, z=-1102.88], EntityHorse['Horse'/85, l='MpServer', x=-763.97, y=4.00, z=-1163.63], EntitySheep['Sheep'/84, l='MpServer', x=-761.22, y=4.00, z=-1157.34], EntitySheep['Sheep'/86, l='MpServer', x=-759.84, y=4.00, z=-1164.88], EntityClientPlayerMP['Player572'/229, l='MpServer', x=-684.34, y=5.62, z=-1178.11], EntityCow['Cow'/90, l='MpServer', x=-746.72, y=4.00, z=-1105.75], EntityXPOrb['Experience Orb'/107, l='MpServer', x=-713.53, y=4.25, z=-1076.72], EntityPig['Pig'/104, l='MpServer', x=-705.19, y=4.00, z=-1112.34], EntityXPOrb['Experience Orb'/105, l='MpServer', x=-706.28, y=4.25, z=-1083.44], EntityHorse['Horse'/117, l='MpServer', x=-689.91, y=4.00, z=-1132.13], EntityHorse['Horse'/116, l='MpServer', x=-697.34, y=4.00, z=-1134.75], EntityPig['Pig'/115, l='MpServer', x=-689.38, y=4.00, z=-1261.81]] 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:2555) at net.minecraft.client.Minecraft.run(Minecraft.java:973) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) 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 GradleStart.bounce(GradleStart.java:107) at GradleStart.startClient(GradleStart.java:100) at GradleStart.main(GradleStart.java:55) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.7.0_67, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 705667072 bytes (672 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: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available advancedcraft{0.1} [Advanced Craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: Intel® Graphics Media Accelerator HD GL version 2.1.0 - Build 8.15.10.1968, Intel GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because EXT_framebuffer_object is supported. Anisotropic filtering is supported and maximum anisotropy is 2. 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) [00:20:22] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\mrsquilt\Downloads\Zacs Stuff\Mod\My MC Mod\eclipse\.\crash-reports\crash-2014-11-02_00.20.22-client.txt AL lib: (EE) alc_cleanup: 1 device not closed please help i would like to continue progress and this is really holding me up

Important Information

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

Configure browser push notifications

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