ID:170082
 
I know that
mob/Admin/verb/GMSay(GMtext as text)
set name="GMSay>"
world<<"<b>(</b> GM <b>) [src.name]</b>: [GMtext]"

Makes it where a small line text box comes up.

In some games i see it where when it comes up it is like 400x500 size text window with miltiple lines or something liek that size. but how is that done. please help.
I think, Kain, that you're looking for browse().
Just in case, you may also be thinking of the as message statement instead of as text. =)
In response to YMIHere
YMIHere wrote:
Just in case, you may also be thinking of the as message statement instead of as text. =)


I put it in and it worked thx
mob/Admin/verb/GMSay(GMtext as message)
set name="GMSay>"
world<<"<b>(</b> GM <b>) [src.name]</b>: [GMtext]"

and that works just fine, thx YMIHere.