Advertisement
goldfiction

dodig

Dec 26th, 2018
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function store()
  2. for i = 1, 16 do
  3. turtle.select(i)
  4. turtle.drop()
  5. end
  6. end
  7.  
  8. local t=0
  9. while turtle.detectDown() do
  10. t=t+1
  11. turtle.digDown()
  12. if(t>=64) then
  13. t=0
  14. store()
  15. end
  16. os.sleep(2)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement