I don't think you can, I tried renaming the folder but to no avail. I think your best bet would be to reinvent the wheel. By that I mean making your own Channels List window. Isn't too hard to accomplish. smile

You could use something like this as an example:

Code:
alias list {
  window -lC @CList -1 -1 687 547
  if ($window(@CList)) clear $v1
  list $1-
  window -h "Channels List"
}

menu @CList {
  Join Channel:join $gettok($sline(@CList,1),1,32)
  Show Users: names $gettok($sline(@CList,1),1,32)
  -
  Set Directory: set %cdir $$sdir=" Select Channels List Directory "
  -
}

Raw 322:*: {
  aline @CList $2 $str($chr(9),3) $3 $chr(9) $4-
  write $+($iif(%cdir,%cdir,$mircdirchannels),$server,.txt) $2-
}


It can be improved a heck of a lot but I'm feeling fatigued right now, maybe someone else can clean it up a little or provide a better example.

Last edited by SladeKraven; 13/09/07 08:02 PM.