Based on one of the threads that I found, the strings you use are "TERRORIST" or "CT". I don't normally play Counter-Strike but I believe that the values returned from get_user_team() are either 1 or 2 for the aforementioned team names, respectively.
However, if it's specifically for Counter-Strike, you should probably use cs_get_user_team() and then you can use the CsTeams enum value to check with. It would end up like this:
Code:
cs_get_user_team(id) == CS_TEAM_T ? "CT" : "TERRORIST"
As I said before, this would just replace the "Team" variable in get_players().
__________________