Advertisement
Guest User

EE

a guest
Feb 22nd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. turtle.select(1)
  2. for i=1,3 do
  3.   turtle.place()
  4.   turtle.turnRight()
  5.   turtle.forward()
  6.   turtle.turnLeft()
  7. end
  8.  
  9. turtle.turnRight()
  10. turtle.forward()
  11. turtle.turnRight()
  12. turtle.back()
  13. turtle.select(2)
  14. turtle.place()
  15. turtle.turnLeft()
  16. turtle.select(4)
  17. turtle.place()
  18. turtle.turnRight()
  19. turtle.back()
  20. turtle.select(3)
  21. turtle.place()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement