Posted 24 August 2012 - 07:16 AM
Hi I was wondering if it was possible to send a message to multiple computers with one send without using rednet.broadcast()?
local sendTo = { 1, 2, 3, 4 } -- computer id's 1 - 4
write("enter message: ")
local msg = read()
for var, x in pairs(sendTo) do
rednet.send(x, msg)
end