Advertisement
ingo-hirsch

weizenfarm

Feb 6th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function links()
  2. turtle.turnLeft()
  3. turtle.forward()
  4. turtle.turnLeft()
  5. end
  6. function move()
  7. for x=1,8 do
  8. turtle.forward()
  9. turtle.digDown()
  10. turtle.placeDown()
  11. end
  12. end
  13. function rechts()
  14. turtle.turnRight()
  15. turtle.forward()
  16. turtle.turnRight()
  17. end
  18.  
  19.  
  20. turtle.up()
  21. move()
  22. links()
  23. move()
  24. rechts()
  25. move()
  26. links()
  27. move()
  28.  
  29. rechts()
  30. move()
  31. links()
  32. move()
  33.  
  34. rechts()
  35. move()
  36. links()
  37. move()
  38. rechts()
  39. move()
  40.  
  41. turtle.down()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement