Jump to content

kebbanalex

Forge Modder
  • Posts

    27
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

kebbanalex's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. well use 2GB ram and if it starts to lagg try to use 3GB and as Lex said the cpu time is the issue most time. If cpu time becomes the problem then try closing some applications while playing or running the server like Steam, Skype etc.
  2. Hi thanks for responding I did solve it and here's where the magic number 100 comes from http://minecraft.gamepedia.com/File:Items_slot_number.png?version=5ef0c7b8fa737ab5bc11bb168704592b
  3. Well first it's good that you put your code inside spoilers but put the code inside the [code] Code here [/code] ok now to the problem. Well I would suggest that you use NBT and load from it like this if (!nbt.getShort("upgrades") == null){ Set the upgrade counter to X ammount of upgrades }
  4. I know. Well give me the GUI code and the block/tile entity code also
  5. Well your statement about "I've got no mods installed" is false. if you look in your error log you'll find this TLPrinterBlock{1.6.2} [PrinterBlock] (PrinterBlock_1.6.2b.zip) Unloaded 1. The mod was made for 1.6.2 2. Remove the mod and try again
  6. Well... I've got a certain way to make multiple mods at the same time tho I haven't tested it with resources yet tho but here it is when you got your minecraft project setup and running in eclipse, Right click the Minecraft project and go down to build path in there you'll find New Source Folder click that and name the folder the mods name. then just paste the sources inside the folder and run and the mod will be loaded
  7. Hi there I am getting a weird crash every time I enter a world with the ChemicalWaste item in my inventory when I don't have a Hazmat suit in my inventory or if I take the suit out of the inventory. this forces me to delete the world because it's not joinable with out a crash. ItemChemicalWaste package info.coremodding.realchemics.items; import info.coremodding.realchemics.creativetabs.RCCreativeTabs; import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; import net.minecraft.world.World; /** * The chemical waste item class */ public class ItemChemicalWaste extends Item { /** * An itemstack of this */ public static ItemStack ChemicalWaste = new ItemStack(Items.ChemicalWaste); public void onUpdate(ItemStack itemstack, World world, Entity par3Entity, int par4, boolean par5) { EntityPlayer a = ((EntityPlayer)par3Entity); //Searches for the ItemChemicalWaste in the player's inventory if (a.inventory.hasItemStack(new ItemStack(Items.ChemicalWaste))){ //Checks if the player has the Hazmat Suit Boots. I only took boots for testing purposes. if (a.inventory.getStackInSlot(100).equals(new ItemStack(Items.ArmorHazmatSuitBoots))) { //Only to see if it give the effect System.out.println("Giving Effect"); //Giving Potion effects a.addPotionEffect(new PotionEffect(Potion.poison.id, 1000, 3, false)); a.addPotionEffect(new PotionEffect(Potion.confusion.id, 1000 , 3 ,false)); a.addPotionEffect(new PotionEffect(Potion.blindness.id, 1000, 3 , false)); a.addPotionEffect(new PotionEffect(Potion.hunger.id, 1000, 3 , false)); } } } { /** * Set's the Creative Tab of the Item */ this.setCreativeTab(RCCreativeTabs.tabRealChem); this.setUnlocalizedName("itemChemicalWaste"); } } Log ---- Minecraft Crash Report ---- // Why did you do that? Time: 2014-04-12 01:56 Description: Ticking player java.lang.ArrayIndexOutOfBoundsException: 64 at net.minecraft.entity.player.InventoryPlayer.getStackInSlot(InventoryPlayer.java:648) at info.coremodding.realchemics.items.ItemChemicalWaste.onUpdate(ItemChemicalWaste.java:34) at net.minecraft.item.ItemStack.updateAnimation(ItemStack.java:477) at net.minecraft.entity.player.InventoryPlayer.decrementAnimations(InventoryPlayer.java:349) at net.minecraft.entity.player.EntityPlayer.onLivingUpdate(EntityPlayer.java:625) at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:1820) at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:342) at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:341) at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:326) at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:37) at net.minecraft.network.play.client.C03PacketPlayer$C06PacketPlayerPosLook.processPacket(C03PacketPlayer.java:271) at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:232) at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:716) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:604) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482) at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:742) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at net.minecraft.entity.player.InventoryPlayer.getStackInSlot(InventoryPlayer.java:648) at info.coremodding.realchemics.items.ItemChemicalWaste.onUpdate(ItemChemicalWaste.java:34) at net.minecraft.item.ItemStack.updateAnimation(ItemStack.java:477) at net.minecraft.entity.player.InventoryPlayer.decrementAnimations(InventoryPlayer.java:349) at net.minecraft.entity.player.EntityPlayer.onLivingUpdate(EntityPlayer.java:625) at net.minecraft.entity.EntityLivingBase.onUpdate(EntityLivingBase.java:1820) at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:342) -- Player being ticked -- Details: Entity Type: null (net.minecraft.entity.player.EntityPlayerMP) Entity ID: 190 Entity Name: Player703 Entity's Exact location: 564,81, 4,00, 196,32 Entity's Block location: World: (564,4,196), Chunk: (at 4,0,4 in 35,12; contains blocks 560,0,192 to 575,255,207), Region: (1,0; contains chunks 32,0 to 63,31, blocks 512,0,0 to 1023,255,511) Entity's Momentum: 0,00, -0,08, 0,00 Stacktrace: at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:341) at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:326) at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:37) at net.minecraft.network.play.client.C03PacketPlayer$C06PacketPlayerPosLook.processPacket(C03PacketPlayer.java:271) at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:232) -- Ticking connection -- Details: Connection: net.minecraft.network.NetworkManager@5880cefe Stacktrace: at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:716) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:604) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482) at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:742) -- System Details -- Details: Minecraft Version: 1.7.2 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.7.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 954064056 bytes (909 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 3297 (184632 bytes; 0 MB) allocated, 3083 (172648 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.01-pre FML v7.2.156.1056 Minecraft Forge 10.12.0.1056 4 mods loaded, 4 mods active mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available FML{7.2.156.1056} [Forge Mod Loader] (forgeSrc-1.7.2-10.12.0.1056.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Forge{10.12.0.1056} [Minecraft Forge] (forgeSrc-1.7.2-10.12.0.1056.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available CoreModding_RealChemics{Not Even A Version Yet!} [Real Chemics] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Profiler Position: N/A (disabled) Vec3 Pool Size: 436 (24416 bytes; 0 MB) allocated, 402 (22512 bytes; 0 MB) used Player Count: 1 / 8; [EntityPlayerMP['Player703'/190, l='New World', x=564,81, y=4,00, z=196,32]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2014-04-12_01.56.07-server.txt [01:56:08] [Client Shutdown Thread/INFO]: Stopping server [01:56:08] [Client Shutdown Thread/INFO]: Saving players AL lib: (EE) alc_cleanup: 1 device not closed
  8. BlockRegistry is this. public static Block ConicalFlask = new BlockConicalFlask(Material.glass); GameRegistry.registerBlock(ConicalFlask, Strings.ConicalFlaskInfo[1]); I am not sure what the string does in GameRegistry.registerBlock so I just gave it the string of the unlocalizedname LanguageRegistry works in the .lang file tho I don't know how to do it yet
  9. Well think like this. When 1.7.2 mods are comming out more of the community also move to 1.7 and when they move from 1.6 to .1.7 your mod is prepeared for 1.7 and no Delay Porting needed
  10. Hi I am trying to make an item give the player poison when it is in the players inventory Here's the code package info.coremodding.realchemics.items; import info.coremodding.realchemics.creativetabs.RCCreativeTabs; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; import net.minecraft.world.World; public class ItemChemicalWaste extends Item{ public static ItemStack ChemicalWaste = new ItemStack(items.ChemicalWaste); { /** * Set's the Creative Tab of the Item */ this.setCreativeTab(RCCreativeTabs.tabRealChem); this.setUnlocalizedName("itemChemicalWaste"); } public void isItemInInventory(ItemStack itemstack, EntityPlayer player, World world){ if(player.inventory.hasItemStack(new ItemStack(items.ChemicalWaste))){ player.addPotionEffect(new PotionEffect(Potion.poison.id, 200, 1, false)); } } } It would be appriciated if you could help me
  11. Hi I am having issues with making a creative tab, Forge gives me this error and I am not even gonna bother with showing my code now Log [19:31:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [19:31:54] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [19:31:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [19:31:54] [main/INFO] [FML]: Forge Mod Loader version 7.2.116.1029 for Minecraft 1.7.2 loading [19:31:54] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_51, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre7 [19:31:54] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [19:31:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [19:31:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [19:31:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [19:31:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [19:31:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:31:54] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [19:31:55] [main/ERROR] [FML]: The minecraft jar file:/C:/Users/Alexander/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.0.1029/forgeSrc-1.7.2-10.12.0.1029.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again! [19:31:55] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem! [19:31:55] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/Alexander/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.0.1029/forgeSrc-1.7.2-10.12.0.1029.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it [19:31:55] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [19:31:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [19:31:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [19:31:55] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [19:31:57] [main/INFO]: Setting user: Player46 [19:31:58] [Client thread/INFO]: LWJGL Version: 2.9.0 [19:31:59] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization [19:31:59] [Client thread/INFO] [FML]: MinecraftForge v10.12.0.1029 Initialized [19:31:59] [Client thread/INFO] [FML]: Replaced 128 ore recipies [19:31:59] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization [19:31:59] [Client thread/INFO] [FML]: Searching C:\Users\Alexander\Documents\Projects\Minecraft\MODs\forge-1.7.2-10.12.0.1027-src\eclipse\mods for mods [19:32:00] [Client thread/ERROR] [FML]: FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.FMLRenderAccessLibrary. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! [19:32:02] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load [19:32:02] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:CoreModding API, FMLFileResourcePack:Real Chemics [19:32:02] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 Starting up SoundSystem... Initializing LWJGL OpenAL (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) OpenAL initialized. [19:32:03] [sound Library Loader/INFO]: Sound engine started [19:32:04] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [19:32:04] [Client thread/INFO]: Created: 256x256 textures/items-atlas [19:32:04] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods [19:32:05] [MCO Availability Checker #1/ERROR]: Couldn't connect to Realms [19:32:26] [server thread/INFO]: Starting integrated minecraft server version 1.7.2 [19:32:26] [server thread/INFO]: Generating keypair [19:32:26] [server thread/INFO] [FML]: Injecting new block and item data into this server instance [19:32:26] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@3f12356a) [19:32:26] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@3f12356a) [19:32:26] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@3f12356a) [19:32:26] [server thread/INFO]: Preparing start region for level 0 [19:32:27] [Netty Client IO #0/INFO] [FML]: Server protocol version 1 [19:32:27] [Netty IO #1/INFO] [FML]: Client protocol version 1 [19:32:27] [Netty IO #1/INFO] [FML]: Client attempting to join with 5 mods : [email protected],[email protected],[email protected],[email protected],CoreModding_RealChemics@Not Even A Version Yet! [19:32:27] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT [19:32:27] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER [19:32:27] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established [19:32:27] [server thread/INFO] [FML]: [server thread] Server side modded connection established [19:32:27] [server thread/INFO]: Player46[local:E:b35554bd] logged in with entity id 191 at (247.15624685050258, 4.297678324931271, -604.1102878653603) [19:32:27] [server thread/INFO]: Player46 joined the game [19:32:29] [server thread/INFO]: Saving and pausing game... [19:32:29] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [19:32:29] [server thread/INFO]: Saving chunks for level 'New World'/Nether [19:32:29] [server thread/INFO]: Saving chunks for level 'New World'/The End [19:32:42] [server thread/INFO]: Player46 has just earned the achievement [Taking Inventory] [19:32:42] [Client thread/INFO]: [CHAT] Player46 has just earned the achievement [Taking Inventory] [19:32:44] [server thread/INFO]: Stopping server [19:32:44] [server thread/INFO]: Saving players [19:32:44] [server thread/INFO]: Saving worlds [19:32:44] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [19:32:44] [server thread/INFO]: Saving chunks for level 'New World'/Nether [19:32:44] [server thread/INFO]: Saving chunks for level 'New World'/The End [19:32:44] [server thread/INFO] [FML]: Unloading dimension 0 [19:32:44] [server thread/INFO] [FML]: Unloading dimension -1 [19:32:44] [server thread/INFO] [FML]: Unloading dimension 1 [19:32:44] [Client thread/FATAL]: Reported exception thrown! net.minecraft.util.ReportedException: Rendering item at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1239) ~[EntityRenderer.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1064) ~[Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:112) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_51] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_51] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_51] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_51] at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?] Caused by: java.lang.NullPointerException at net.minecraft.item.ItemStack.getItemDamage(ItemStack.java:266) ~[itemStack.class:?] at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:421) ~[RenderItem.class:?] at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:565) ~[RenderItem.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.func_147051_a(GuiContainerCreative.java:972) ~[GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:800) ~[GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:111) ~[GuiContainer.class:?] at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) ~[inventoryEffectRenderer.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:678) ~[GuiContainerCreative.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1209) ~[EntityRenderer.class:?] ... 9 more ---- Minecraft Crash Report ---- // Would you like a cupcake? Time: 2014-02-13 19:32 Description: Rendering item java.lang.NullPointerException: Rendering item at net.minecraft.item.ItemStack.getItemDamage(ItemStack.java:266) at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:421) at net.minecraft.client.renderer.entity.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:565) at net.minecraft.client.gui.inventory.GuiContainerCreative.func_147051_a(GuiContainerCreative.java:972) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:800) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:111) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:678) at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1209) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1064) at net.minecraft.client.Minecraft.run(Minecraft.java:951) at net.minecraft.client.main.Main.main(Main.java:112) 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:134) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) 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:266) at net.minecraft.client.renderer.entity.RenderItem.renderItemIntoGUI(RenderItem.java:421) -- 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:565) at net.minecraft.client.gui.inventory.GuiContainerCreative.func_147051_a(GuiContainerCreative.java:972) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:800) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:111) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:678) -- Screen render details -- Details: Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative Mouse location: Scaled: (294, 12). Absolute: (588, 454) Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2 -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityClientPlayerMP['Player46'/191, l='MpServer', x=247,16, y=5,92, z=-604,11]] Chunk stats: MultiplayerChunkCache: 225, 225 Level seed: 0 Level generator: ID 01 - flat, ver 0. Features enabled: false Level generator options: Level spawn location: World: (235,4,-639), Chunk: (at 11,0,1 in 14,-40; contains blocks 224,0,-640 to 239,255,-625), Region: (0,-2; contains chunks 0,-64 to 31,-33, blocks 0,0,-1024 to 511,255,-513) Level time: 5302 game time, 5302 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: 98 total; [EntitySlime['Slime'/51, l='MpServer', x=170,63, y=4,00, z=-528,09], EntitySlime['Slime'/50, l='MpServer', x=179,14, y=4,00, z=-561,49], EntityPig['Pig'/48, l='MpServer', x=172,06, y=4,00, z=-653,09], EntityPig['Pig'/59, l='MpServer', x=178,09, y=4,00, z=-657,13], EntityPig['Pig'/63, l='MpServer', x=194,31, y=4,00, z=-652,57], EntityPig['Pig'/62, l='MpServer', x=181,13, y=4,00, z=-645,25], EntityChicken['Chicken'/61, l='MpServer', x=183,41, y=4,00, z=-645,63], EntitySlime['Slime'/60, l='MpServer', x=182,37, y=4,00, z=-672,05], EntitySlime['Slime'/68, l='MpServer', x=181,18, y=4,47, z=-643,15], EntityPig['Pig'/69, l='MpServer', x=188,08, y=4,00, z=-641,16], EntityPig['Pig'/70, l='MpServer', x=186,31, y=4,00, z=-639,88], EntityPig['Pig'/71, l='MpServer', x=186,16, y=4,00, z=-635,03], EntityChicken['Chicken'/64, l='MpServer', x=177,41, y=4,00, z=-650,34], EntitySlime['Slime'/65, l='MpServer', x=191,88, y=4,00, z=-642,31], EntitySlime['Slime'/66, l='MpServer', x=179,31, y=4,96, z=-649,89], EntityChicken['Chicken'/67, l='MpServer', x=180,47, y=4,00, z=-652,53], EntitySlime['Slime'/76, l='MpServer', x=190,91, y=4,00, z=-566,03], EntitySlime['Slime'/77, l='MpServer', x=202,66, y=4,00, z=-660,84], EntitySlime['Slime'/78, l='MpServer', x=201,34, y=4,47, z=-608,43], EntitySlime['Slime'/79, l='MpServer', x=206,79, y=4,96, z=-575,69], EntitySlime['Slime'/72, l='MpServer', x=189,28, y=4,00, z=-637,76], EntitySlime['Slime'/73, l='MpServer', x=192,13, y=4,95, z=-619,41], EntitySlime['Slime'/74, l='MpServer', x=184,05, y=4,00, z=-600,33], EntitySlime['Slime'/75, l='MpServer', x=186,34, y=4,00, z=-601,45], EntitySlime['Slime'/85, l='MpServer', x=219,13, y=4,00, z=-575,88], EntitySlime['Slime'/84, l='MpServer', x=214,61, y=4,00, z=-602,35], EntitySlime['Slime'/87, l='MpServer', x=217,46, y=4,85, z=-569,92], EntitySlime['Slime'/86, l='MpServer', x=219,97, y=4,47, z=-581,46], EntitySlime['Slime'/81, l='MpServer', x=197,51, y=4,00, z=-554,36], EntitySlime['Slime'/80, l='MpServer', x=202,44, y=4,96, z=-566,76], EntitySlime['Slime'/83, l='MpServer', x=212,00, y=4,99, z=-628,89], EntitySlime['Slime'/82, l='MpServer', x=223,22, y=4,00, z=-682,22], EntitySlime['Slime'/88, l='MpServer', x=217,50, y=4,00, z=-556,29], EntitySlime['Slime'/102, l='MpServer', x=231,29, y=4,61, z=-653,32], EntitySlime['Slime'/103, l='MpServer', x=227,53, y=4,00, z=-660,26], EntitySlime['Slime'/101, l='MpServer', x=230,51, y=4,00, z=-657,33], EntitySlime['Slime'/111, l='MpServer', x=240,34, y=4,00, z=-659,37], EntitySlime['Slime'/106, l='MpServer', x=224,69, y=4,00, z=-604,38], EntitySlime['Slime'/107, l='MpServer', x=230,36, y=4,00, z=-586,20], EntitySlime['Slime'/104, l='MpServer', x=230,40, y=4,00, z=-629,25], EntitySlime['Slime'/105, l='MpServer', x=234,38, y=4,00, z=-620,28], EntitySlime['Slime'/119, l='MpServer', x=267,16, y=4,47, z=-645,74], EntitySlime['Slime'/114, l='MpServer', x=242,49, y=4,96, z=-554,25], EntitySlime['Slime'/113, l='MpServer', x=241,36, y=4,00, z=-568,42], EntitySlime['Slime'/112, l='MpServer', x=241,68, y=4,18, z=-592,72], EntitySlime['Slime'/127, l='MpServer', x=283,85, y=4,00, z=-661,48], EntitySlime['Slime'/126, l='MpServer', x=286,44, y=4,00, z=-671,72], EntityChicken['Chicken'/125, l='MpServer', x=284,46, y=4,00, z=-676,76], EntitySlime['Slime'/123, l='MpServer', x=265,99, y=4,99, z=-559,55], EntitySlime['Slime'/122, l='MpServer', x=267,41, y=4,00, z=-560,70], EntitySlime['Slime'/121, l='MpServer', x=255,86, y=4,96, z=-586,25], EntitySlime['Slime'/120, l='MpServer', x=254,74, y=4,96, z=-593,41], EntityCow['Cow'/137, l='MpServer', x=294,94, y=4,00, z=-684,66], EntityChicken['Chicken'/136, l='MpServer', x=297,28, y=4,00, z=-684,88], EntitySlime['Slime'/139, l='MpServer', x=301,44, y=4,96, z=-667,94], EntityChicken['Chicken'/138, l='MpServer', x=295,44, y=4,00, z=-665,59], EntityChicken['Chicken'/141, l='MpServer', x=296,63, y=4,00, z=-632,06], EntitySlime['Slime'/140, l='MpServer', x=291,46, y=4,96, z=-642,54], EntitySheep['Sheep'/143, l='MpServer', x=301,91, y=4,00, z=-615,84], EntityChicken['Chicken'/142, l='MpServer', x=294,69, y=4,00, z=-624,89], EntityChicken['Chicken'/129, l='MpServer', x=282,16, y=4,00, z=-630,38], EntityChicken['Chicken'/128, l='MpServer', x=282,44, y=4,00, z=-658,63], EntitySlime['Slime'/131, l='MpServer', x=279,92, y=4,96, z=-640,64], EntitySlime['Slime'/130, l='MpServer', x=278,43, y=4,00, z=-638,93], EntityChicken['Chicken'/135, l='MpServer', x=303,03, y=4,00, z=-680,59], EntityCow['Cow'/152, l='MpServer', x=293,69, y=4,00, z=-533,28], EntityCow['Cow'/155, l='MpServer', x=309,75, y=4,00, z=-679,66], EntityCow['Cow'/157, l='MpServer', x=305,03, y=4,00, z=-681,47], EntityChicken['Chicken'/158, l='MpServer', x=305,53, y=4,00, z=-678,59], EntitySlime['Slime'/159, l='MpServer', x=318,53, y=4,96, z=-661,79], EntitySheep['Sheep'/144, l='MpServer', x=303,09, y=4,00, z=-604,16], EntitySlime['Slime'/145, l='MpServer', x=304,49, y=4,81, z=-590,95], EntityCow['Cow'/146, l='MpServer', x=300,06, y=4,00, z=-596,09], EntitySheep['Sheep'/147, l='MpServer', x=298,75, y=4,00, z=-604,63], EntitySlime['Slime'/148, l='MpServer', x=291,02, y=4,35, z=-589,03], EntityCow['Cow'/149, l='MpServer', x=299,78, y=4,00, z=-562,88], EntitySlime['Slime'/150, l='MpServer', x=302,47, y=4,00, z=-571,03], EntitySheep['Sheep'/151, l='MpServer', x=299,09, y=4,00, z=-557,31], EntityClientPlayerMP['Player46'/191, l='MpServer', x=247,16, y=5,92, z=-604,11], EntityCow['Cow'/171, l='MpServer', x=305,13, y=4,00, z=-549,69], EntityCow['Cow'/170, l='MpServer', x=309,78, y=4,00, z=-547,75], EntitySheep['Sheep'/169, l='MpServer', x=308,19, y=4,00, z=-558,34], EntitySlime['Slime'/168, l='MpServer', x=306,32, y=4,61, z=-592,50], EntitySheep['Sheep'/174, l='MpServer', x=318,97, y=4,00, z=-541,03], EntitySheep['Sheep'/173, l='MpServer', x=304,97, y=4,00, z=-552,41], EntityChicken['Chicken'/172, l='MpServer', x=305,84, y=4,00, z=-552,34], EntityChicken['Chicken'/163, l='MpServer', x=314,47, y=4,00, z=-619,53], EntitySheep['Sheep'/162, l='MpServer', x=304,72, y=4,00, z=-614,75], EntitySlime['Slime'/161, l='MpServer', x=317,40, y=4,00, z=-651,53], EntitySlime['Slime'/160, l='MpServer', x=307,31, y=4,00, z=-650,16], EntitySlime['Slime'/167, l='MpServer', x=316,47, y=4,99, z=-588,98], EntityCow['Cow'/166, l='MpServer', x=306,81, y=4,00, z=-594,13], EntityCow['Cow'/165, l='MpServer', x=307,50, y=4,00, z=-617,75], EntityCow['Cow'/164, l='MpServer', x=313,53, y=4,00, z=-613,09], EntityChicken['Chicken'/179, l='MpServer', x=327,63, y=4,00, z=-547,44], EntityChicken['Chicken'/182, l='MpServer', x=326,25, y=4,00, z=-540,31], EntityChicken['Chicken'/180, l='MpServer', x=324,34, y=4,00, z=-551,47], EntitySlime['Slime'/8382, l='MpServer', x=271,06, y=4,47, z=-655,97]] Retry entities: 0 total; [] Server brand: fml,forge Server type: Integrated singleplayer server Stacktrace: at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:418) at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2557) at net.minecraft.client.Minecraft.run(Minecraft.java:972) at net.minecraft.client.main.Main.main(Main.java:112) 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:134) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details: Minecraft Version: 1.7.2 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.7.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 808339264 bytes (770 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 18006 (1008336 bytes; 0 MB) allocated, 1748 (97888 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.01-pre FML v7.2.116.1029 Minecraft Forge 10.12.0.1029 5 mods loaded, 5 mods active mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available FML{7.2.116.1029} [Forge Mod Loader] (forgeSrc-1.7.2-10.12.0.1029.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Forge{10.12.0.1029} [Minecraft Forge] (forgeSrc-1.7.2-10.12.0.1029.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available CoreModding_LIB{0.0.1} [CoreModding API] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available CoreModding_RealChemics{Not Even A Version Yet!} [Real Chemics] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available Launched Version: 1.6 LWJGL: 2.9.0 OpenGL: Intel(R) HD Graphics 4000 GL version 4.0.0 - Build 10.18.10.3277, Intel 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: 921 (51576 bytes; 0 MB) allocated, 261 (14616 bytes; 0 MB) used Anisotropic Filtering: Off (1) #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Alexander\Documents\Projects\Minecraft\MODs\forge-1.7.2-10.12.0.1027-src\eclipse\.\crash-reports\crash-2014-02-13_19.32.44-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.