Advertisement
iMontouch

Turtle Builder: Cactus Farm Part 2 (Fence)

May 22nd, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. -- Slot 1: Fence
  2.  
  3. local i = 0
  4. while(i<32)
  5. {
  6. turtle.up()
  7. turtle.up()
  8. turtle.up()
  9. turtle.select(1)
  10. turtle.placeDown()
  11. turtle.up()
  12. i = i + 1
  13. }
  14. turtle.forward()
  15. turtle.forward()
  16. i = 0
  17. while(i<128)
  18. {
  19. turtle.down()
  20. i = i + 1
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement