Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local count = 0
- term.write("How many blocks forward? :")
- count = read()
- function Down()
- for i = 1, count do
- turtle.digDown()
- turtle.dig()
- turtle.down()
- turtle.dig()
- turtle.forward()
- turtle.dig()
- turtle.forward()
- turtle.digUp()
- end
- --turtle.turnRight()
- --turtle.dig()
- --turtle.forward()
- --turtle.turnLeft()
- --turtle.dig()
- --while count > 0 do
- -- turtle.digUp()
- -- turtle.Up()
- -- turtle.dig()
- -- count = count - 1
- --end
- end
- turtle.dig()
- --turtle.forward()
- Down()
- print("Job's Done!")
Advertisement
Add Comment
Please, Sign In to add comment