Advertisement
ksaw000

invDump

Feb 3rd, 2021 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. require("programs/globalVars")
  2. turnAround()
  3. while (turtle.detect()) do --makes space for chests even if it has to dig mulitiple blocks
  4. turtle.dig()
  5. end
  6. turtle.select(3)
  7. turtle.place()
  8. for i=TOTAL_SLOTS,arg[2],-1 do
  9. turtle.select(i)
  10. turtle.drop()
  11. end
  12. turtle.select(3)
  13. turtle.dig()
  14. turnAround()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement