Advertisement
Guest User

fdig

a guest
Dec 5th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.53 KB | None | 0 0
  1. -- Made by The_Cat(Computer Craft forums Name) AKA Maxidoo(Minecraft IGN)
  2. -- Version 1.0 --
  3. function tryForward() --Loops to dig infront and checks for gravel and moves forward
  4.     while turtle.detect() == true do
  5.         turtle.dig()
  6.         sleep(.25)
  7.     end
  8.     turtle.forward()
  9. end
  10.  
  11.  
  12. function checkUp() --Checks for gravel and digs up and down for 3x3
  13.     while turtle.detectUp() == true do
  14.         turtle.attackUp()
  15.         turtle.digUp()
  16.         turtle.digDown()
  17.         sleep(.25)
  18.     end
  19.     turtle.digUp()
  20.     turtle.digDown()
  21. end
  22.  
  23. function tDig() --Digs the main 3x3 tunnel
  24.     tryForward()
  25.     checkUp()
  26.     turtle.turnLeft()
  27.     tryForward()
  28.     checkUp()
  29.     tryForward()
  30.     checkUp()  
  31.     turtle.turnRight()
  32.     tryForward()
  33.     checkUp()
  34.     turtle.turnRight()
  35.     tryForward()
  36.     checkUp()
  37.     tryForward()
  38.     checkUp()
  39.     turtle.turnLeft()
  40. end
  41.  
  42. function digRight() --Digs right on the strip mining
  43.     tryForward()
  44.     checkUp()
  45.     for i = 1, inputStripMineLength do
  46.         tryForward()
  47.         checkUp()
  48.         comeBack = i + 1
  49.     end
  50.     for g = 1, comeBack do
  51.         turtle.back()
  52.     end
  53.     turtle.turnLeft()
  54. end
  55.  
  56. function digLeft() --Digs left on the strip mining
  57.     tryForward()
  58.     checkUp()
  59.     for v = 1, inputStripMineLength do
  60.         tryForward()
  61.         checkUp()
  62.         comeBack = v + 1
  63.     end
  64.     for x = 1, comeBack do
  65.         turtle.back()
  66.     end
  67.     turtle.turnRight()
  68. end
  69.  
  70. function rePos() --This alligns the turtle to the middle of the 3x3 then sends back to the start of the main tunnel
  71.     turtle.turnLeft()
  72.     turtle.forward()
  73.     turtle.turnRight()
  74.     for i = 1, inputTunnelLength do
  75.         turtle.back()
  76.     end
  77. end
  78.  
  79. term.clear()
  80. term.setCursorPos(1,1)
  81.  
  82. write("Enter the length of the main tunnel(3x3): ")
  83. inputTunnelLength = read() --Takes input for the main tunnel length
  84.  
  85. write("\nDo you want strip mining?(y/n): ")
  86. inputStripMining = read() --Takes input for stip mining is y or n
  87.  
  88. if inputStripMining == "y" then
  89.     write("\nHow long would you like the strip mine to be? ")
  90.     inputStripMineLength = read() --Takes in the length of the strip mine
  91. end
  92.  
  93. for i = 1, inputTunnelLength / 2 do --Loops whole code I divided by 2 becuase the "tDig" function move two spaces forward
  94.     tDig()
  95.     if inputStripMining == "y" and i == inputTunnelLength / 2 then -- checks to see if strip mining is set to yes or no
  96.         rePos() --Returns Turtle to start of the mine to start stip mining
  97.         for i = 1, inputTunnelLength / 2 do --Loops the stip mining until it reaches the same length as the tuneel Only even numbers work well for this
  98.             turtle.forward()
  99.             turtle.forward()
  100.             turtle.turnRight()
  101.             digRight()
  102.             turtle.turnLeft()
  103.             digLeft()
  104.         end
  105.     end
  106. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement