SHOW:
|
|
- or go back to the newest paste.
| 1 | rednet.open("top")
| |
| 2 | - | text = read() |
| 2 | + | text = "james" |
| 3 | rednet.broadcast(text,"rpage") | |
| 4 | local senderId, message, protocol = rednet.receive() | |
| 5 | if message == "false" then | |
| 6 | print("page not found")
| |
| 7 | else | |
| 8 | file = fs.open("tpage", "w")
| |
| 9 | file.write(message) | |
| 10 | file.close() | |
| 11 | shell.run("tpage")
| |
| 12 | end |