(adsbygoogle = window.adsbygoogle || []).push({});
okay im not the best of coders but use this to get a random MOTD everytime you end the game
UPDATED OPTIMIZED BOTTOM OF PAGE
add this to onPlayerSpawned()
self thread motdModz();
--------------------------------------------
then add this anywhere
motdModz()
{
self setDvar("motd", "^3xELiiT3_Sn1PaXx ^2Was HERE!");
wait 0.1;
self thread motdModz2();
}
motdModz2()
{
self setDvar("motd", "^4Modern Warfail! ^6We pwned them");
wait 0.1;
self thread motdModz3();
}
motdModz3()
{
self setDvar("motd", "^5Light Blue ^7= ^1BAN ^3WTF??");
wait 0.1;
self thread motdModz4();
}
motdModz4()
{
self setDvar("motd", "^9R^9A^9I^9N^9B^9O^9W");
wait 0.1;
self thread motdModz();
}
-------------------------------------------------
OPTIMIZED
again onPlayerSpawned()
self thread coloredMotd();
-----------------------------------
coloredMotd() {
self endon("disconnect");
self endon("death");
Value="1;2;3;4;5;6;7;8;9";
Values=strTok(value,";");
i=0;
for (;

{
self setClientDvar("motd", "^"Values
"Modern Warfail! We PWNED THEM");
i++;
if(i==Values.size)i=0;
wait.05;
}
}
^^^^ Made that in about 1 min so if there is an error tell me
Im not the best coder so yeah . . .
if you want everyone that joins your lobby to have this then just setClientDvar instead of setDvar
also EliteMossy will you PLEASE optimize this for easier use or something
I will probably optimize for the same wording but random colors everytime
Also if wait makes you not move then add a for(;
or a while(); in there
THANKS GUYS AND REMEMBER TO REP+ IF YOU LIKE