Advertisement
Alexandex100

Untitled

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