I have this remote, and it doesn't seem to be working. It executes the command in the text file for the network, but doesn't join the channel(s) listed.
Code:
on *:CONNECT: {
    if ($read(joins.txt, s, $network)) {
    var %readline = $read(joins.txt, s, $network)
    var %command = $gettok(%readline,3,9)
    %command  
    var %x = 1
    while (%x <= $numtok(%readline,35)) {
      var %chan = $char(35) $+ $gettok(%readline,%x,35)
      join %chan
      inc %x
    }
  }
}


The text file looks like this:
Quote:
ScanGeorgia #general#test /pass mypassword
AccessIRC #ScanGwinnett nickserv identify mypassword


The parts are separated by tabs.