mIRC Home    About    Download    Register    News    Help

Print Thread
#216489 17/11/09 03:50 AM
Joined: Nov 2007
Posts: 20
D
Drai Offline OP
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Nov 2007
Posts: 20
I have regular ops on a channel (access level 50 or @ in most cases) and I would like to be able to re-op myself when somebody de-ops me. I was wondering how I could get a script to do this. I imagine it involves the command "/cs op #channel nick"

Thanks

Drai #216490 17/11/09 03:52 AM
Joined: Jul 2006
Posts: 4,146
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,146
Code:
on *:deop:if ($opnick == $me) cs op #


#mircscripting @ irc.swiftirc.net == the best mIRC help channel
Wims #216506 17/11/09 09:17 PM
Joined: Nov 2007
Posts: 20
D
Drai Offline OP
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Nov 2007
Posts: 20
Originally Posted By: Wims
Code:
on *:deop:if ($opnick == $me) cs op #
Thank you very much.

Last edited by Drai; 17/11/09 09:25 PM.
Drai #216512 17/11/09 10:18 PM
Joined: Jul 2006
Posts: 4,146
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,146
I just realize I forget to put the channel parameter smirk
Code:
on *:deop:#:if ($opnick == $me) cs op #


#mircscripting @ irc.swiftirc.net == the best mIRC help channel

Link Copied to Clipboard