Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require("Tables")
- function TransferToShulker () do
- slot = turtle.getSelectedSlot()
- turtle.select(16)
- if turtle.getItemCount() == 0 then
- return
- end
- turtle.select(2)
- turtle.placeDown()
- for i = 2, 16 do
- turtle.select(i)
- turtle.dropDown(turtle.getItemCount())
- end
- turtle.select(2)
- turtle.digDown()
- turtle.select(slot)
- end
- end
- function DumpExclusive(arr) do
- for i = 1, 16 do
- if not contains(arr, i) then
- turtle.select(i)
- turtle.dropDown()
- end
- end
- end
- end
- ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement