Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- i = 5 --Number of times the turtle has dug
- u = 1 --Number of times the turtle has dug, in 5s
- --h = 1 --Now assigned by input
- s = 1 --Used to end program
- rednet.open("right")
- rednet.broadcast("mining")
- print("How many turtles would you like to use?(1 or 4)")
- t = read()
- if t == 1 then
- b = 0 --Used to determine how to control turtle
- end
- if t == 4 then
- b = 1 --Used to determine how to control turtles
- end
- rednet.open("right")
- print("How low should the turtle go?")
- h = read()
- rednet.broadcast("h")
- print("Does it need to dig down to mine?")
- d = read()
- rednet.broadcast("d")
- print("How many times do perform the operation? (Once or Twice+)")
- input = read()
- rednet.broadcast("input")
- if d == "Yes" then
- turtle.digDown()
- turtle.down()
- end
- if d == "No" then
- end
- repeat
- if turtle.detect() == true then
- turtle.dig()
- turtle.forward()
- end
- if turtle.detect() == false then
- turtle.forward()
- end
- i = i - 1
- if i < 2 then
- i = 5
- u = u + 1
- h = h - 1
- print(h)
- turtle.digDown()
- turtle.turnLeft()
- turtle.turnLeft()
- turtle.down()
- print(u)
- end
- if h == 0 then --Change once testing is complete
- u = u + 1
- if b == 0 then
- repeat
- turtle.up()
- u = u - 1
- until u <= 1
- s = s + 1
- end
- if b == 1 then
- rednet.open("right")
- rednet.broadcast(65,"Finished")
- repeat
- turtle.up()
- u = u - 1
- until u <= 1
- s = s + 1
- end
- end
- turtle.select(1)
- turtle.placeDown()
- if input == "Once" then
- turtle.turnLeft()
- turtle.forward()
- turtle.turnRight()
- end
- if input == "Twice+" then
- end
- until s > 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement