View Single Post
  #18  
Old 05-21-2006, 08:56 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
Quote:
Originally Posted by xXziroXx
If you use a GuiMLTextCtrl you can do:


NPC Code:

new GuiWindowCtrl( "window" )
{
new GuiMLTextCtrl( "text1" ) {
x = 10, y = 10;
width = 150, height = 150;

text = "";
}
}



and to add text..

NPC Code:

text1.addtext( "text here", 0);

And will that work serverside, this is also for a chat window for an ingame DR chat, and every player will need to see what is changed.

Last edited by excaliber7388; 05-21-2006 at 10:02 PM..
Reply With Quote