Advertisement
Guest User

cycle

a guest
Dec 20th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. function deploy()
  2.    turtle.select(1)
  3.    turtle.place()
  4. end
  5.  
  6. function clearInv()
  7.    for i = 1,10 do
  8.       turtle.select(i)
  9.       turtle.dropDown()
  10.    end
  11.    turtle.select(1)
  12. end
  13.  
  14. function getMiner()
  15.    turtle.select(1)
  16.    turtle.dig()
  17. end
  18.  
  19. deploy()
  20. sleep(42)
  21. clearInv()
  22. getMiner()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement