mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2006
Posts: 2
S
sencat Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
S
Joined: Aug 2006
Posts: 2
hey all ..

/server -m us.undernet.org:7000 ( HOW I PUT NICK HERE )

Thanks ..

Joined: Jul 2006
Posts: 53
O
Babel fish
Offline
Babel fish
O
Joined: Jul 2006
Posts: 53
alias servandnick {
nick oblivious
server -m us.undernet.org 7000
}
That should work but the only problem is it will change your nickname on all networks not just the undernet one.

if you would like to change it on just the one network and have a different nickname on another network you could do something like this.

Code:
 
on 1:CONNECT: { 
  if($network == Undernet) {
    nick <undernet nick>
    if($network == DALnet) {
      nick <dalnet nick>
    }
  }
} 

<untested>

Last edited by oblivious; 12/08/06 02:15 AM.
Joined: Jul 2004
Posts: 21
X
Ameglian cow
Offline
Ameglian cow
X
Joined: Jul 2004
Posts: 21
/server -m us.undernet.org:7000 -i nick

Joined: Mar 2004
Posts: 210
F
Fjord artisan
Offline
Fjord artisan
F
Joined: Mar 2004
Posts: 210
Quote:
if you would like to change it on just the one network and have a different nickname on another network you could do something like this.

Code:
 
on 1:CONNECT: { 
  if($network == Undernet) {
    nick &lt;undernet nick&gt;

<untested>
Huh? On DALnet (after correcting the If { } problem and structure) I get
<dalnet F`Nar> Erroneous Nickname

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Use the format shown in xhine's post. It is the correct format for this situation.

Joined: Mar 2004
Posts: 210
F
Fjord artisan
Offline
Fjord artisan
F
Joined: Mar 2004
Posts: 210
The question is how to do it in an on connect. Reconnect?

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Actually, the question is how to put the nick into the /server command, which is what xhine shows how to do. There is nothing in the original post that mentions connecting and/or reconnecting.


Link Copied to Clipboard