mIRC Home    About    Download    Register    News    Help

Print Thread
#156313 14/08/06 11:42 PM
Joined: Jul 2006
Posts: 242
H
HaleyJ Offline OP
Fjord artisan
OP Offline
Fjord artisan
H
Joined: Jul 2006
Posts: 242
Hello
I would like to make a script that will join all channels on a server, Can anyone please give me some pointers on how to do this.
Thank-You


Newbie
Joined: Dec 2004
Posts: 87
I
Babel fish
Offline
Babel fish
I
Joined: Dec 2004
Posts: 87
i would not recommend joining all channels
because
1 some servers only let join a number of channels.
2 if they they don't restrict the number of channels you can
join you will probably flood out unless there are only a few channels

Last edited by ik000ike; 15/08/06 12:08 AM.
Joined: Jul 2006
Posts: 242
H
HaleyJ Offline OP
Fjord artisan
OP Offline
Fjord artisan
H
Joined: Jul 2006
Posts: 242
Hi
Thanks for that but i would still like to have some pointers.


Newbie
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Subject to restrictions on the server/network, the following will do what you're asking for
Code:
 on *:connect:{
  .enable #channels
  .list
}
#channels off
raw 321:*:{ halt }
raw 322:*:{
  .join $2
  haltdef
}
raw 323:*:{
  .disable #channels
  haltdef
}
#channels end
 

Joined: Jul 2006
Posts: 242
H
HaleyJ Offline OP
Fjord artisan
OP Offline
Fjord artisan
H
Joined: Jul 2006
Posts: 242
Thanks for the help. smile


Newbie

Link Copied to Clipboard