mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2013
Posts: 137
R
raycomp Offline OP
Vogon poet
OP Offline
Vogon poet
R
Joined: May 2013
Posts: 137
I have a server with three separate channels, #LetsChat #UserHelp and #Trivia.

Is it possible to link them so that if a user logs into #LetsChat that he automatically the other two?

I have no idea if it is possible and if so how!

Any help, suggestions, or snippet will be appreciated

Joined: Nov 2004
Posts: 822
Hoopy frood
Offline
Hoopy frood
Joined: Nov 2004
Posts: 822
If you're an oper on the network, you could just /(sa|svs)join* them into the channel.

Code
on *:join:#LetsChat:{
  if (o isincs $usermode) { sajoin $nick #UserHelp | sajoin $nick #Trivia }
}


*depending on the IRCd


Link Copied to Clipboard