Top

de-op block *first snippet*


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Feb 20, 2008
Last Updated  Feb 20, 2008
Tags  block  deop  op  script 
  Bookmark and Share

Introduction

You have to have an auto op in the channel you are in for this to work properly. What it does is when you are de-oped, it /part's you out of the channel, then rejoins you and de-ops the person who de-oped you. It also says a little funny thing whenever anyone else gets de-oped. enjoy! and please critique.

Grab the Code

Comments

  (10)  RSS
HoNdAx707
Comments: 59
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 2:42 am
If there is a chanserv then instead of /part /join you can do /cs op $chan
and you also dont need to use /'s and i dont think the "timers" that timer nothing are needed
Code:
 
on 1:DEOP:#: {
  if ($me isop $chan) {
    /msg $chan ha ha(or anything you wish to say)
  }

if you deop'd you cant be oped in that channel
heres what i would do
[code]
on *:DEOP:#: {
if ($opnick == $me) {
;if chanserv cs op $me
part $chan ORLY?
timer 1 3 join $chan
timer 1 5 mode $chan -o $nick
}
}
HoNdAx707
Comments: 59
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 2:43 am
crap forgot the code box ;/
uncled1023
Comments: 3
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 2:54 am
thats why you have to have auto-ops in that channel, otherwise the whole part of revenge doesnt work.
uncled1023
Comments: 3
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 2:59 am
i tried it without the timers, it doesnt work.
Darkkeeper
Comments: 101
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 4:38 am
kinda pointless, when i get deoped i just cs op (#chan) and ban the mofo
napa182
Comments: 1,134
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 4:48 am
when i get deop'ed i just use OperOverride lol
EL
Comments: 1,369
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 9:14 am
All depends wat type of network your on(cs,X,agent).No need for the extra timers in there.Also mite as well timekick/ban the one who deoped you.Maybe add a counter for all yur "Reveges",eh maybe a seperate notice to them them sayin they morons etc.Have some fun with it.`-.-´
uncled1023
Comments: 3
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 20, 2008 9:16 am
k, thanx
jonesy44
Comments: 1,072
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 22, 2008 12:08 pm
This script makes no sesnse .. if your op, you say haha, and if you're not you try and deop them .. which if your not op, you're gonna have trouble doing ;-)

2) Whats with the excess timers, just run the commands one after another, or use
Code:
hop $chan


3) add a dot to avoid timer spam =)
Ivanalicius
Comments: 17
 
mIRC Snippet:  de-op block *first snippet*
Posted on Feb 22, 2008 1:28 pm
Code:

on 1:DEOP:#: {
  if ((( $opnick == $me ) && ( X ison $chan ))) {
    if (( $nick != X ) && ( $nick != $me )) {
      .msg x unban $chan $me
      .msg x op $chan $me
      .msg x deop $chan $nick
      .notice $nick Hawkee.com DEOP Protection
      .msg x verify $nick
    }
    if ( $nick == X ) {
      .msg x unban $chan $me
      .msg x op $chan $me
    }
  }
}


Please Register or Login to start posting comments.
Bottom