Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local h = 1
- function digMove()
- turtle.down()
- turtle.digDown()
- end
- turtle.digDown()
- while not turtle.detectDown() do
- digMove()
- end
- turtle.select(1)
- while h < 100 do
- turtle.up()
- turtle.placeDown()
- if turtle.getItemCount(1)<3 then
- turtle.select(2)
- turtle.transferTo(1)
- turtle.select(1)
- end
- h = h + 1
- end
- run()
Advertisement
Add Comment
Please, Sign In to add comment