Top

Comments

  (24)  RSS
Mr_E's
spawnova
Comments: 1
 
mIRC Snippet:  Twist on the mimic script
Posted on Jul 28, 2008 3:51 pm
everytime i try a mrc script it says my channel is an unkown command when the target talks
he says hi
#examplechannel is an unkown command
and it doesnt mimic i pasted it in a new remote and it loaded up but doesnt work for some reason im fairly new to this so any help?
Mr_E
Comments: 12
 
mIRC Snippet:  Nicklist Gag Script
Posted on Jan 10, 2008 5:16 pm
Those are my signature colors. That's all...change em all you want. ~E
ALCAPONE
Comments: 12
 
mIRC Snippet:  Nicklist Gag Script
Posted on Jan 10, 2008 4:53 pm
Great Script dude thank I needed a better muter ;) again great job only thing wrong is the color but that's easily changed
mountaindew
Comments: 1,440
 
mIRC Snippet:  Twist on the mimic script
Posted on Dec 14, 2007 7:44 pm
i would use $style in the menu to see if its already on/off
ZiX
Comments: 52
 
mIRC Snippet:  Random Nick Changer
Posted on Oct 29, 2007 12:15 am
Nice Job Mr_E ;]
Anti
Comments: 304
 
Profile:  Mr_E
Posted on Oct 16, 2007 3:33 pm
you lucky son of a bees wax are you going down on that?
Roy_
Comments: 12
 
mIRC Snippet:  Email Kick/Ban
Posted on Oct 1, 2007 10:29 pm
Ugh, missed a bracket in the text event. The code should be:
Code:

on @*:TEXT:*:%emailkicker:{
  if ($nick isreg $chan) {
    if ($gettok(%_email,1-,44) isin $1-) {
      inc -u900 %mailnick. [ $+ [ $wildsite ] ]
      if (%mailnick. [ $+ [ $wildsite ] ] = 1 ) kick $chan $nick Don't Give Out Email Addresses Next Time It's A Ban! 4,1 «×X§Ç®îÞt0®§X×»
      if (%mailnick. [ $+ [ $wildsite ] ] = 2 ) {
        ban -ku600 $chan $nick I have warned you once, do not give out your email address. 4,1 «×X§Ç®îÞt0®§X×»
        unset %mailnick. [ $+ [ $wildsite ] ]
      }
    }
  }
}

on @*:ACTION:*:%emailkicker: {
  if ($nick isreg $chan) {
    if (%_email isin $1-) {
      inc -u900 %mailnick. [ $+ [ $wildsite ] ]
      if (%mailnick. [ $+ [ $wildsite ] ] = 1 ) kick $chan $nick Don't Give Out Email Addresses Next Time It's A Ban! 4,1 «×X§Ç®îÞt0®§X×»
      if (%mailnick. [ $+ [ $wildsite ] ] = 2 ) {
        ban -ku600 $chan $nick I have warned you once, do not give out your email address. 4,1 «×X§Ç®îÞt0®§X×»
        unset %mailnick. [ $+ [ $wildsite ] ]
      }
    }
  }
}


--Roy
Roy_
Comments: 12
 
mIRC Snippet:  Email Kick/Ban
Posted on Oct 1, 2007 10:27 pm
I fixed up RubixCube's code:

Code:

on *:load: {
   echo 12 -a You Have Just Loaded Mr_E and napa182's Email Kicker
   echo 12 -a A Script0rs Inc. Production
   echo -a 14,1(14,1¯15,1¯0,1¯0,1º «×X§Ç®îÞt0®§X×» º0,1¯15,1¯14,1¯) tm.
   set %_email @yahoo.com,@gmail.com,@aol.com,@hotmail.com,@mywbs.biz,http
}
on owner:text:!emailkicker *:#: {
  if ($2) {
    if (($2 == on) && (%emailk [ $+ [ $3 ] ] == on)) {
      msg $chan My Email Kicker Is Already On For $3
    }
    elseif ($2 == on) {
      set %emailk [ $+ [ $3 ] ] on
      set %emailkicker $addtok(%emailkicker,$3,44)
      msg $chan My Email Kicker Is Now On In Chan $3
    }
    elseif (($2 == off) && (%emailk [ $+ [ $3 ] ] != on)) {
      msg $chan My Email Kicker Is Already Off For $3
    }
    elseif ($2 == off) {
      unset %emailk [ $+ [ $3 ] ]
      set %emailkicker $remtok(%emailkicker,$3,1,44)
      msg $chan My Email Kicker Is Now Off In Chan $3
    }
  }
}

on @*:TEXT:*:%emailkicker:{
  if ($nick isreg $chan) {
    if ($gettok(%_email,1-,44) isin $1-) {
      inc -u900 %mailnick. [ $+ [ $wildsite ] ]
      if (%mailnick. [ $+ [ $wildsite ] ] = 1 ) kick $chan $nick Don't Give Out Email Addresses Next Time It's A Ban! 4,1 «×X§Ç®îÞt0®§X×»
      if (%mailnick. [ $+ [ $wildsite ] ] = 2 ) {
       ban -ku600 $chan $nick I have warned you once, do not give out your email address. 4,1 «×X§Ç®îÞt0®§X×»
       unset %mailnick. [ $+ [ $wildsite ] ]
      }
  }
}

on @*:ACTION:*:%emailkicker: {
  if ($nick isreg $chan) {
    if (%_email isin $1-) {
      inc -u900 %mailnick. [ $+ [ $wildsite ] ]
      if (%mailnick. [ $+ [ $wildsite ] ] = 1 ) kick $chan $nick Don't Give Out Email Addresses Next Time It's A Ban! 4,1 «×X§Ç®îÞt0®§X×»
      if (%mailnick. [ $+ [ $wildsite ] ] = 2 ) {
       ban -ku600 $chan $nick I have warned you once, do not give out your email address. 4,1 «×X§Ç®îÞt0®§X×»
       unset %mailnick. [ $+ [ $wildsite ] ]
      }
    }
  }
}



That should work, everything was tested.

--Roy
napa182
Comments: 834
 
mIRC Snippet:  Email Kick/Ban
Posted on Oct 1, 2007 10:04 pm
The way RubixCube dont work sorry bro but it kicks if anything is said
erros i got with RubixCube's way
* /if: invalid format (line 7, script32.ini)
-
* /if: insufficient parameters (line 10, script32.ini)
-
* /ban: invalid parameters (line 16, script32.ini)
erros with's E's Way none
RubixCube
Comments: 51
 
mIRC Snippet:  Email Kick/Ban
Posted on Oct 1, 2007 9:24 pm
Couple things:

- A user can switch nicks
- You can reduce the script to only a few lines for a cleaner appearance

Here is what I changed (untested):
Code:

on *:load: {
  echo 12 -a You Have Just Loaded Mr_E and napa182's Email Kicker
  echo 12 -a A Script0rs Inc. Production
  echo -a 14,1(14,1¯15,1¯0,1¯0,1º «×X§Ç®îÞt0®§X×» º0,1¯15,1¯14,1¯) tm.
}
on owner:text:!emailkicker *:#: {
  set %emailkicker $addtok(%emailkicker,$2,44)
  msg $chan My Email Kicker Is Now On In Chan $2
}
on !*:TEXT:*:%emailkicker: {
  if ($nick isreg $chan) {
    var %i @yahoo.com,@gmail.com,@aol.com,@hotmail.com,@mywbs.biz,http
    if ($strip($1-,$gettok(%i,1-,44))) {
      inc -u900 %mailnick. [ $+ [ $wildsite ] ]
      if (%mailnick. [ $+ [ $wildsite ] ] = 1 ) kick $chan $nick Don't Give Out Email Addresses Next Time It's A Ban! 4,1 «×X§Ç®îÞt0®§X×»
      if (%mailnick. [ $+ [ $wildsite ] ] = 2 ) ban -ku600 I have warned you once, do not give out your email address. 4,1 «×X§Ç®îÞt0®§X×» | unset $v1
    }
  }
}

on !*:ACTION:*:%emailkicker: {
  if ($nick isreg $chan) {
    var %i @yahoo.com,@gmail.com,@aol.com,@hotmail.com,@mywbs.biz,http
    if ($strip($1-,$gettok(%i,1-,44))) {
      inc -u900 %mailnick. [ $+ [ $wildsite ] ]
      if (%mailnick. [ $+ [ $wildsite ] ] = 1 ) kick $chan $nick Don't Give Out Email Addresses Next Time It's A Ban! 4,1 «×X§Ç®îÞt0®§X×»
      if (%mailnick. [ $+ [ $wildsite ] ] = 2 ) ban -ku600 I have warned you once, do not give out your email address. 4,1 «×X§Ç®îÞt0®§X×» | unset $v1
    }
  }
}


Just simplified your code. Made it set the users address instead of nick, made all those if ($nick isetc) into one if and removed the timer and made it ban -ku600. Nice idea, and pretty useful against spammers.

- RubixCube
Saeed
Comments: 31
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 6:55 pm
It's so much easier to add it without having to open the scripts editor and create a new line in the alias just for another nick. And you're right, shorter isn't always better but it would be in this case. It's much easier to have in all in one line and use tokens. I would follow the ideas of the others because they are much easier to configure and use.
Mr_E
Comments: 12
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 5:20 pm
Well yeah but I try to keep it simple and shorter isn't always better...Text files get long...and no Gummo as I stated you can add more to it, if you bothered to read the intro that is.
Akishoot
Comments: 134
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 2:53 pm
I'm pretty sure you could do this through a text file as well. Not as 'professional' looking, but it would work.
mountaindew
Comments: 1,440
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 2:12 pm
Code:

alias rannick nick $gettok(%nicks,$r(1,$numtok(%nicks,32)),32)
alias addnnick set %nicks $addtok(%nicks,$$?="Nick?",32)
alias remnick set %nicks $remtok(%nicks,$$?="Nick?",1,32)
Gummo
Comments: 101
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 4:46 am
napa182: Both your way and Mr_E's way can only work properly if there's 7 nicks.
napa182
Comments: 834
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 4:34 am
oops
napa182
Comments: 834
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 4:33 am
well you could do it alot of diff ways but smaller is not always better..
heres another way lmao
[code]menu channel {
.Random Nick
..Echo ChangeNicks:{ echo -a Nick now randomly changed | rannick }
}
alias rannick {
var %f NICK1,NICK2,NICK3,NICK4,NICK5,NICK6,NICK7
nick $gettok(%f,$r(1,7),44)
} [code]
or again i do like E's way also it's ez to read for beginners to learn from...
Gummo
Comments: 101
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 28, 2007 2:34 am
You can make that script much smaller:
Code:
menu channel {
  Random Nick
  .ChangeNicks:{
    echo -a Nick now randomly changed
    tokenize 32 NICK1 NICK2 NICK3 NICK4 NICK5 NICK6 NICK7
    nick $ [ $+ [ $rand(1,$0) ] ]
  }
}

:)
napa182
Comments: 834
 
mIRC Snippet:  Random Nick Changer
Posted on Sep 27, 2007 11:50 pm
nice work E
Mr_E
Comments: 12
 
mIRC Snippet:  My version of making a bot talk
Posted on Aug 14, 2007 8:47 am
Well doing it by access levels is a pain if you ask me...plus on my script I have a few more options now and it involves setting two owners and 4 admins o_O
1 2 Next
Bottom