How to stop dropped item for block break

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

Status
Not open for further replies.

K9Lil

Member
May 26, 2019
11
1
0
24
Im trying to figure out how to get rid of on mine of a melon dont drop anything if you know how to do this please comment with an explanation. ive tried doing cancel event set event block to air give player melon but it interfiers with another mechanism
 
Do you mean this?
Code:
on break:
    if event-block is melon_block:
        cancel the event
[doublepost=1559113816,1559113755][/doublepost]Or you can use this:


Code:
on break:
    if event-block is melon_block:
        clear drops
        cancel drops
 
Status
Not open for further replies.