Jump to content

[1.10.2] Getting the amount of items in a stack on the ground?


Recommended Posts

Posted

Hey, so I have this item, and I want to make it heal the player 1/2 a heart when picked up. However, when the item stacks to a number higher than one, it still heals only half a heart instead of multiple hearts depending on the amount of items in the stack. If you know what I mean... My question is: how do I get the amount of items in a single stack?

 

My code:

@SubscribeEvent(priority = EventPriority.HIGHEST) //Tuskerer's Healing event
	public void itemPickup(ItemPickupEvent e) {
		EntityPlayer p = e.player;
		if (e.pickedUp.getEntityItem().getItem() == DinocraftItems.TUSKERERS_HEART) {
			p.heal(1); //here I need to somehow get the amount of items per stack
			p.inventory.clearMatchingItems(DinocraftItems.TUSKERERS_HEART, 0, 37 * 64, null);
		}
	}

 

Please leave suggestions below.

Thanks! :D

Posted

getItem().stacksize will give you the amount of items

 

13 minutes ago, Differentiation said:

if (e.pickedUp.getEntityItem().getItem() == DinocraftItems.TUSKERERS_HEART) {

you are comparing itemstack to a item

  • Like 1
Posted

I tried this, but it didn't work :/

 

@SubscribeEvent (priority = EventPriority.HIGHEST) //Tuskerer's Healing event
	public void itemPickup(ItemPickupEvent e) {
		EntityPlayer p = e.player;
		if (e.pickedUp.getEntityItem().getItem().equals(DinocraftItems.TUSKERERS_HEART)) {
			p.heal(e.pickedUp.getEntityItem().stackSize);
			p.inventory.clearMatchingItems(DinocraftItems.TUSKERERS_HEART, 0, 37 * 64, null);
		}
	}

Am I doing something wrong?

Please help. Thanks! :D

Posted
  • Like 1

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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