Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- find center of dome, step back and place turtle facing left.
- -- Turtle will move forward, and through a series of right turns and
- -- up commands will build the column out of hardened glass.
- -- Requires 1 stack for every 8 levels. First draft will assume dome is 32 blocks or less, ergo
- -- slots 1-4 are hardened glass
- -- slots 5-16 (as needed) will be computers
- -- turtle will end up under dome (which should be open already)
- glass=1
- for y=1, 4 do
- turtle.select(glass)
- for x=1, 8 do
- if not turtle.detectUp() then
- turtle.up()
- turtle.placeDown()
- turtle.forward()
- end
- if x=1 or x=3 or x=5 or x=7 then
- turtle.turnRight()
- end
- end
- turtle.up()
- glass=glass+1
- end
- turtle.turnRight()
- turtle.forward()
- -- may want to do a 360 and fill in with glass as we should be at top of dome now
- while turtle.down() do
- -- still need to add slots for computer parts, but need to figure out how many and what
- -- orientation makes sense.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement