mIRC Homepage
Posted By: S4R I need an autojoin script. - 03/05/05 12:05 AM
Hello. I'm mostly new to irc. I just want an autojoin script to add so every time I start irc in Quakenet, it automatically join a few servers, without me typing into the box thingy. Can anyone help me out? I'd also like to know where to put the script.
Posted By: Darkmnm Re: I need an autojoin script. - 03/05/05 12:34 AM
If you mean when you connect to Quakenet to join multiple rooms try this:

Code:
on *:connect:{
  if ($network == Quakenet) { /join [color:red]#Channel[/color] | /join [color:red]#Channel[/color] | /join [color:red]#Channel[/color] }
}


UnTested
Posted By: S4R Re: I need an autojoin script. - 03/05/05 02:27 AM
It works great, thanks a lot. ; )
Posted By: Darkmnm Re: I need an autojoin script. - 03/05/05 02:28 AM
Your Welcome.
Posted By: Mentality Re: I need an autojoin script. - 03/05/05 05:31 AM
As a note, the /join command does not need to be used several times. You can use /join #channel1,#channel2,#channel3,#etc - could help prevent triggering server flood protection!

Regards,
Posted By: Darkmnm Re: I need an autojoin script. - 03/05/05 11:39 AM
And that's why I love this forum. When you make a mistake someone offers up a solution without flaming the person that made the mistake. I'm new to actually scripting so using Mentality's way would more likely suit you better.
Posted By: Forgotten00 Re: I need an autojoin script. - 04/05/05 12:54 AM
nice isnt it?

also if you want to join more servers try this:

Code:
On *:Start: {
  cserv
}
On *Connect: {
  if (*hellfire* iswm $server) {
    nick Silence
    anick Silence`
    msg nickserv identify [Removed]
    msg chanserv identify #clansds [Removed]
  }
  if (*gamesurge* iswm $server) {
    nick Forgotten`
    anick Forgotten``
    msg AuthServ@Services.GameSurge.net Identify Forgotten` [Removed]
  }
}
alias cserv {
  server hellfire.redirectme.net -j #pyro,#clansds
  server -m irc.gamesurge.net -j #b0red
}


this is just an example using my auto auth system. usefull.
Posted By: Sleepyfreak Re: I need an autojoin script. - 16/05/05 08:21 AM
i would find its easiyer to have this in your remotes

o 1:NOTICE:*NickServ IDENTIFY*:?: { if ($nick == NickServ) { /nickserv identify password } { /timer1 1 2 /oper pass word } { /chanserv invite #channel } { /chanserv invite #channel }}
© mIRC Discussion Forums