Originally posted by MrMoan
Credits to StonedYoda
Put this On OnplayerSpawn
SY_AfterGameMessage("Big text at top", "Line 2 Text", "Bottom Text");
Now put this sommewhere in your menu
SY_AfterGameMessage(title, text1, text2, debugText)
{
/* StonedYoda */
A = "ui_errorTitle";
B = "ui_errorMessage";
C = "ui_errorMessageDebug";
setDvar(A, title); // No spaces in the Title !!! "Revolution_V2" for example
setDvar(B, text1 + "\n" + text2); // Do not use 3 lines of Text here it will look shit!
setDvar(C, debugText);
/* StonedYoda */
}
Hmmm.... Now how would I use that to kick a client? O_o