Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 1 - red
- -- 2 - black
- -- 3 - white
- -- 4 - glass
- line1={4,4,4,4,4,4,4,4}
- line2={4,4,4,4,2,2,4,4}
- function buildLine(line)
- for i = 1,12 do
- slot=line[i]
- turtle.select(slot)
- turtle.placeDown()
- turtle.forward()
- end
- end
- buildLine(line1)
- buildLine(line2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement