Advertisement
Guest User

This may work...

a guest
Oct 15th, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.36 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3.  
  4. local function dig()
  5.   repeat until not turtle.digUp()
  6.   turtle.placeDown()
  7.   while not turtle.forward() do
  8.     turtle.dig()
  9.   end
  10. end
  11.  
  12. local function smartForward()
  13.   while not turtle.forward() do
  14.     if turtle.detect() then
  15.       turtle.dig()
  16.     elseif turtle.attack() then
  17.       print("Aggressive life forms detected!")
  18.     else
  19.       print("Impossible to move forward!")
  20.       return false
  21.     end
  22.   end
  23.   return false
  24. end
  25.  
  26. local function smartTorch()
  27.   while not turtle.place() do
  28.     if turtle.detect() then
  29.       turtle.dig()
  30.       y = math.floor(x / 8) - 1
  31.     end
  32.   end
  33. end
  34.      
  35.      
  36. local function torch()
  37.   turtle.placeDown()
  38.   turtle.select(16)
  39.   turtle.turnRight()
  40.   turtle.digUp()
  41.   turtle.dig()
  42.   smartTorch()
  43.   turtle.place()
  44.   turtle.turnLeft()
  45.   turtle.select(1)
  46. end
  47.  
  48. print("How Far?")
  49. y = read()
  50. w = math.floor(y * 4)
  51. while true do
  52.   for all = 1, y do
  53.  
  54.     smartForward()
  55.            
  56.     dig()
  57.  
  58.     torch()
  59.    
  60.   end
  61.  
  62.    turtle.turnLeft()
  63.    turtle.turnLeft()
  64.   for i = 1, w do
  65.     turtle.forward()
  66.     smartForward()
  67.   end
  68.   turtle.turnRight()
  69.   for z = 3, 14 do
  70.     turtle.select(y)
  71.     turtle.drop()
  72.   end
  73.  
  74.   turtle.turnLeft()
  75.   turtle.forward()
  76.   turtle.turnLeft()
  77.   turtle.forward()
  78.   turtle.forward()
  79.   turtle.forward()
  80.   turtle.turnLeft()
  81. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement