Ok, I replaced my previous code examples (Thanks Hammer)
Code:
  
ON ^*:JOIN:#:{
  IF ($ialchan($wildsite,$chan,0) > 1) {
    VAR %string = * Joins: $nick ( $+ $gettok($fulladdress,2,33) $+ ) - Clones:
    VAR %i = 1
    WHILE ($ialchan($wildsite,$chan,%i)) {
      IF ($ialchan($wildsite,$chan,%i).nick != $nick) { %string = %string $ialchan($wildsite,$chan,0).nick }
      INC %i
    }
    %string = %string - Total users in $chan $+ : $nick($chan,0)
    echo $colour(join) -qlbfi2 $chan %string
    haltdef
  }
}

Remark: This forum usually is trying to help you with a problem so you can learn from it. Our solutions are just helping you to find the right direction smile

Last edited by Merlin; 09/12/02 09:43 AM.