TKArchie

Farming Turtle

Mar 16th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. while turtle.detectDown() do
  2. turtle.dig()
  3. turtle.select(1)
  4. turtle.place()
  5. turtle.select(2)
  6. turtle.place()
  7. turtle.select(3)
  8. turtle.dig()
  9. turtle.turnLeft()
  10. turtle.drop()
  11. turtle.turnLeft()
  12. turtle.select(2)
  13. if turtle.getItemSpace() < 1 then
  14. turtle.suck()
  15. turtle.turnLeft()
  16. else
  17. turtle.turnLeft()
  18. end
  19. turtle.select(4)
  20. turtle.drop()
  21. turtle.select(1)
  22. turtle.drop()
  23. turtle.suck()
  24. turtle.turnLeft()
  25. end
Advertisement
Add Comment
Please, Sign In to add comment