Advertisement
Blackhome

Untitled

Feb 2nd, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. local a
  2. local b = 0
  3. print("Geben sie eine Entfernung an")
  4. a=tonumber(io.read())
  5.  
  6. function vor()
  7. while turtle.detect() == true do
  8. turtle.dig()
  9. end
  10. if turtle.forward() == true then
  11. b=b+1
  12. end
  13. end
  14.  
  15. while b<a do
  16. vor()
  17. print (b)
  18. end
  19. b=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement