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?
ID:177009
![]() Nov 20 2002, 8:57 am
|
|
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().
|
lemme go into my old game and get u a good verb