Advertisement
Pyro93735

The Gravel Dropper

Sep 5th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. slotCount = 1
  2. stackCount = turtle.getItemCount(slotCount)
  3. turtle.select(3)
  4. turtle.refuel(2)
  5. turtle.forward()
  6. turtle.select(slotCount)
  7. while true do
  8. while turtle.compareTo(1) do
  9. if (stackCount == 0) then
  10. slotCount = slotCount + 1
  11. turtle.select(slotCount)
  12. end
  13. turtle.placeDown()
  14. stackCount = turtle.getItemCount(slotCount)
  15. turtle.forward()
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement