How can I set a color to a team? Ex: Police blue, FBI grey and National Guard dark green?
EDIT: I added this code and all of those have a lightblue name but I would like them all to have different color...
Code:
public SetPlayerToTeamColor(playerid)
{
if(IsPlayerConnected(playerid))
{
SetPlayerColor(playerid,TEAM_HIT_COLOR); // white
}
if(IsACop(playerid))
{
SetPlayerColor(playerid,TEAM_BLUE_COLOR); // blue
}
}