05.03.2010, 11:02
I would like some randow text to appear with text saying things like Try /tankwar and stuff
hope you can help
may thanks alex
hope you can help
may thanks alex
new
RD[][] =
{
"MSG",
"MSG",
"MSG",
"MSG",
"MSG"
};
SetTimer("RandomMessage", 60000, true);
//----------------[Random Message]------------------------------------------
forward RandomMessage();
public RandomMessage()
{
new
rand = random(sizeof(RD));
SendClientMessageToAll(COLOR_RED, RD[rand]);
return 1;
}
//------------------------------------------------------------------------------------------------------------