Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Auswahl = 1 + 0
  2. function Blockcheck()
  3. if turtle.getItemCount(Auswahl) == 0 then
  4. Auswahl = Auswahl + 1
  5. turtle.select(Auswahl)
  6. end
  7. end
  8. while true do
  9. turtle.forward()
  10. Blockcheck()
  11. turtle.placeDown()
  12. turtle.turnRight()
  13. turtle.forward()
  14. Blockcheck()
  15. turtle.placeDown()
  16. turtle.forward()
  17. Blockcheck()
  18. turtle.placeDown()
  19. turtle.turnLeft()
  20. turtle.forward()
  21. Blockcheck()
  22. turtle.placeDown()
  23. turtle.turnLeft()
  24. turtle.forward()
  25. Blockcheck()
  26. turtle.placeDown()
  27. turtle.forward()
  28. Blockcheck()
  29. turtle.placeDown()
  30. turtle.turnRight()
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement