Advertisement
Pyro93735

fenceDropper

Apr 5th, 2014
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. count = 256
  2. slot = 2
  3. turtle.select(1)
  4. turtle.refuel(8)
  5. turtle.select(slot)
  6. while(count > 0) do
  7. if(turtle.getItemCount(slot)<2) then
  8. slot = slot + 1
  9. turtle.select(slot)
  10. end
  11. turtle.dig()
  12. turtle.forward()
  13. turtle.digDown()
  14. turtle.placeDown()
  15. count = count - 1
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement