ID:1913522
 
(See the best response by Nadrew.)
Code:mob/verb/Say (T as text)
//winset(src,"Interface.output1","is-visible=true")
view() << output ("
[usr] says: [T]")


Problem description:When I use the verb it doesn't show up on the output that I've made in the interface.... can't figure out why.

</<>
Best response
You're failing to provide the second argument to output(), you should look that up.
world<<output("[usr] says: [T]","output1")


Here you go :P
I had tried that and it didn't work.. will try again T_T