Quote:
Originally Posted by blood2k
What's a good value?
|
To make it easy, double whatever you had previously.
You do however have a limit in the MOTD of 1536 characters which you probably will hit. In order to work around that you'll have to print everything to a local file and link the MOTD to the file instead of supplying it a string.
I think it's as easy as this, haven't tested it thought.
Code:
show_motd(id, sBuffer);
->
Code:
new hFile = fopen("top20.htm", "w");
fputs(hFile, sBuffer);
fclose(hFile);
show_motd(id, "top20.htm");
__________________