Alright, so if this can be done on one computer, that would be nice but I dont know how.
Current script
______________________________________________________________
rednet.open("top")
id, message = rednet.receive()
id, stop = rednet.receieve()
local a = 1
local b = 1
local c = 1
repeat
if message == "status" then
print(message) –This was just to check if the message was getting through to the computer
rednet.send(19, a)
rednet.send(19, B)/>– I have the hope that just typing a b or c would transmit the local numbers typed earlier
rednet.send(19, c)
sleep(10)
else
print("Input failure")
end
until message == "stop"
_______________________________________________________________
ALRIGHT so the current problem. It loops infinitely with no end. I'd like it to go through 1 cycle then wait for "status" to be transmitted to the computer again before re-transmitting variables a,b and c.
Any answer much obliged,
Thanks in advance!
-Z