Because the perform option built into mIRC doesn't work when I want to join multiple servers at once, I have been trying to create a script for a bit that would let me join multiple channels on multiple servers on startup.


Php Code:
on *:START: {
  server <server> -i nick alt email name -j #channel, #channel
  server -m <server> -i nick alt email name -j #channel, #channel
}  


This is what I have so far, with a lot of help from people on this forum and off of it. I was wondering if it was possible to identify a nick as well. A problem I've also run into is that when I implement the script, it only joins the first channel -- is there a way around that?

I have tried to find a list of available commands, but haven't had any luck. Sorry :P.