11 lines
224 B
Lua
11 lines
224 B
Lua
|
rednet
|
||
|
|
||
|
rednet.open("back")
|
||
|
while true do
|
||
|
id, msg = rednet.receive()
|
||
|
if msg == "get" then
|
||
|
rednet.send(id, message)
|
||
|
elseif msg == "set" then
|
||
|
id, msg = rednet.receive()
|
||
|
message = msg
|
||
|
end
|