client/verb
announce(msg as text)
set name = "Announce"
set desc = "Send an announcement to the game."
world<<output ("<font color=red><b>Announcement from [src.key]:</b> [msg]</font>", "ooc-chatroom")
world<<output ("<font color=red><b>Announcement from [src.key]:</b> [msg]</font>", "an/ooc")
..()
Problem description: I was wondering if there was a more compiled and organized way of using multiple outputs for a single message instead of using the same line but with a different output. As you can see above, I have two separate outputs; but I was wondering if I could get them to work on the same string instead of wasting a few bytes on an entirely new string.
world << output("stuff\nstuff")
More specifically the \n macro stands for "insert new line here".