Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- rednet.open("right")
- local item = turtle.getItemCount(1)
- local comp = turtle.compareTo(16)
- function ok()
- local id, msg = rednet.receive()
- if id == 177 then
- if msg == "ok" then
- turtle.select(1)
- run()
- end
- end
- end
- function run()
- turtle.suckDown()
- if comp == true then
- if item < 32 then
- print("lower")
- turtle.dropDown()
- elseif item > 32 then
- print("over")
- turtle.transferTo(2,32)
- turtle.dropDown()
- turtle.select(2)
- turtle.dropUp()
- elseif item == 32 then
- print("equal")
- turtle.dropUp()
- end
- else
- print("Error Wrong item.")
- turtle.dropDown()
- end
- end
- run()
- while true do
- ok()
- sleep(1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement