Advertisement
100Toby1

Untitled

Apr 25th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. local baseheight = 20
  2.  
  3. function placeRing()
  4. turtle.up()
  5. turtle.turnLeft()
  6. turtle.placeDown()
  7. turtle.forward()
  8. turtle.placeDown()
  9. turtle.forward()
  10. turtle.turnRight()
  11. turtle.forward()
  12. turtle.placeDown()
  13. turtle.forward()
  14. turtle.placeDown()
  15. turtle.forward()
  16. turtle.placeDown()
  17. turtle.forward()
  18. turtle.turnRight()
  19. turtle.forward()
  20. turtle.placeDown()
  21. turtle.forward()
  22. turtle.placeDown()
  23. turtle.forward()
  24. turtle.placeDown()
  25. turtle.forward()
  26. turtle.turnRight()
  27. turtle.forward()
  28. turtle.placeDown()
  29. turtle.forward()
  30. turtle.placeDown()
  31. turtle.forward()
  32. turtle.placeDown()
  33. turtle.forward()
  34. turtle.turnRight()
  35. turtle.forward()
  36. turtle.placeDown()
  37. turtle.forward()
  38. turtle.turnRight()
  39. end
  40.  
  41. function buildBase()
  42. local curheight = 0
  43. while curheight < baseheight do
  44. placeRing()
  45. end
  46. end
  47.  
  48. buildBase()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement