Advertisement
BransYT

LINE2

Jul 13th, 2024 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- 1 - blue
  2. -- 2 - white
  3.  
  4.  
  5. -- ARRAY
  6.  
  7. image = {
  8. {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},
  9. {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1},
  10. {1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1},
  11. {1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1},
  12. {1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1},
  13. {1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1},
  14. {1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1},
  15. {1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1},
  16. {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
  17. }
  18. function buildline(line)
  19.     for i = 1,#line do
  20.         slot=line[i]
  21.       turtle.select(slot)
  22.       turtle.placeDown()
  23.       turtle.forward()
  24.     end
  25.     for W = 1,#line do
  26.         turtle.back()
  27.     end
  28.     turtle.turnRight()
  29.     turtle.forward()
  30.     turtle.turnLeft()
  31. end
  32.  
  33. for i=1, #image do
  34.     buildline(image[i])
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement