I have a better solution for you since I am sure you are going to use this for multiple people or possibly only yourself. This is a script that I developed. I will explain this as well.
So the "on*:connect" basically tells mIRC when you connect to a server, to join these channels on that server. Take note you can put as many as you want below. I suggest you put this in your remote file. The "/join" is telling mIRC to join those specified channels, in this case it is channel1, channel2 and channel3.

This script will automatically start when you start mIRC if for whatever reason the bot goes down. smile

Code:
ON *:CONNECT: { 
  /join #channel1
  /join #channel2
  /join #channel3
}


Last edited by powerade661; 28/05/15 02:58 AM.