DanielBoling

Cobblestone Miner 1.0 (Not Tested)

Jan 24th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. function main()
  2.     term.clear()
  3.     term.setCursorPos(1,1)
  4.     print("Cobblestone Miner 1.0")
  5.     turtle.select(1)
  6.     while turtle.detectDown() do
  7.         turtle.digDown()
  8.         turtle.drop()
  9.     end
  10. end
  11.  
  12. main()
Advertisement
Add Comment
Please, Sign In to add comment