Advertisement
Schneiderism

[FTB Turtle] Wheat Farming Program

Nov 23rd, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. --[[ Wheat Farming Program: [Mining Turtle] ]]
  2. while true do
  3. turtle.select(1)
  4. turtle.place()
  5. turtle.select(2)
  6. turtle.place()
  7. turtle.place()
  8. turtle.place()
  9. if turtle.getItemCount(2) == 0 then
  10. if turtle.suckUp() == false then
  11. print("Please refill the bonemeal container!")
  12. return
  13. end
  14. end
  15. turtle.select(1)
  16. turtle.dig()
  17. turtle.select(3)
  18. turtle.dropDown()
  19. turtle.select(4)
  20. turtle.dropDown()
  21. end
  22.  
  23. --[[ *This requires a turtle with a piece of tilled dirt in front of it, a chest with bonemeal on top, and an
  24. empty chest underneath it. Place seeds in the turtles first slot, and make sure there's water next to
  25. the tilled dirt ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement