sweetjebus

tdig

Apr 8th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.74 KB | None | 0 0
  1. -- Setting Up Input
  2.  
  3. term.clear()
  4. term.setCursorPos(1,1)
  5. print("Place Torches In Slot 1 And Gravel In Slot 2")
  6. print("Distance To Dig?")
  7. x = read()
  8. print("Torch Spacing How Far Apart?")
  9. y = read()
  10.  
  11. -- Starting Torch
  12.  
  13. turtle.digDown()
  14. turtle.select(1)
  15. turtle.placeDown()
  16.  
  17. -- Digger Setup
  18.  
  19. t = 0
  20. for i = 1, x do
  21.  
  22. if turtle.detect() then
  23.    turtle.select(2)
  24.   if turtle.compare then --For Some Reason The Lack Of Brackets Doesn't Matter, Probably Can Remove This Part.
  25.    repeat turtle.dig()
  26.    sleep(0.1)
  27.   until turtle.compare() == false
  28.  end
  29.   else turtle.dig()
  30.    turtle.forward()
  31.    turtle.digDown()
  32.   t = t + 1
  33. end
  34.  
  35. -- Torches Setup
  36.  
  37. if t >= y + 0 then
  38.    turtle.select(1)
  39.    turtle.placeDown()
  40.    t = t - y
  41. end
  42. end
Add Comment
Please, Sign In to add comment