Advertisement
Win4Win

Turtle Suck Up

Dec 3rd, 2021 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. count = 1
  2. turtle.select(1)
  3.  
  4. while true do
  5.  
  6. if (count == 1) then
  7. turtle.suckUp(64)
  8. end
  9.  
  10. while (turtle.getItemCount(count) > 0) do
  11.  
  12. sleep(0.10)
  13.  
  14. end
  15.  
  16. if (count + 1 > 16) then
  17. count = 1
  18. else
  19. count = count + 1
  20. end
  21. turtle.select(count)
  22. sleep(0.10)
  23.  
  24. end
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement