TKArchie

Wheat Farmer

Aug 6th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. function harvest()
  2. turtle.forward()
  3. turtle.turnRight()
  4. turtle.dig()
  5. turtle.select(2)
  6. turtle.place()
  7. turtle.turnLeft()
  8. end
  9.  
  10. while true do
  11. while turtle.detectUp()==false do
  12. harvest()
  13. end
  14. turtle.turnRight()
  15. turtle.forward()
  16. while turtle.detectUp()==false do
  17. turtle.forward()
  18. end
  19. turtle.turnRight()
  20. turtle.forward()
  21. while turtle.detectUp()==false do
  22. harvest()
  23. end
  24. turtle.turnRight()
  25. turtle.forward()
  26. while turtle.detectUp()==false do
  27. turtle.forward()
  28. end
  29. turtle.turnRight()
  30. turtle.forward()
  31. print("Sleeping for 10 Minutes")
  32. sleep(600)
  33. end
Advertisement
Add Comment
Please, Sign In to add comment