Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- rewrite of borethrough (lost turtle)
- -- generic tunnel through whatever until you hit air (with sand/gravel tolerance)
- while not turtle.forward() do
- turtle.digUp()
- turtle.dig()
- turtle.forward()
- -- turtle.digDown()
- -- note it doesn't necessarily detect fluids
- turtle.placeDown() -- just so I have something to walk on if there's air below but not in front
- end
- -- come back a bit in case it parks in lava
- turtle.turnRight()
- turtle.turnRight()
- for x=1,16 do
- turtle.Forward()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement