Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. turtle.select(1)
  2. local function forward(x)
  3. for i = 1, x do
  4. turtle.forward()
  5. turtle.digDown()
  6. turtle.placeDown()
  7. end
  8. end
  9. forward(10) -- move forward 10 blocks
  10. turtle.turnLeft()
  11. forward(1)
  12. turtle.turnLeft()
  13. forward(9)
  14. turtle.turnRight()
  15. forward(1)
  16. turtle.turnRight()
  17. forward(9)
  18. turtle.turnLeft()
  19. forward(1)
  20. turtle.turnLeft()
  21. forward(10)
  22. turtle.turnLeft()
  23. forward(3)
  24. turtle.turnLeft()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement