14.07.2009, 00:11

Credits By: LuxurioN
About
This filterscript change the name of your game mode in x minutes / seconds. The messages are modified in the script (Change in lines 21-26). Make sure to edit the "4" em 'GmTextos' for the number of text you added. In addition, make sure to edit the cases on 'MudarTexto'.
Exemple
I want to add 6 messages instead of 4(default). So I should replace the 'GmTextos' variable by this:Код:
new GmTextos[6][128] = {
"You Text Here1",
"You Text Here2",
"You Text Here3",
"You Text Here4",
"You Text Here5",
"You Text Here6",
Код:
case 0:
{
SetGameModeText(GmTextos[0]);
Textos++;
}
case 1:
{
SetGameModeText(GmTextos[1]);
Textos++;
}
case 2:
{
SetGameModeText(GmTextos[2]);
Textos++;
}
case 3:
{
SetGameModeText(GmTextos[3]);
Textos++;
}
case 4:
{
SetGameModeText(GmTextos[4]);
Textos++;
}
case 5:
{
SetGameModeText(GmTextos[5]);
Textos = 0;
Download v1.0
MultipleNames.rar

