It seems like it would work but you can try this instead if you want to be sure.
Code:
new iPlayers[ 32 ], iCount;
get_players( iPlayers, iCount, "aech", "TERRORIST" )
if( iCount == 1 ) StopGame();
-->
Code:
new iCount = 0;
for ( new i = 0 ; i < global_get(glb_MaxClients) ; i++ ) {
if ( is_user_alive(i) && ! is_user_bot(i) && ! is_user_hltv(i) && cs_get_user_team(i) == TEAM_TERRORIST )
iCount++;
}
if( iCount == 1 ) StopGame();
__________________