Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.63 KB | None | 0 0
  1. i = 5 --Number of times the turtle has dug
  2. u = 1 --Number of times the turtle has dug, in 5s
  3. --h = 1 --Now assigned by input
  4. s = 1 --Used to end program
  5. rednet.open("right")
  6. rednet.broadcast("mining")
  7. print("How many turtles would you like to use?(1 or 4)")
  8.     t = read()
  9.     if t == 1 then
  10.         b = 0 --Used to determine how to control turtle
  11.         end
  12.     if t == 4 then
  13.         b = 1 --Used to determine how to control turtles
  14.         end
  15. rednet.open("right")       
  16. print("How low should the turtle go?")
  17. h = read()
  18. rednet.broadcast("h")
  19. print("Does it need to dig down to mine?")
  20. d = read()
  21. rednet.broadcast("d")
  22. print("How many times do perform the operation? (Once or Twice+)")
  23. input = read()
  24. rednet.broadcast("input")
  25. if d == "Yes" then
  26.     turtle.digDown()
  27.     turtle.down()
  28.     end
  29. if d == "No" then
  30.     end
  31. repeat
  32.     if turtle.detect() == true then
  33.         turtle.dig()  
  34.         turtle.forward()   
  35.         end
  36.     if turtle.detect() == false then
  37.         turtle.forward()       
  38.         end
  39.         i = i - 1
  40.     if i < 2 then
  41.         i = 5
  42.         u = u + 1
  43.         h = h - 1
  44.         print(h)
  45.         turtle.digDown()
  46.         turtle.turnLeft()
  47.         turtle.turnLeft()
  48.         turtle.down()
  49.         print(u)
  50.         end
  51.     if h == 0 then --Change once testing is complete
  52.         u = u + 1
  53.         if b == 0 then
  54.             repeat
  55.                 turtle.up()
  56.                 u = u - 1
  57.             until u <= 1
  58.             s = s + 1
  59.             end
  60.         if b == 1 then
  61.             rednet.open("right")
  62.             rednet.broadcast(65,"Finished")
  63.             repeat
  64.                 turtle.up()
  65.                 u = u - 1
  66.             until u <= 1
  67.             s = s + 1
  68.             end
  69.         end
  70.         turtle.select(1)
  71.         turtle.placeDown()
  72.         if input == "Once" then
  73.             turtle.turnLeft()
  74.             turtle.forward()
  75.             turtle.turnRight()
  76.             end
  77.         if input == "Twice+" then
  78.             end
  79. until s > 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement