ID:271600
Aug 7 2007, 1:58 pm
|
|
I need an output box and input box that only certin people can see and use, i got the seeing part but how do i input text into it like the default output box??
|
Copyright © 2024 BYOND Software.
All rights reserved.
If I understand the request right, you're wanting to have two output boxes, one that only certain people can see and use. You have people able to see the second box, but, aren't able to get text to show up in that second box.
The solution is in the the output() proc.
Try:
mob/verb/output2(msg as text)
usr << output("[msg]","default.output2")
The default.output2 part refers to a specific window and pane on the user's skin. In this case, the default window, and the control with the output2 ID.
Hope this helps!