ID:177009
 
I have a problem with the message layout.

Lets say..

mob/verb/misc(M as message)
usr << browse("[stat]", "window=name")


lets say you type in...

"Hello how are you today(hit enter twice)

Fine thanks"

Then it will show on the browser popup like this

"Hello how are you today Fine thanks." Is there a solution to this problem?
your verb is all wrong
lemme go into my old game and get u a good verb
In response to Airjoe
verb
say(msg as text)
set category = ("Communication")
world << "[usr] says:[msg]"
In response to Airjoe
You have no idea what he's talking about, I suggest reading his post again, you'll find it has nothing to do with what you posted.
Once put into browse(), the message is being converted into HTML. HTML does not interpret new lines in the same way. You may want to try replacing the "\n" (end of line) characters in the message with "<br>" before calling browse().
In response to Airjoe
LOL.. No thanks i don't need a save verb and don't ever need to look it up.. its in my head.

Hmm I know about using
but people will get annoying having to use
for line spaces