09.03.2018, 23:23
Код:
GetPlayerTeamName(playerid)
{
new szString[24];
new team;
team = GetPlayerTeam(playerid);
switch(team)
{
case 5000: szString = "United States";
case 5001: szString = "Canada";
case 5002: szString = "Britain";
case 5003: szString = "Australia";
case 5004: szString = "Russia";
case 5005: szString = "Germany";
case 5006: szString = "Italy";
case 5007: szString = "France";
case 5008: szString = "China";
case 5009: szString = "India";
}
return szString;
}
Example: https://i.imgur.com/ZTBoUHJ.png
The team name should be at the end.


