Win4Win

CC Turtle Lithium Generator

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