Advertisement
No_Zen

ElectricDrop

Apr 22nd, 2024 (edited)
1,092
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1, 1)
  3. turtle.select(1)
  4.  
  5. while true do
  6.     local count = turtle.getItemCount()
  7.     if count > 0 then
  8.         turtle.dropDown(1)
  9.     else
  10.         local slot = turtle.getSelectedSlot()
  11.         if slot == 16 then
  12.             turtle.select(1)
  13.         else
  14.             turtle.select(slot + 1)
  15.         end
  16.     end
  17.     os.sleep(0.2)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement