mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Apr 2004
Posts: 19
L
Pikka bird
OP Offline
Pikka bird
L
Joined: Apr 2004
Posts: 19
Can someone on this forum help me?
I know how to automaticly identify youre registerd nick on a server, when you are connecting.
But sometimes I change my nick in for instance: Lrietveld|away.
When I change it back to 'Lrietveld', I have to identify my nick again.
Is it possible to do this automaticly?
So when you change youre nick to for instance 'Lrietveld', that automaticly the command is given to identify this nick.

I know me question is not the standard that you guys are used t0, but some help will truly be appreciated wink.

Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
you could try a few things:

Alias:
/nick1 /nick Lrietveld | /nickserv identify password

Script:
on *:notify: {
if ($nick == Lrietveld) && (Lrietveld == $me) { /nickserv identify password }
}

Manual entry - type out:
//nick Lrietveld | //nickserv identify password

(I forget if the pipe will work properly without using dual / marks or not when mnaully entering it into the editbox)


Those who fail history are doomed to repeat it
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
on *:nick:{
if ($nick == $me) { /nickserv identify password }
}

that identify you when you change nick.. dosent mathet to what.. and if you identify 1 time to many, then u only get a reply from nickser that u have done it befor..


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Apr 2004
Posts: 19
L
Pikka bird
OP Offline
Pikka bird
L
Joined: Apr 2004
Posts: 19
Thanks for the quick replys guys. The tips worked. Thanx smile

Joined: Nov 2003
Posts: 6
Y
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
Y
Joined: Nov 2003
Posts: 6
on *:NOTICE:*this nickname*:?:/msg nickserv identify pass

this is what i do ! good luck !


Link Copied to Clipboard