stock cs_set_team_score( CsTeams:cstTeam , iScore ){ if ( !( CS_TEAM_T <= cstTeam <= CS_TEAM_CT ) ) return 0; message_begin( MSG_ALL , get_user_msgid("TeamScore") , {0,0,0} ); write_string( cstTeam == CS_TEAM_T ? "TERRORIST" : "CT" ); write_short( iScore ); message_end(); return 1;}