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

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Bedrock mining - with real mine

Discussion in 'Requests' started by kshishu, Mar 6, 2022.

  1. kshishu

    kshishu Member

    Joined:
    Feb 28, 2022
    Messages:
    1
    Likes Received:
    0
    Hi :emoji_slight_smile:

    Can anyone help me with small script?

    I want to write script that can mine bedrock - normal mine like mining (obsidian,diamond ore).
    I know that I can use "on leftclick on bedrock:" - but this I can click on every bedrock around me...

    I want to mining at least 5s bedrock. Of course I was trying to write script but with no successful. :emoji_frowning:
     
  2. Stranger

    Stranger Member

    Joined:
    Sep 6, 2022
    Messages:
    3
    Likes Received:
    0
    Hello, if you still need a skript I made one that should work...

    on leftclick with a netherite pickaxe:
    (tab)if block is bedrock:
    (tab)(tab)if {block.%player%} is true:
    cancel event
    if {block.%player%} is false:
    set {block.%player%} to true
    wait 12 seconds
    break block
    drop bedrock
    set {block.%player%} to false

    on leftclick with a diamond pickaxe:
    if block is bedrock:
    if {block.%player%} is true:
    cancel event
    if {block.%player%} is false:
    set {block.%player%} to true
    wait 15 seconds
    break block
    drop bedrock
    set {block.%player%} to false​

    if there are any problems feel free to mention them and if you want to change how long it take to break the block, change the wait time
     

    Attached Files:

    #2 Stranger, Sep 6, 2022
    Last edited: Sep 6, 2022

Share This Page

Loading...