mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Nov 2003
Posts: 9
D
doh Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
D
Joined: Nov 2003
Posts: 9
here's what i have so far:

Code:
 if ( $me == $anick ) { ns ghost _somenick_ _somepassword_ }


sadly i doesn't work so far. does anybody have an idea on how to make it work?

thanks

Joined: Jul 2006
Posts: 242
H
Fjord artisan
Offline
Fjord artisan
H
Joined: Jul 2006
Posts: 242
ON *:NOTIFY: {
if ($nick == somenick) {
ns ghost $nick pass
}
}

maybe bit more error free

ON *:NOTIFY: {
if ($me != $nick) && ($nick == somenick) {
ns ghost $nick pass
}
}

and then do /notify <nick>

have not tried but it should work. and its more effective then ON *:NICK:


Newbie
Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
you could try like this
Code:
on *:connect: $iif($me == $anick,ns ghost $mnick %password,echo -s fresh connect)

Joined: Nov 2003
Posts: 9
D
doh Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
D
Joined: Nov 2003
Posts: 9
thanks MikeChat, your solution works 100% like it should.


Link Copied to Clipboard