View Single Post
  #9  
Old 05-21-2007, 02:45 AM
Novo Novo is offline
[TServerDeveloper]
Join Date: Jun 2006
Posts: 448
Novo will become famous soon enough
Quote:
Originally Posted by Deadly_Killer View Post
well logically, if it was in a class called super and you joined it.

you could do:
super::echo(stuff);

I think.
PHP Code:
function onCreated()
  {
  
this._oldEcho this.echo;
  }

function echo( 
text )
  {
  return 
this._oldEchoformat("[%s]: %s"this.nametext ) ) );
  } 
That's be what I'd have to do... Which is a pain...
Reply With Quote