24.08.2010, 09:42
My problem: It's only showing "go!"
pawn Код:
gCountDown--;
if(gCountDown == 3) { format(str, sizeof(str),"~r~3"); GameTextForAll(str, 1000, 3); }
else if(gCountDown == 2) { format(str, sizeof(str),"~y~2"); GameTextForAll(str, 1000, 3); }
else if(gCountDown == 1) { format(str, sizeof(str),"~b~1"); GameTextForAll(str, 1000, 3); }
else if(gCountDown == 0)
{
format(str, sizeof(str),"~g~go!");
GameTextForAll(str, 1000, 3);