<?xml version="1.0"?>
<chat>
/*plugin*/
client.GotServerText = function( _text )
{
  client.scrollbuffer.unshift( wikifyText( _text ) );
  if( client.scrollbuffer.length > maxlines )
  {
    client.scrollbuffer.pop();
  }
}
</chat>
