I asked if you had defined the
CS_TEAM_* constants and you just said you were using the cstrike module.
Change this:
Code:
if(!(cs_get_user_team(id) == CS_TEAM_SPECTATOR))
to this:
Code:
if(!(_:cs_get_user_team(id) == CS_TEAM_SPECTATOR))
or:
Code:
if(!(cs_get_user_team(id) == CsTeams:CS_TEAM_SPECTATOR))
__________________