ID:271600
 
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??
I get to be happy to post my first (hopefully useful) tidbit.

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!
In response to Trinkit
THANK YOU that was just what i wanted you got no idea what a headache spared me :D
In response to Lt. Pain
No problem, if you need anything else, just ask. Even if I don't know the answer, two people looking for a solution is better than one. :)