Advertisement
Pyro93735

Untitled

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