Toushirou1989

Stripe Mine

Mar 17th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.85 KB | None | 0 0
  1. function DigTunnel(Int)
  2.         torch = 0
  3.          while Int > 0 do
  4.                  if turtle.detectUp() then
  5.                    turtle.digUp()
  6.                  end
  7.                  if turtle.detectDown() then
  8.                         turtle.digDown()
  9.                  end
  10.                   while turtle.detect() do
  11.                         turtle.dig()
  12.                          sleep(1.2)
  13.                    end
  14.                    if torch == 8 then
  15.                            turtle.select(2)
  16.                            turtle.placeDown()
  17.                            torch = 0
  18.                         end
  19.                            turtle.forward()
  20.                            torch = torch + 1
  21.                            Int = Int - 1
  22.                         end
  23. end
  24. DigTunnel(48)
  25. turtle.turnRight()
  26. DigTunnel(3)
  27. turtle.turnRight()
  28. DigTunnel(48)
Advertisement
Add Comment
Please, Sign In to add comment