not fixed but found another way:
Code:
if ( is_combat() && check_cc_num() )
check_cc_num(){
new entid = find_ent_by_class(-1, "team_command") // get commcchair id
new num
while( entid > 0 ){
num++
if( num > 1 ) // more than 1 cc found
return 1
entid = find_ent_by_class(entid, "team_command") // get next commchair id
}
return 0
}
this works
__________________