Top

Mimic/Copy/Echo script


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Jan 19, 2009
Last Updated  Jan 19, 2009
Tags  annoy  copy  echo  mimic  test 

Description

Mimic script. I made this as a bit of a challenge for myself I suppose. It'll get you banned from channels so dont.. use it.

Read the code, theres a few bits where you should probably replace some lines.
These are obvious.

It's messy I'm sure.
I've configured it so it doesnt spam hard in the channel i was testing it in.
This is the reason for some of the possibly peculiar halt keywords

It works though. It won't get you kicked off a server for excess flood.
It doesn't mimic weblinks or channelnames
It's impossible for people to abuse it and use it to give themselves or others op, or ban
uhh.. If people spam it too often it won't trigger on them for a while.
It will flood a chanel, given time. A short amount of time.
And people will be able to make it (you) say stupid things about you ;P
But other than that, it's quite safe.

I made this for myself but upon seeing
http://www.hawkee.com/snippet/5029/
I realised I'd topped it and I had to post :D
</rant>

EDIT to add:
I dont use any fancy on and off system

/onecho .load -rs Echo.mrc | echo Echo Script ON
/offecho .Unload -rs Echo.mrc | echo Echo Script OFF

add those to aliases.

Grab the Code

on *:NICK:{
  if %uses. [ $+ [ $nick ] ] != $null {
    set -u15 %uses. [ $+ [ $newnick ] ] %uses. [ $+ [ $nick] ]
  }
} 
 
on *:TEXT:*:#channel:{
  inc -u15 %uses. [ $+ [ $nick ] ]
  if %uses. [ $+ [ $nick ] ] > 5 { return }
  if (! isin $1-) || (chanserv isin $1-) || (% isin $1-) || (ANYONEyouDONTwantTOmimic isin $nick) || (| isin $1-) || (run isin $1-) {
    Echo Command Blocked. 
    ;Ignore -u30 $nick 
    ;tb $nick 30 Tryin' to abuse MAH ECHO SCRIPT!!
    halt
  }
  if (http isin $1-) || (www isin $1-) || (.com isin $1-) || (.net isin $1-) || (.org isin $1-) {
    echo Blocked echo of webaddress
    halt
  }
  if (I suck isin $1-) || (/ isin $1-) || (faggot isin $1-) || (# isin $1-) || (send isin $1-) || (fuck isin $1-) || (suck isin $1-) || (turd isin $1-) || (ping isin $1-) || (join isin $1-) || (nigga isin $1-) || (<- isin $1-) || (is gay isin $1-) || (is a fag isin $1-) || (I think isin $1-) {
    echo Blocked echo
    halt
  }
  if ($me isin $1-) {
    .timer -d 1 5 msg $chan $replace($1-,$me,$nick)
    halt
  }
  if (yourshortenednickname isin $1-) {
    .timer -d 1 5 msg $chan $replace($1-,yourshortenednickname,$nick)
    halt
  }
  else { .timer -d 1 5 msg $chan $1-25 }
}

Comments

  (0)  RSS

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  

Bottom