Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- rednet.open("top") -- Change this to the side of your modem
- write("ID to send to: ") -- Sets the id of the computer to send to (the fax server)
- id = read()
- id = id + 0
- write("Title to set: ") -- Sets the title the page will be
- title = read()
- rednet.send(id,title)
- write("Amount of lines to send: ") -- Sets the amount of lines to send
- lines = read()
- rednet.send(id,lines)
- lines = lines + 0
- for x = 1, lines do -- Does this for the amount of lines you told it
- write("Line"..x..": ")
- linetext = read()
- rednet.send(id,linetext) -- Sends the text of the line
- end
- print("Sent!")
Advertisement
Add Comment
Please, Sign In to add comment