Advertisement
Guest User

R

a guest
Jul 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.16 KB | None | 0 0
  1. term.setTextColor(colors.green)
  2. print("Going to work!")
  3.  
  4. for i = 1, 7
  5. do
  6.     turtle.place()
  7.     turtle.turnRight()
  8.     turtle.forward()
  9.     turtle.turnLeft()
  10. end
  11.  
  12. turtle.forward()
  13. turtle.forward()
  14. turtle.forward()
  15. turtle.turnLeft()
  16. turtle.forward()
  17. turtle.turnLeft()
  18. turtle.select(2)
  19.  
  20. for i = 1, 6
  21. do
  22.     turtle.place()
  23.     turtle.turnRight()
  24.     turtle.forward()
  25.     turtle.turnLeft()
  26. end
  27.  
  28. turtle.place()
  29. turtle.turnRight()
  30. turtle.forward()
  31. turtle.turnRight()
  32. turtle.forward()
  33. turtle.forward()
  34. turtle.forward()
  35. turtle.turnRight()
  36. turtle.forward()
  37. turtle.turnRight()
  38. turtle.select(3)
  39.  
  40. for i = 1, 7
  41. do
  42.     turtle.place()
  43.     turtle.turnLeft()
  44.     turtle.forward()
  45.     turtle.turnRight()
  46. end
  47.  
  48. turtle.forward()
  49. turtle.forward()
  50. turtle.forward()
  51. turtle.turnRight()
  52. turtle.forward()
  53. turtle.turnRight()
  54. turtle.select(4)
  55.  
  56. for i = 1, 6
  57. do
  58.     turtle.place()
  59.     turtle.turnLeft()
  60.     turtle.forward()
  61.     turtle.turnRight()
  62. end
  63.  
  64. turtle.place()
  65. turtle.turnLeft()
  66. turtle.forward()
  67. turtle.turnLeft()
  68. turtle.forward()
  69. turtle.forward()
  70. turtle.forward()
  71. turtle.turnLeft()
  72. tuetle.forward()
  73. turtle.turnLeft()
  74.  
  75. print("Work is done!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement