Advertisement
Efud933

Farm4

Dec 31st, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function moveDetect()
  2. blockInFront = turtle.detect()
  3. if blockInFront == false then
  4. turtle.forward(1)
  5. end
  6. end
  7. --moveDetect()
  8.  
  9. function plant()
  10. local success, data = turtle.inspectDown()
  11. if success then
  12. cropAge = data.state.age
  13. print(cropAge)
  14. if cropAge == 7 then
  15. turtle.digDown()
  16. turtle.select(2)
  17. turtle.placeDown()
  18. end
  19. end
  20. end
  21.  
  22. --plant()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement