18.09.2011, 15:06
pawn Код:
forward GameUm(allplayers);
public GameUm(allplayers)
{
GameTextForAll("~b~3", 4000, 3);
SetTimer("GameDois", 1500, false);
return 1;
}
forward GameDois(allplayers);
public GameDois(allplayers)
{
GameTextForAll("~g~2", 4000, 3);
SetTimer("GameTres", 1500, false);
return 1;
}
forward GameTres(allplayers);
public GameTres(allplayers)
{
GameTextForAll("~r~1", 4000, 3);
SetTimer("GameRounde", 1500, false);
return 1;
}
forward GameRounde(allplayers);
public GameRounde(allplayers)
{
GameTextForAll("~g~Roundi Uam!", 4000, 3);
SetTimer("GameGo", 1500, false);
return 1;
}
forward GameGo(allplayers);
public GameGo(allplayers)
{
GameTextForAll("~p~Faiti", 4000, 3);
return 1;
}