rednet.open("top")
rednet.broadcast("hello")
and this on pc 2
local oldpull=os.pullEvent
os.pullEvent = os.pullEventRaw
print("receiver")
wifi = peripheral.wrap("right")
wifi.open(65535)
while true do
local event, value1, value2, value3, value4, value5 = os.pullEvent()
print(event)
print(value1)
print(value2)
print(value3)
print(value4)
print(value5)
end
if i start both up the second pc gives me instead of the plain helloon the 4th value this: table: 2690b665
the value inside the table switches with every message
why is the second pc not giving me a rednet_message instead of the modem_message
and why is the message transformed into a table?