Advertisement
Guest User

prog

a guest
Oct 10th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. rednet.open("right")
  2. local item = turtle.getItemCount(1)
  3. local comp = turtle.compareTo(16)
  4.  
  5. function ok()
  6. local id, msg = rednet.receive()
  7.  if id == 177 then
  8.   if msg == "ok" then
  9.    turtle.select(1)
  10.    run()
  11.   end
  12.  end
  13. end
  14.  
  15. function run()
  16.   turtle.suckDown()
  17.    if comp == true then
  18.     if item < 32 then
  19.      print("lower")
  20.      turtle.dropDown()
  21.     elseif item > 32 then
  22.      print("over")
  23.      turtle.transferTo(2,32)
  24.       turtle.dropDown()
  25.      turtle.select(2)
  26.      turtle.dropUp()
  27.     elseif item == 32 then
  28.      print("equal")
  29.      turtle.dropUp()
  30.     end
  31.    else
  32.   print("Error Wrong item.")
  33.   turtle.dropDown()
  34. end
  35.   end
  36.  
  37. run()
  38. while true do
  39. ok()
  40. sleep(1)
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement