Marlingaming

CC Tweaked Personal Turtle - Main

Feb 3rd, 2022 (edited)
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function checkFuel()
  2. local fuel = turtle.getFuel()
  3. if fuel > 30 then
  4. return true
  5. else
  6. return false
  7. end
  8. end
  9.  
  10. function Start()
  11. if checkFuel() == false then
  12. os.shutdown()
  13. else
  14. shell.run("Tools","Speaker","bit",2.0)
  15. Main()
  16. end
  17. end
  18.  
  19. function Main()
  20.  
  21. end
  22.  
Add Comment
Please, Sign In to add comment