Advertisement
CanadianMRE

Untitled

Jan 25th, 2022 (edited)
1,148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. function CleanupInventory()
  2.     for i=1,16 do
  3.         if turtle.getItemDetail(i, true) then
  4.             if turtle.getItemDetail(i, true).lore ~= nil then
  5.                 turtle.select(i)
  6.                 turtle.transferTo(1)
  7.             else
  8.                 turtle.select(i)
  9.                 turtle.dropDown()
  10.             end
  11.         end
  12.     end
  13. end
  14.  
  15. while true do
  16.     turtle.select(1)
  17.     turtle.place()
  18.     turtle.suck(5)
  19.     turtle.dig()
  20.  
  21.     CleanupInventory()
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement