Huh ?
Simple method to replace team name:
PHP Code:
new const szTeamName[ ][ ] = { "Unassigned", "Terrorist", "Counter-Terrorist", "Spectator" }
public Ham_Spawn( id )
{
new iTeam = get_user_team( id );
client_print( id, print_chat, "You team is: %s", szTeamName[ iTeam ] )
}
__________________