Posted February 15, 20178 yr Hi, how can I get drop chance of item held by an entity? I know it's stored in NBT, but I don't know, how to acces it. Thanks for your help.
February 15, 20178 yr You can call EntityLivingBase#hasCapability/EntityLivingBase#getCapability with the IItemHandler capability to get the hand and armor inventory. Look at EntityLivingBase#getCapability to look at the EnumFacing you have to pass in for each inventory. -Edit: Damn, I totally misread that... Edited February 16, 20178 yr by larsgerrits Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
February 16, 20178 yr EntityLiving#inventoryHandsDropChances and EntityLiving#inventoryArmorDropChances store the drop chances for the entity's held items and armour respectively. These fields are both protected, so you'll need to use reflection to access them. 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.
February 16, 20178 yr Author I just found my own way how to get the HandsDropChances from entity NBT, but thanks for help anyway.
February 16, 20178 yr You should really use the method Choonster suggested, as NBT should only be used for saving to disk, not getting data from an Entity. Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
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.