27.03.2014, 13:59
Bumping thread everytime will not help you. It will only give you a free infraction.
Try this?
Try this?
pawn Код:
stock TeamName(teamid)
{
new team[32];
switch(teamid)
{
case T_ENGLAND: format(team, sizeof(team), "England");
case T_RUSSIA: format(team, sizeof(team), "Russia");
case T_IRAQ: format(team, sizeof(team), "Iraq");
case T_MEXICO: format(team, sizeof(team), "Mexico");
}
return team;
}