Cranium, on 14 September 2012 - 09:39 PM, said:
I think you are looking for rednet.receive() instead of os.pullEvent().
If you do use os.pullEvent(), I believe that the first parameter would come across as an integer/number. Try removing the quotes from "88", and it might work. Not sure what you have on the sending end though.
I tried receive before but it didn't work so I tried os.pullEvent
I'm trying to make a program that you can type bomb on a pc to send a message to turtles 200 blocks up to start bombing (it's our company's defense/offense system for a nuclear war coming soon)
I had it written
function relay()
rednet.open("right")
local sID, message, MSGDis = rednet.receive()
rednet.broadcast(message)
end