mIRC Home    About    Download    Register    News    Help

Print Thread
#119220 03/05/05 12:05 AM
Joined: May 2005
Posts: 2
S
S4R Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
S
Joined: May 2005
Posts: 2
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.

Joined: Mar 2004
Posts: 155
D
Vogon poet
Offline
Vogon poet
D
Joined: Mar 2004
Posts: 155
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

Last edited by Darkmnm; 03/05/05 12:40 AM.
Joined: May 2005
Posts: 2
S
S4R Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
S
Joined: May 2005
Posts: 2
It works great, thanks a lot. ; )

Joined: Mar 2004
Posts: 155
D
Vogon poet
Offline
Vogon poet
D
Joined: Mar 2004
Posts: 155
Your Welcome.

Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
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,


Mentality/Chris
Joined: Mar 2004
Posts: 155
D
Vogon poet
Offline
Vogon poet
D
Joined: Mar 2004
Posts: 155
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.

Joined: Apr 2005
Posts: 30
Ameglian cow
Offline
Ameglian cow
Joined: Apr 2005
Posts: 30
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.


mIRC Newb. smile
Joined: May 2005
Posts: 106
S
Vogon poet
Offline
Vogon poet
S
Joined: May 2005
Posts: 106
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 }}


and thats the way the scout leader burns

Link Copied to Clipboard