Advertisement
kEOKIX

Untitled

May 7th, 2023
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function RefillSlots()
  2. turtle.digDown()
  3. for i = 1, 3 do
  4. turtle.select(i+5)
  5. turtle.placeDown()
  6. turtle.select(i)
  7. amount = turtle.getItemCount()
  8. amount = 64-amount
  9. turtle.suck(amount)
  10. sleep(0.5)
  11. turtle.digDown()
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement