Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function forward3()
- turtle.forward()
- blocks()
- turtle.forward()
- blocks()
- turtle.forward()
- blocks()
- end
- local function forward2()
- turtle.forward()
- blocks()
- turtle.forward()
- blocks()
- end
- local function back()
- turtle.turnRight()
- turtle.down()
- turtle.turnRight()
- turtle.turnRight()
- end
- function blocks()
- if turtle.inspectDown() == ("Botania:livingrock") then
- turtle.forward()
- else
- turtle.select(2)
- turtle.placeDown()
- end
- end
- turtle.up()
- forward3()
- turtle.turnLeft()
- forward2()
- turtle.turnLeft()
- forward2()
- turtle.turnLeft()
- forward2()
- back()
Advertisement
Add Comment
Please, Sign In to add comment