Advertisement
Guest User

build

a guest
Jul 16th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. local x = 16
  2. turtle.select(1)
  3. turtle.up()
  4. for i = 1, x do
  5. turtle.forward()
  6. turtle.placeDown()
  7. end
  8. turtle.turnLeft()
  9. for u = 1, x - 1 do
  10. turtle.forward()
  11. turtle.placeDown()
  12. end
  13. turtle.select(2)
  14. turtle.turnLeft()
  15. for y = 1, x - 1 do
  16. turtle.forward()
  17. turtle.placeDown()
  18. end
  19. turtle.turnLeft()
  20. for t = 1, x - 1 do
  21. turtle.forward()
  22. turtle.placeDown()
  23. end
  24. turtle.turnLeft()
  25. turtle.back()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement