If you can connect to the chanels properly you could try:

paste in alias

/listops {
echo 4 * Listing Ops on #
set %i 1
:next
set %nick $nick(#,%i)
if %nick == $null goto done
if %nick isop # echo 3 %nick is an Op!
inc %i
goto next
:done
echo 4 * End of Ops list
}

or paste this in remotes and type " list " in the channel
you may want to add user access to your command also smile


on *:text:list:#: {
echo Listing ops/ mods in #
set %i 1
:next
set %nick $nick(#,%i)
if %nick == $null goto done
if %nick isop # echo 3 %nick is an Op/Mod
inc %i
goto next
:done
echo 4 * End of list
}


~ Ascertainment =)