I have this script:

on *:CONNECT:{
.timerop 0 180 operscan
}

alias operscan {
.rlevel 100
set %num $chan(0)
set %i 1
while (%i <= %num) {
.who $chan(%i)
inc %i
}
unset %num
unset %i
}

on *:JOIN:*:{
if ($nick == $me) goto scan
else goto one
:scan
set %ial $+ # 1
set %who raw
.who $chan
halt
blushne
set %who raw
.who $nick
}

raw 352:*:{
if (%who == $null) {
echo 11 -s *** Who for $6 $+ : Real Name:( $+ $9 $+ ) Address:( $+ $3 $+ @ $+ $4 $+ ), On channel:( $+ $2 $+ ), Using Server:( $+ $5 $+ ), Hops:( $+ $8 $+ )
unset %who
}
elseif (%who == raw) {
if (* isin $7) {
if ($level($address($6,5)) != 100) .guser 100 $6 5 IRC Operator
}
if ( $eval(% $+ ial $+ $2,2) == 1 ) {
haltdef
}
}
halt
}

I use it to scan for IRC Operators and to update my IAL. BUT the halt in the raw event for the /who halts it even when I use the commadn /who to see some host info. I tryied to make the difference with the %who variable so it shows the who into the status when I request it and halts the others. But it still floods me a lot ! It displaye the who info every time when the timer executes the operscan alias. WHY IT IS NOT WORKING ?

Please HELP !