mIRC Home    About    Download    Register    News    Help

Print Thread
#210618 21/03/09 07:43 PM
Joined: Mar 2009
Posts: 28
J
Joshy Offline OP
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Mar 2009
Posts: 28
Hi. I've been on mIRC for quite a while. I join many channels, on a few different servers, causing me to have many mIRC windows open. It's kind of a pain to have to open up each room manually. So, I've been looking for a script to Join On Connect.

Joshy #210619 21/03/09 07:53 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Use the Favorites

Joined: Mar 2009
Posts: 28
J
Joshy Offline OP
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Mar 2009
Posts: 28
Favorites bumps me from chats. I need a script.

Joshy #210623 21/03/09 09:45 PM
Joined: Oct 2003
Posts: 3,918
A
Hoopy frood
Offline
Hoopy frood
A
Joined: Oct 2003
Posts: 3,918
what does "bumps me from chats" mean? You get disconnected for joining too many at once? That seems unlikely, unless you have a script running /who on every channel you join, which you should deal with first.


- argv[0] on EFnet #mIRC
- "Life is a pointer to an integer without a cast"
argv0 #210627 21/03/09 11:01 PM
Joined: Mar 2009
Posts: 28
J
Joshy Offline OP
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Mar 2009
Posts: 28
yes, i just need a script so when i join the server certain chats go up, one of the servers is 199.9.249.17 the chats are #austinprime #officecam and #woottv

Joshy #210628 21/03/09 11:36 PM
Joined: Oct 2003
Posts: 3,918
A
Hoopy frood
Offline
Hoopy frood
A
Joined: Oct 2003
Posts: 3,918
just add those three channels to your favorites and have them join on connect for that network.


- argv[0] on EFnet #mIRC
- "Life is a pointer to an integer without a cast"
argv0 #210644 22/03/09 01:43 PM
Joined: Mar 2009
Posts: 28
J
Joshy Offline OP
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Mar 2009
Posts: 28
I can't use FAVORITES!

Joshy #210658 22/03/09 07:42 PM
Joined: Jun 2005
Posts: 196
C
Vogon poet
Offline
Vogon poet
C
Joined: Jun 2005
Posts: 196
A quick search found this thread, just adapt it as you need.

Click Here


Happy mIRC user on Linux
Joshy #210684 23/03/09 04:23 AM
Joined: Oct 2003
Posts: 3,918
A
Hoopy frood
Offline
Hoopy frood
A
Joined: Oct 2003
Posts: 3,918
I don't understand, why can't you use favorites?


- argv[0] on EFnet #mIRC
- "Life is a pointer to an integer without a cast"
Joshy #210685 23/03/09 05:12 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Originally Posted By: Joshy
Favorites bumps me from chats. I need a script.
I don't understand why this is happening for the OP, but I can't eliminate it as a possibility either.

Last edited by RusselB; 23/03/09 05:14 AM.
Joined: Oct 2003
Posts: 3,918
A
Hoopy frood
Offline
Hoopy frood
A
Joined: Oct 2003
Posts: 3,918
If favorites "bumps" him from chats, as in "causes disconnection", its highly likely that any ON CONNECT script would as well, which is why he should explain what "bumps me from chats" actually means.

Basically, barring some irrational fear of the favorites dialog, or lacking brain capacity to make use of the UI, there's no logical reason he "can't use favorites"


- argv[0] on EFnet #mIRC
- "Life is a pointer to an integer without a cast"
Joined: Jun 2005
Posts: 196
C
Vogon poet
Offline
Vogon poet
C
Joined: Jun 2005
Posts: 196
Only thing that comes to mind is exceeding a chanlimit of sorts.


Happy mIRC user on Linux
Joshy #210710 23/03/09 06:50 PM
Joined: Mar 2009
Posts: 74
K
Babel fish
Offline
Babel fish
K
Joined: Mar 2009
Posts: 74
Here's the method I use.
Code:
On *:Connect:{
  if ($server == server1) {
    join #channel1
    join #channel2
    join #channel3
  }
  if ($server == server2) {
    join #channel1
    join #channel2
    join #channel3
  }
}


I started that method when I became on Oper for one network. Make sure you know the name of the server you get connected to, some servers redirect you to another server which is actually hosting the ircd. So a "//echo -a $server" once connected makes sure that you get the right server name. For some one who was redirected to another server every time he connected, I suggested using if ($network == network1) instead of using $server as the $network is the network's name and should remain static regardless of which server you get connected to.


Link Copied to Clipboard