Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --0-do not replace
- --1-netherrack
- --2-obsidian
- --3-gold
- --4-diamond
- myArt = {
- {0, 0, 1, 1},
- {0, 1, 1},
- {1, 1},
- {2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 1},
- {2, 0, 0, 0, 0, 0, 2, 0, 0, 1, 3, 1, 3, 1},
- {2, 0, 0, 0, 0, 0, 2, 1, 1, 1, 1, 4, 1, 1},
- {2, 0, 0, 0 ,0, 0, 2, 0, 0, 1, 3, 1, 3, 1},
- {2, 2, 2, 2, 2, 2, 2, 0, 0, 0, 1, 1, 1},
- {1, 1},
- {0, 1, 1},
- {0, 0, 1, 1}
- }
- function buildline(line)
- for i = 1,#line do
- slot=line[i]
- if slot ~= 0 then
- turtle.select(slot)
- turtle.placeDown()
- end
- turtle.up()
- end
- turtle.forward()
- for i=1,#line do
- turtle.down()
- end
- end
- for i = 1,11 do
- line = myArt[i]
- buildline(line)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement