Top

Little Op joke.


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Mar 29, 2008
Last Updated  Mar 31, 2008
Tags  op 
  Bookmark and Share

Introduction

Well I Was doing
nothing so i just thought of something like this and i made it a joke so hope you enjoy

Grab the Code

Comments

  (4)  RSS
Zaiba91
Comments: 4
 
mIRC Snippet:  Little Op joke.
Posted on Mar 29, 2008 10:50 pm
Although this is a decent script, and alot of people would get fairly mad by it, couldn't you just use the $2- identifier instead of $2 $3 $4 etc? Plus you seem to be missing quite a few closing brackets.
napa182
Comments: 1,135
 
mIRC Snippet:  Little Op joke.
Posted on Mar 30, 2008 1:24 am
yeah you should really close the script with the rest of the closing brackets. also silent that timer.
you can also do this script like this as well
Code:
on 1:Text:`Op*:#:{
  if ($2 !ison $chan) || ($2 isop $chan) { msg $chan $iif($2 !ison #,Cant seem to find $2 $nick $+ .,Sorry $2 Is Already Op.) }
  else {
    msg $chan !op $2
    .timer 1 2 .msg $chan !deop $2
  }
}
jonesy44
Comments: 1,072
 
mIRC Snippet:  Little Op joke.
Posted on Mar 30, 2008 7:09 am
eek, close them brackets !

Code:
on *:Text:`Op*:#: {
  if ($2 !ison $chan) {
    msg $chan Cant seem to find $2 $+ , $nick $+ .
    halt
  }
  else {
    if ($2 isop $chan) {
      msg $chan Sorry $2 Is Already Op.
      halt
    }
    else {
      msg $chan !op $2
      .timer 1 2 msg $chan !deop $2
    }
  }
}
Noa Destiny
Comments: 29
 
mIRC Snippet:  Little Op joke.
Posted on Mar 31, 2008 8:28 pm
Alright, Edited Guys Thank You for The Help.

Please Register or Login to start posting comments.
Bottom