Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function store()
- for i = 1, 16 do
- turtle.select(i)
- turtle.drop()
- end
- end
- local t=0
- while turtle.detectDown() do
- t=t+1
- turtle.digDown()
- if(t>=64) then
- t=0
- store()
- end
- os.sleep(2)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement