If the player is breaking the ores with nothing, nothing happends.

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

habbic

Member
Mar 18, 2024
29
0
1
24
Code:
on mine:
    if event-block is coal ore or redstone ore or gold ore or lapis lazuli ore:
        if player's held item is not iron pickaxe:
            set event-block to bedrock
            wait 1.5 seconds
            send action bar "&c&lYou got nothing seems weird..."
        else:
            if player's held item is iron pickaxe:
                clear drops
                send action bar "&e&lAdded Credits to your Account you have %{credits::%player's uuid%}%"
                add 10 or 20 or 15 or 50 or 30 to {credits::%player's uuid%}
                set event-block to bedrock
                wait 1.5 seconds
                set event-block to coal ore or redstone ore or gold ore or lapis lazuli ore
 
If you use 'on mine', only events where the broken block dropped something will call the trigger.
AppleScript:
on break:
    if event-block is not coal ore or redstone ore or gold ore or lapis lazuli ore:
        stop
    if player's held item is not iron pickaxe:
        cancel event
        set event-block to bedrock
        send action bar "&c&lYou got nothing seems weird..."
    else:
        cancel event
        send action bar "&e&lAdded Credits to your Account you have %{credits::%player's uuid%}%"
        add 10 or 20 or 15 or 50 or 30 to {credits::%player's uuid%}
        set event-block to bedrock
    wait 1.5 seconds
    set event-block to coal ore or redstone ore or gold ore or lapis lazuli ore