maxence01

Untitled

May 30th, 2024
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. while true do
  2. turtle.select(2)
  3. turtle.place()
  4.  
  5. turtle.select(16)
  6. if turtle.compare() == true then
  7.  
  8. i = 1
  9. while i <= 7 do
  10. turtle.select(9)
  11. turtle.dig()
  12. turtle.select(2)
  13. turtle.digUp()
  14. turtle.up()
  15. i = i + 1
  16. end
  17. i = 1
  18. while i <= 7 do
  19. turtle.down()
  20. i = i + 1
  21. end
  22. turtle.turnLeft()
  23. turtle.turnLeft()
  24. turtle.select(9)
  25. turtle.drop()
  26. turtle.turnLeft()
  27. turtle.turnLeft()
  28.  
  29. end
  30. sleep(3)
  31. end
Add Comment
Please, Sign In to add comment