Advertisement
Burrito33

1 block harvest

Aug 21st, 2023 (edited)
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function destory()
  2. local success, data = turtle.inspectDown()
  3. if success then
  4. if (data["state"]["age"] == 7) then
  5. turtle.digDown()
  6. turtle.back()
  7. turtle.select(2)
  8. turtle.dropDown()
  9. turtle.forward()
  10. turtle.select(1)
  11. turtle.placeDown()
  12. end
  13. end
  14. end
  15. while true do
  16. destory()
  17. sleep(5) -- Sleep for 5 seconds
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement