Top

Temp op protection


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  1.7
Scores Submitted  3
Date Added  May 24, 2007
Last Updated  May 28, 2007
Tags  op  pro  temp 
  Bookmark and Share

Introduction

Put this in remotes. for channels that have a no temp opping rule for it's ops, this is a simple code that will deop the temp op and will also tell the user to not temp op. Make sure to replace YOURCHANNELHERE with the channel you want this to apply to.
This script was tested before posting it. it works ;] Enjoy!

Grab the Code

Comments

  (4)  RSS
Lindrian
Comments: 755
 
mIRC Snippet:  Temp op protection
Posted on May 24, 2007 5:09 am
use $+ to get $nick, instead of $nick ,
Result:

Lindrian, <- with $+
Lindrian , <- Without
|MELIORITE|
Comments: 144
 
mIRC Snippet:  Temp op protection
Posted on May 24, 2007 6:59 pm
This might be better as part of a total protection... its like a partial "bitchmode"... The way it currently is written though, it would have a continual war with a server bot if applied in channels where there is one... and technically, if this is loaded on a bot, not even the bot owner would be able to access ops. Have a look at the other snippets around on this site that do similar jobs to see how this might be improved.
Chevy
Comments: 23
 
mIRC Snippet:  Temp op protection
Posted on May 29, 2007 3:44 am
You Do Not Need All Of This
on *:op:#YOURCHANNELHERE: {
if ($nick == $me) { halt }
if ($opnick == $me) { halt }
mode $chan -o $opnick
msg $chan No temp modding in $chan $+ , $nick $+ .
}

All You need is
on *:op:#YourChannel: {
if ( $nick == YourNickHere ) { Halt }
mode $Chan -o $opnick
msg $chan 14 $nick Do Not Temp Mod Here In 4 #
}

So Much Easier And Better Coded.

cantseeme
Comments: 48
 
mIRC Snippet:  Temp op protection
Posted on Jun 1, 2007 4:44 pm
seems he deleted my comment on this script, but thinking of it again, I think: gee, if I had oper or Op in the channel I would just make a timer to mass deop him and flood him off the server.

lolololololololololol.

Please Register or Login to start posting comments.
Bottom