Quote:
Originally Posted by cbkbud
Ehh ... isn't that players[i].external ... meaning if they are IRC or on another server?
You can just do something like this:
PHP Code:
with ( GUIContainer )
{
new GuiWindowCtrl() // etc
}
or I believe
PHP Code:
new GuiWindowCtrl( "s" )
{
}
GUIContainer.addControl( s );
|
Exactly. I often do:
PHP Code:
new GuiWindowCtrl("foo") {
GUIContainer.addControl(this);
}