Advertisement
Guest User

quarry

a guest
Nov 24th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. turtle.up()
  2. turtle.select(2)
  3. turtle.placeDown()
  4. x = 1
  5. while x<65 do
  6.   x = x + 1
  7.   turtle.dig()
  8.   turtle.forward()
  9.   end
  10. turtle.digDown()
  11. turtle.down()
  12. turtle.select(1)
  13. turtle.placeDown()
  14. turtle.up()
  15. turtle.select(2)
  16. turtle.placeDown()
  17. turtle.turnRight()
  18. turtle.turnRight()
  19. x = 1
  20. while x<65 do
  21.   x = x + 1
  22.   turtle.dig()
  23.   turtle.forward()
  24.   end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement