Advertisement
Nicro

Quarry cover prototype enderless

Dec 31st, 2014
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.16 KB | None | 0 0
  1. local currSlot = 1
  2. local movefail = 0
  3. local startfail = 1
  4.  
  5. local function collision()
  6. print("I ran into something.")
  7. error()
  8. end
  9.  
  10. local function refuel()
  11. if turtle.getFuelLevel() < 10 then
  12. print("I ran out of fuel.")
  13. error()
  14. end
  15. end
  16.  
  17. local function material()
  18. turtle.select(currSlot)
  19. if turtle.compareTo(16) then
  20. else
  21. turtle.drop()
  22. end
  23. while turtle.getItemCount() == 0 do
  24. if currSlot == 16 then
  25. print("I ran out of material.")
  26. error()
  27. end
  28. currSlot = currSlot+1
  29. return material()
  30. end
  31. end
  32. local function advDig()
  33. while turtle.detect() do
  34. turtle.dig()
  35. if turtle.detect() then
  36. os.sleep(0.8)
  37. end
  38. end
  39. end
  40. while true do
  41. advDig()
  42. refuel()
  43. material()
  44. turtle.select(currSlot)
  45. if not turtle.forward() then
  46. collision()
  47. end
  48. if turtle.detectDown() and startfail == 1 then
  49. print("I think I started in the wrong spot, ")
  50. print("please place me in a")
  51. print("valid starting position.")
  52. error()
  53. end
  54. if startfail == 1 then
  55. startfail = 0
  56. end
  57. if turtle.detectDown() then
  58. movefail = movefail+1
  59. if movefail > 1 then
  60. print("I think I am done.")
  61. error()
  62. else turtle.back()
  63. turtle.turnRight()
  64. end
  65. else
  66. movefail = 0
  67. turtle.placeDown()
  68. end
  69. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement