alias users {
set %users 1
:next
set %user $nick(#,%users)
if (%user == $null) { goto done }
if (%user ison #) { echo -t $chan %user is on $chan $+ . }
inc %users
goto next
:done
}
on *:JOIN:#: {
if ($nick == $me) { users }
}
I did read the post wrong. I thought you said list all the users on a channel. Oops.