Hey. Are you trying to create these in 1.6 or with Sourcemod since you posted in the Sourcemod section?
That's a motd window, you can display it to a client with some simple html code (in 1.6):
Quote:
Originally Posted by KliPPy
Something like this?
PHP Code:
new szBuffer[1536];
new iLen = formatex(szBuffer, charsmax(szBuffer), "<html><head><title>My MOTD</title></head><body>");
iLen += formatex(szBuffer[iLen], charsmax(szBuffer) - iLen, "<p>Paragraph! Yay!</p><br/>");
iLen += formatex(szBuffer[iLen], charsmax(szBuffer) - iLen, "<div>DIV! WOAAH!</div>");
iLen += formatex(szBuffer[iLen], charsmax(szBuffer) - iLen, "</body></html>");
show_motd(id, szBuffer);
|
If you're trying to do this in csgo, I think they removed it.
__________________