Remove specific drops on death

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

MarsSMTH

Member
Sep 18, 2023
3
0
1
16
I want to make it so if you die certain items dont drop. Lets say a nether brick. How would i do that?
 
I want to make it so if you die certain items dont drop. Lets say a nether brick. How would i do that?
Simple.

Code:
on death:
    set {lol} to nether bricks
    loop drops:
        if loop-item contains {lol}:
            remove {lol} from drops
            set {drops::%victim's uuid%} to true

on respawn:
    if {drops::%player's uuid%} is true:
        add {lol} to player's inventory
        set {drops::%player's uuid%} to false

idk if this works so like don't hold me accountable-
 
  • Like
Reactions: Luke_Sky_Walker