25.08.2010, 10:31
title says it :P
Hope somebody can help me.
Hope somebody can help me.
pawn Код:
public StartingRace()
{
gCountDown--;
switch(gCountDown)
{
case 0:
{
GameTextForAll("~g~GO!", 1000, 3);
gStarted = 1;
KillTimer(down);
for(new i = 0; i < MAX_PLAYERS; i++)
{
TogglePlayerControllable(i,1);
}
}
case 1: GameTextForAll("~b~1", 1000, 3);
case 2: GameTextForAll("~y~2", 1000, 3);
case 3: GameTextForAll("~r~3", 1000, 3);
}
return 1;
}