mIRC Homepage
Posted By: HaleyJ Joining all server channels - 14/08/06 11:42 PM
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
Posted By: ik000ike Re: Joining all server channels - 15/08/06 12:07 AM
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
Posted By: HaleyJ Re: Joining all server channels - 15/08/06 01:07 AM
Hi
Thanks for that but i would still like to have some pointers.
Posted By: RusselB Re: Joining all server channels - 15/08/06 02:00 AM
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
 
Posted By: HaleyJ Re: Joining all server channels - 15/08/06 12:30 PM
Thanks for the help. smile
© mIRC Discussion Forums