Advertisement
Guest User

muurtje

a guest
Apr 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. x=3
  2. hoog=3
  3.  
  4. function vooruit()
  5. for i=1, x do
  6. turtle.forward()
  7. end
  8. end
  9.  
  10. function acteruitBouwen()
  11. for i=1, x do
  12. turtle.back()
  13. turtle.place()
  14. end
  15. end
  16.  
  17. function niveauOmhoog()
  18. turtle.up()
  19. end
  20.  
  21. for i=1, hoog do
  22. vooruit()
  23. acteruitBouwen()
  24. niveauOmhoog()
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement