mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133
Anyone have a idea how I would make a script to join 3-4 servers with mirc multi ?

Want to join them all with one command.
from the status window type: servers
and it will join all 3-4 servers ...

Also need help with on-connect ..

on 1:CONNECT:irc.umn.edu:{ <like this
/msg NickServ IDENTIFY pass
}

^ Need This To BE ONLY For One Server
Cause it messages all servers I connect to and only one needs it.

Thanks .. A lot For Any Help smile



Joined: Aug 2003
Posts: 1,831
I
Hoopy frood
Offline
Hoopy frood
I
Joined: Aug 2003
Posts: 1,831
Code:
alias connect {
  server a.server.net [color:blue]-i nick1 anick1 email@addr.com fullname[/color] [color:green]-j #chan1,#chan2[/color]
  server -m b.server.com [color:blue]-i nick2 anick2 email@addr.net fullname[/color] [color:green]-j #chan,#chan2[/color]
  server -m c.server.org [color:blue]-i nick3 anick3 email@addr.tv fullname[/color] [color:green]-j #thischannel[/color]
}
The blue and green parts are optional
Code:
on *:CONNECT:{
  if $server == irc.umn.edu { msg NickServ IDENTIFY pass }
}


Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133
Hey Thanks ..

The Server Script You Show .. Get An Error Of : * You are not on a channel

I need It To Work From The Status Window .. THANKS!

Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
To use command you have to prefix them with a /, i.e. type "/connect".

Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133
I Did .. I have To Connected To A Server And On A Chan To Use It ..

also What Is The Correct Format For " Server " Command ?

/server -m Server:port:pass -i Warlock-W WarIsAway email@addr.com Warlock The Weary

Cant Seem To Get The Pass To Work ...
???

Btw . Thanks For The Help !

Last edited by WarlockW; 24/01/04 06:35 AM.
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
/help /server will give you the syntax.

The "* You are not on a channel" normally occurs when you type something in the status window that doesn't begin with a / (or your command prefix).

Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133
Ok ..

Got It To Work Thanks To Your Help :-)

Thanks Agin !


Link Copied to Clipboard