Posted October 31, 20159 yr Hey, Is it possible to find out how a certain item has been named in an anvil? Thx4Help 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
October 31, 20159 yr Use ItemStack#hasDisplayName . Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
October 31, 20159 yr Author Thanks but i need to know the name. With hasDisplayName i only know if its named 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
October 31, 20159 yr Then use ItemStack#getDisplayName . This will return the custom name if the stack has one, otherwise it will return the item's display name. Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
October 31, 20159 yr Author Oh i see .. i feel like an idiot now, cause i was trying to find this method earlier Thanks 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
October 31, 20159 yr Author 1 More question .. My game is crashing cause of this line if(player.getHeldItem().getItem().equals(Items.diamond)) { Why ? 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
October 31, 20159 yr EntityLivingBase#getHeldItem will return null if the entity (the player, in this case) isn't holding anything. You need to check that it's not null before calling ItemStack#getItem on it. Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
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.