Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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

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

  • Author
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

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.