Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1.  
  2. local function plow()
  3. a,b = turtle.inspectDown()
  4. if a==TRUE then
  5. if b.name=="minecraft:wheat" then
  6. if b.metadata==7 then
  7. if turtle.getFuelLevel<10 then
  8. turtle.refuel(1)
  9. end
  10. turtle.digDown()
  11. end
  12. end
  13. end
  14.  
  15. while true do
  16. for i=1,9 do
  17. for j=1,9 do
  18. plow()
  19. turtle.forward()
  20. end
  21. turtle.turnRight()
  22. turtle.forward()
  23. turtle.turnRight()
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement