Facebook
From i don't know man, 4 Years ago, written in Plain Text.
This paste is a reply to 3x3 with torches minig turtle from i don't know man - go back
Embed
function digIt()
  while turtle.detect() do
    turtle.dig()
    os.sleep(0.5)
  end
  turtle.forward()
  while turtle.detectDown() or turtle.detectUp() do
    turtle.digUp()
    turtle.digDown()
  end
end

function placeTorch()
  turtle.select(16)
  turtle.placeUp()
end

local run = 0
term.write("Tunnel length: ")
run = read()

for i = 1, run do
  k = i - 1
  j = k % 4
  digIt()
  turtle.turnLeft()
  digIt()
  turtle.turnRight()
  turtle.turnRight()
  turtle.forward()
  digIt()
  turtle.back()
  turtle.turnLeft()
  if i == 2 or j == 1 then
    turtle.back()
    turtle.turnRight()
    turtle.forward()
    placeTorch()
    turtle.back()
    turtle.back()
    placeTorch()
    turtle.forward()
    turtle.turnLeft()
    turtle.forward()
  end
end