Advertisement
iMontouch

Turtle Builder: Cactus Farm

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