Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Setting Up Input
- term.clear()
- term.setCursorPos(1,1)
- print("Place Torches In Slot 1 And Gravel In Slot 2")
- print("Distance To Dig?")
- x = read()
- print("Torch Spacing How Far Apart?")
- y = read()
- -- Starting Torch
- turtle.digDown()
- turtle.select(1)
- turtle.placeDown()
- -- Digger Setup
- t = 0
- for i = 1, x do
- if turtle.detect() then
- turtle.select(2)
- if turtle.compare then --For Some Reason The Lack Of Brackets Doesn't Matter, Probably Can Remove This Part.
- repeat turtle.dig()
- sleep(0.1)
- until turtle.compare() == false
- end
- else turtle.dig()
- turtle.forward()
- turtle.digDown()
- t = t + 1
- end
- -- Torches Setup
- if t >= y + 0 then
- turtle.select(1)
- turtle.placeDown()
- t = t - y
- end
- end
Add Comment
Please, Sign In to add comment