TJtheDJ701

Untitled

Oct 2nd, 2021 (edited)
762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function wait()
  2.     sleep(5)
  3.     print(turtle.getFuelLevel())
  4. end
  5.  
  6. function dig()
  7.     turtle.dig()
  8.     turtle.suck()
  9.     turtle.dropDown()
  10.     redstone.setOutput("bottom", true)
  11.     sleep(1)
  12.     redstone.setOutput("bottom", false)
  13. inspect()
  14. end
  15.  
  16. function inspect()
  17.     local booleanValue, potatoInfo = turtle.inspect()
  18.         print(booleanValue)
  19.         if (booleanValue == true) then
  20.             print("grown")
  21.             dig()
  22.         else
  23.             --Fix
  24.             print("not grown")
  25.             wait()
  26.             inspect()
  27.         end
  28.     end
  29.  
  30. inspect()
Add Comment
Please, Sign In to add comment