Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("turtle")
- function gF(s)for i=1,s do turtle.forward()end end
- function gB(s)for i=1,s do turtle.back()end end
- function gU(s)for i=1,s do turtle.up()end end
- function gD(s)for i=1,s do turtle.down()end end
- function tL()turtle.turnLeft()end
- function tR()turtle.turnRight()end
- function pD()turtle.placeDown()end
- function sS(n)turtle.select(n)end
- function bW(l)for i=1,l do pD()gF(1)end end
- function bR(l)for i=1,l do pD()gF(1)pD()gB(1)tR()gF(1)tL()end end
- function bH()
- sS(1)pD()
- bW(8)tR()
- bW(8)tR()
- bW(8)tR()
- bW(8)
- gU(1)tL()
- gF(1)
- tL()
- bR(10)
- gU(1)tR()
- gF(9)
- tR()gD(1)
- end
- bH()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement