mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2005
Posts: 2
K
K3V Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
K
Joined: Feb 2005
Posts: 2
Hello.

I was trying to make a remote script that would trigger when I was deopped in any channel. It would then /msg chanserv op <that channel> <my nick>
...

Here's what I tried:

on #:DEOP:# {
if (%nick == K3V) {
/msg chanserv OP #k-pdt K3V
}
}

but it didn't work. Please tell me what's wrong and how to fix it. (Sorry, I'm a n00b to mIRC.)

Joined: Feb 2005
Posts: 681
M
Fjord artisan
Offline
Fjord artisan
M
Joined: Feb 2005
Posts: 681
on *:DEOP:#k-pdt: {
if ($opnick == $me) msg chanserv OP #k-pdt $me
}

Joined: Mar 2004
Posts: 359
L
Fjord artisan
Offline
Fjord artisan
L
Joined: Mar 2004
Posts: 359
-EDIT-
Answered before me :tongue:

Last edited by LostServ; 06/02/05 11:26 PM.
Joined: Feb 2005
Posts: 2
K
K3V Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
K
Joined: Feb 2005
Posts: 2
Thanks. smile


Link Copied to Clipboard