Jump to content

Do action on client player LivingDeathEvent


Naamah

Recommended Posts

Hello, I've been trying to get this to work forever. I have some code that gives an item when a player joins and I've been using that as a base, but it hasn't been working.

This is my current code:

@SubscribeEvent
    public void playerKilled(LivingDeathEvent event){
        if (event.getEntity() instanceof Player && !event.getEntity().isDeadOrDying()) {
            Player player = (Player) event.getEntity();
            if (player.getInventory().contains(new ItemStack(ModItems.FIRE_PROTECTION_POPPET.get()))) {
                player.getInventory().removeItem(new ItemStack(ModItems.FIRE_PROTECTION_POPPET.get()));
            }
        }
    }

In a sense, I am trying to "use up" the item when the player dies without them literally dying (like the totem of undying). I'm not exactly sure how to check the way the totem of undying works, but any tips would be appreciated.

tenor.gif?itemid=27352888

 

Not even gonna lie, I think I have autism

Link to comment
Share on other sites

14 hours ago, Naamah said:

Hello, I've been trying to get this to work forever. I have some code that gives an item when a player joins and I've been using that as a base, but it hasn't been working.

This is my current code:

@SubscribeEvent
    public void playerKilled(LivingDeathEvent event){
        if (event.getEntity() instanceof Player && !event.getEntity().isDeadOrDying()) {
            Player player = (Player) event.getEntity();
            if (player.getInventory().contains(new ItemStack(ModItems.FIRE_PROTECTION_POPPET.get()))) {
                player.getInventory().removeItem(new ItemStack(ModItems.FIRE_PROTECTION_POPPET.get()));
            }
        }
    }

In a sense, I am trying to "use up" the item when the player dies without them literally dying (like the totem of undying). I'm not exactly sure how to check the way the totem of undying works, but any tips would be appreciated.

when you say that it isnt working what specifically isnt working because you are now talking about remaking totem of undying for your custom item. Im going to assume you are wondering how to make your player not die. Just cancel the event. You can read the docs on LivingDeathEvent here

for future reference, you need to look up the class in your IDE. For IntelliJ its Ctrl+N

  • Like 1
Link to comment
Share on other sites

Posted (edited)
14 hours ago, sfxprt2 said:

when you say that it isnt working what specifically isnt working because you are now talking about remaking totem of undying for your custom item. Im going to assume you are wondering how to make your player not die. Just cancel the event. You can read the docs on LivingDeathEvent here

for future reference, you need to look up the class in your IDE. For IntelliJ its Ctrl+N

Thanks for the response. I ended up going with this:
 

public class PlayerDeathHandler {

    @SubscribeEvent
    public void playerKilled(LivingDeathEvent event) {
        if (event.getEntity() instanceof Player player) {
            ItemStack poppetStack = new ItemStack(ModItems.DEATH_PROTECTION_POPPET.get());

            if (player.getInventory().contains(poppetStack)) {
                event.setCanceled(true);
                
                player.setHealth(player.getMaxHealth());
                
                for (int i = 0; i < player.getInventory().getContainerSize(); i++) {
                    ItemStack stackInSlot = player.getInventory().getItem(i);
                    if (stackInSlot.getItem() == poppetStack.getItem()) {
                        stackInSlot.shrink(1);
                        if (stackInSlot.isEmpty()) {
                            player.getInventory().setItem(i, ItemStack.EMPTY);
                        }
                        break;
                    }
                }
            }
        }
    }
}

It works like a charm, but are there any issues that COULD arise using this? I don't have much experience with Forge, so I'm not sure about the common issues and whatnot.

Edited by Naamah

tenor.gif?itemid=27352888

 

Not even gonna lie, I think I have autism

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.



×
×
  • Create New...

Important Information

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