Advertisement
MrFoxit

Minecraft auto mine x3

Feb 20th, 2025 (edited)
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | Gaming | 0 0
  1. turtle.select(16)
  2. turtle.refuel()
  3.  
  4. print("wait count")
  5. count = tonumber(read())
  6.  
  7. for i=1, count do
  8. for i=1, 3 do
  9. turtle.dig()
  10. turtle.turnRight()
  11. turtle.forward()
  12. turtle.turnLeft()
  13. turtle.dig()
  14. turtle.turnRight()
  15. turtle.forward()
  16. turtle.turnLeft()
  17. turtle.dig()
  18. turtle.turnLeft()
  19. turtle.forward()
  20. turtle.forward()
  21. turtle.turnRight()
  22. turtle.up()
  23. end
  24.  
  25. turtle.down()
  26. turtle.down()
  27. turtle.down()
  28. turtle.forward()
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement