while true do
term.clear()
term.setCursorPos(1, 1)
print("Enter broadcast message")
input = read()
rednet.broadcast(input)
end
the receiving end looks like this:
while true do
print( rednet.receive() )
end
that is the extent of my LUA knowledge as it is.. so.. any help would be appreciated, along with an explanation why so i can do bigger and better things (i plan on making a chatroom style rednet server, i have the basic idea down, but i'll need this information plus more to do it.) thank you. also a code sample of a one on one "text messenger" style one would be great, ima use turtles to text :D/>/> useless.. but good for leaving messages