Posted May 4, 201510 yr Hey, how can i check if itemstack is item ? i want to set here @Override public boolean onItemUse(ItemStack itemstack, EntityPlayer player, World world, int x, int y, int z, int par1, float par2, float par3, float par4) { Block blockoneye = world.getBlock(x, y, z); int metadata = world.getBlockMetadata(x, y, z); if(player.canPlayerEdit(x, y, z, par1, itemstack)) { if(FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(blockoneye)) != null) { ItemStack smeltedblockoneye = FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(blockoneye)).copy(); player.inventory.addItemStackToInventory(smeltedblockoneye); } } that if the smelting result is instance of block then do my thing nad the same thing with item how to this ? I'm beginner in java and in minecraft modding. Please be specific. Any code examples are appreciated. Sorry for my english i'm from Czech republic. Please hit that thank you button if i helped
May 4, 201510 yr I think you can check if the item in the stack is an instanceof ItemBlock class. Check out my tutorials here: http://jabelarminecraft.blogspot.com/
May 4, 201510 yr Author if(smeltedblockoneye instanceof ItemBlock) { this gives me an error I'm beginner in java and in minecraft modding. Please be specific. Any code examples are appreciated. Sorry for my english i'm from Czech republic. Please hit that thank you button if i helped
May 4, 201510 yr What is the error? Also, where is the smeltedblockoneye being assigned? Check out my tutorials here: http://jabelarminecraft.blogspot.com/
May 5, 201510 yr Author error is "incompatible conditional operand types ItemStack and ItemBlock" smeltedblockoneye looks like this ItemStack smeltedblockoneye = FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(blockoneye)).copy(); I'm beginner in java and in minecraft modding. Please be specific. Any code examples are appreciated. Sorry for my english i'm from Czech republic. Please hit that thank you button if i helped
May 5, 201510 yr Author Please be specific ... How to get the item first ? I'm beginner in java and in minecraft modding. Please be specific. Any code examples are appreciated. Sorry for my english i'm from Czech republic. Please hit that thank you button if i helped
May 5, 201510 yr ItemStack#getItem() gives the item of the ItemStack. I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP) II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.