Channel List
Platform: mIRC
Published Feb 23, 2010
Updated Feb 23, 2010
Just a little snippet to list all the channels you are on in alphabetical order.
Been useful for me sometimes. Thought other people might get some use from it.
alias chans {
var %x = $chan(0)
while (%x) {
var %chan %chan $chan(%x)
dec %x
}
var %chan $sorttok($replace(%chan,$chr(32),$chr(44)),44,a)
echo -a %chan
}