Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. turtle.refuel()
  2. print("refuel")
  3. DEPTH = 0
  4. local function checkAround()
  5. i = 0
  6. turtle.select(2)
  7. while i<4 do
  8. if not turtle.compare() then
  9. turtle.dig()
  10. end
  11. turtle.turnLeft()
  12. i = i+1
  13. end
  14. turtle.select(1)
  15. end
  16.  
  17. local function getBackUp()
  18. while DEPTH do
  19. turtle.up()
  20. DEPTH = DEPTH - 1
  21. end
  22. end
  23.  
  24.  
  25. while true do
  26. checkAround()
  27. if turtle.digDown() then
  28. turtle.down()
  29. DEPTH = DEPTH + 1
  30. else
  31. getBackUp()
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement