Advertisement
j38k

FrFr3DdE3

Mar 26th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. while turtle.detect() do
  2. turtle.dig()
  3. print("Digging the block")
  4. turtle.up()
  5. print("Moving up")
  6. end
  7. while not turtle.detect() and not turtle.detectDown() do
  8. turtle.down()
  9. print("Moving down")
  10. end
  11. while turtle.detect("chest") do
  12. turtle.unload
  13. print("unload to chest")
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement