Senders Code:
rednet.open("back")
while true do
write("Positioned? Write yes if you are: ")
answer = read()
if answer == "Yes" or "yes" then
rednet.send(24, "order")
end
end
Receivers Code:
rednet.open("back")
while true do
id, message, bd = os.pullEvent("rednet_message")
if message == "order" then
rs.setOutput("bottom", true)
rs.setOutput("bottom", false)
sleep(10)
rs.setOutput("bottom", true)
rs.setOutput("bottom", false)
end
The problem is: The sender sends the message, but the receiver doesn't collect it. Please Help!
--Lewis
Edited by lewislovesgames, 18 February 2014 - 12:34 PM.












