Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 2high
- targs = { ... }
- length = tonumber(targs[1])
- for i = 1,length do
- if not turtle.detectDown() then
- turtle.placeDown()
- end
- if turtle.detectUp() then
- turtle.digUp()
- end
- if turtle.detect() then
- turtle.dig()
- end
- if i<length then
- turtle.forward()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment