Bedrock mining - with real mine

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

kshishu

Member
Feb 28, 2022
1
0
1
30
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:
 
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
 

Attachments

  • BedrockMining.txt
    528 bytes · Views: 114
Last edited: