Advertisement
Guest User

not working

a guest
Feb 26th, 2014
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. local col = 1
  2. local loc = 1
  3.  
  4. function go()
  5. while not turtle.forward()
  6. turtle.dig()
  7. turtle.attack
  8. sleep(.5)
  9. turtle.forward()
  10. vDig()
  11. end
  12. end
  13.  
  14. function fuel()
  15. while true do
  16. if turtle.getFuelLevel() < 50 then
  17. print("current fuel is " ..turtle.getFuelLevel().. " need 50+")
  18. print("Please insert fuel source in slot 1")
  19. turtle.select(1)
  20. turtle.refuel()
  21. break
  22. else
  23. print(" We currently have " ..turtle.getFuelLevel().. " good to go!")
  24. sleep(2)
  25. break
  26. end
  27. end
  28. end
  29.  
  30. function clear()
  31. term.clear()
  32. term.setCursorPos(1,1)
  33. end
  34.  
  35. function yCount()
  36. turtle.digUp()
  37. turtle.up()
  38. loc = loc+1
  39. print(loc)
  40. end
  41.  
  42. function vDig()
  43. if turtle.detectUp() then
  44. repeat
  45. yCount()
  46. until turtle.detectUp() == false
  47. for i=1, loc do
  48. turtle.down()
  49. end
  50. end
  51. end
  52.  
  53.  
  54. function forward()
  55. for i=1, x do
  56. go()
  57. end
  58. end
  59.  
  60. function leftDig()
  61. forward()
  62. turtle.turnLeft()
  63. turtle.dig()
  64. turtle.forward()
  65. vDig()
  66. turtle.turnLeft()
  67. rightDig()
  68. end
  69.  
  70. function rightDig()
  71. forward()
  72. turtle.turnRight()
  73. turtle.dig()
  74. turtle.forward()
  75. vDig()
  76. turtle.turnRight()
  77. leftDig()
  78. end
  79.  
  80.  
  81. term.write("How many blocks forward? ")
  82. x = tonumber(io.read())
  83. clear()
  84.  
  85. while true do
  86. print("Do you want the turtle to turn")
  87. print("Right or Left? R/L ")
  88. local event, param1 = os.pullEvent ("char")
  89. if param1 == "l" then
  90. print(" You chose Left! ")
  91. direction = "Left"
  92.  
  93. sleep(2)
  94. break
  95.  
  96. elseif param1 == "r" then
  97. print("You chose Right! ")
  98. direction = "Right"
  99. sleep(2)
  100. break
  101. else
  102. print ("Not valid!")
  103. sleep(1.5)
  104. clear()
  105. end
  106. end
  107.  
  108. clear()
  109.  
  110. print("How many blocks to the " ..direction)
  111. print("do you want to go? ")
  112. y = tonumber(io.read())
  113.  
  114.  
  115.  
  116. clear()
  117. print("Checking fuel...")
  118. sleep(2)
  119. fuel()
  120. sleep(2)
  121.  
  122.  
  123. if direction == "Left" then
  124. print("Starting!")
  125. for i=1, y do
  126. leftDig()
  127. rightDig()
  128. end
  129. else
  130. print("Starting!")
  131. for i=1, y do
  132. rightDig()
  133. leftDig()
  134. end
  135. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement