Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 1 - Red
- -- 2 - black
- -- 3 - glass
- peremennaya = {7,7,7,3,3,4,1,2}
- q1 = {3,3,3,3,3,3,3,3}
- q2 = {3,3,3,3,2,2,3,3}
- e3 = {3,3,3,2,1,1,2,3}
- r4 = {3,3,2,1,1,1,2,3}
- t5 = {3,2,1,1,1,2,3,3}
- y6 = {3,3,2,1,1,1,2,3}
- u7 = {3,3,3,2,1,1,2,3}
- i8 = {3,3,3,3,2,2,3,3}
- o9 = {3,3,3,3,3,3,3,3}
- function buildLine(line)
- for i = 1, 8 do
- slot = line[i]
- turtle.select(slot)
- turtle.placeDown()
- turtle.forward()
- end
- for i = 1, 8 do
- turtle.back()
- end
- turtle.turnRight()
- turtle.forward()
- turtle.turnLeft()
- end
- buildLine(q1)
- buildLine(q2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement