Okay... I will TRY to explain this the best I can. smile

I am in 11 channels on the financialchat network. I keep getting disconnected out of nowhere, and someone said it might be because I am in so many channels. So what I was thinking, is connecting to financialchat TWICE with the same mIRC.exe open.

I made a simple little script where I type '/fin' and it connects me to the server, and runs a whole bunch of commands, however, it runs the commands way to soon. This is what I had, but obviously doesnt work, because it tries joining before actually in the server. So maybe a little help? I'm sure there is just one little thing that I can do to make this happen. What do I need to add to WAIT for the connect before running the commands (similar to ON perform). Here is the coding in the ALIAS:

Code:
 
/fin {
  /server irc.financialchat.com:7000
  /fin2
  /server -m irc.financialchat.com:7000
  /fin3
}
/fin2 {
  /nick NICKNAME
  /msg nickserv identify PASSWORD
  /join #channel1
  /join #channel2
  /join #channel3
  /join #channel4
  /join #channel5
}
/fin3 {
  /nick NICKNAME2
  /msg nickserv identify PASSWORD
  /join #channel6
  /join #channel7
  /join #channel8
  /join #channel9
  /join #channel10
  /join #channel11
}

 


I believe by having two different connects to financialchat, I will not get disconnected as often. Thanks in advance to anyone that can helpout.