Jump to content

alexspiers

Members
  • Posts

    2
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

alexspiers's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. SanAndreasP, thank you so much, it works like a charm. just for anyone in the future needed help with this, here is the code i ended up using. @ForgeSubscribe public void onPlayerHurt(LivingHurtEvent event) { if (event.entityLiving instanceof EntityPlayer && event.entityLiving.getHealth() - event.ammount <= 0) { System.out.println("The Player " + event.entityLiving.getEntityName() + " died."); event.setCanceled(true); } }
  2. Hey, I was wanting to stop the death event from occurring and instead teleport the player to a specific location. Now i already have the teleporting working and the event.setCancelled(true); doesn't seem to be working for me, the player just dies anyway. I have tried to heal the player on the LivingDeathEvent using the code below but to no avail, does anyone have any ideas on how to stop the player from dying. And I am sorry if i have overlooked something ridiculously simple and obvious, and any help would be greatly appreciated. @ForgeSubscribe public void onDeath(LivingDeathEvent event) { if (event.entity instanceof EntityPlayer && !event.entity.worldObj.isRemote) { EntityPlayer killed = (EntityPlayer) event.entity; Entity killer = event.source.getEntity(); killed.dropItem(Item.appleRed.itemID, 2); killed.isDead = false; killed.heal(10); event.setCanceled(true); EntityPlayer killedafter = (EntityPlayer) event.entity; } }
×
×
  • Create New...

Important Information

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