[pawn]else if ( strcmp( cmd, "!count", true ) == 0 )
{
SetTimer( "CountDowns3", 1000, 0 );
SetTimer( "CountDowns2", 2000, 0 );
SetTimer( "CountDowns1", 3000, 0 );
SetTimer( "FinalCount", 4000, 0 );
return 1;
}[/pawn]
and the public:
[pawn]public CountDowns3()
{
new szMsg[ 16 ];
format( szMsg, 16, "== 3 ==");
SendClientMessageToAll( COLOR_GREEN, szMsg );
}
public CountDowns2()
{
new szMsg[ 16 ];
format( szMsg, 16, "== 2 ==");
SendClientMessageToAll( COLOR_GREEN, szMsg );
}
public CountDowns1()
{
new szMsg[ 16 ];
format( szMsg, 16, "== 1 ==");
SendClientMessageToAll( COLOR_GREEN, szMsg );
}
public FinalCount()
{
SendClientMessageToAll(COLOR_GREEN, "== GO! ==" );
GameTextForAll("gogogo!!");
}[/pawn]
Here is it ,thanks.