If you are going to tag a function, use a valid tag and then return a value of that tag. The reason why it does not work is because you are returning an untagged value where you are declaring the function as returning a tagged value
Example:
PHP Code:
public CsTeam:getTeam(id)
{
return cs_get_user_team(id);
}
__________________