Jump to content

[1.7.10] No fall?


drok0920

Recommended Posts

Hello MCF forums,

I would like to know how to make the player take no fall damage while my custom item is in there inventory.  I have tried entity.addVelocity() in my onUpdate Method.  But it doesn't seed to do anything except me me jump higher.  Please help.

Link to comment
Share on other sites

wait would how would i get this to work ONLY if the player has my custom item?

 

InventoryPlayer inventory = new InventoryPlayer(player);
inventory.copyInventory(player.inventory);
for(ItemStack itemstack : inventory.mainInventory) {
if(itemstack != null && itemstack.getItem() != null && itemstack.getItem() == Items.apple) {
System.out.println("apple found");
}
}

Link to comment
Share on other sites

Well thank you, I figured out how to do it through the onUpdate method i did it like this.

 

@Override
public void onUpdate(ItemStack stack, World world, Entity entity, int i1, boolean b1) {
	if(stack.getItemDamage() == 1) {
		if(entity.fallDistance > 3F) {
			entity.fallDistance = 0.0F;

			}

Link to comment
Share on other sites

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.