Fatality Kicker

By Zaiba91 on Mar 30, 2008

This is a fatality kicker I developed while I was bored. Pretty easy to use, just type fatality <target> thenyes for a ban or `no for a kick. It reads from a txt file called Fatal.txt in your mIRC directory.
Here's the link for 110 different fatalities: http://pastebin.ca/963374
You will also need to change the on line 6 to your operating nick.
Let me know if you want it upgraded or cleaned up, and i'll try to fix it.
otherwise, have fun with it.

on *:text:`Fatality*:#: {
  if ($nick isop $chan) || ($nick ishop $chan) {
    if (!$2) || ($2 !ison $chan) {
      notice $nick A target would be great ._.
    }
    if ($2 == <yournick>) || ($2 == $me) {
      msg $chan I cannot...
    }
    else {
      set %target $2
      notice $nick Would you like to set a ban on this target? Type `yes or `no to decide.
    }
  }
}
on *:text:`yes*:#: {
  if ($nick isop $chan) || ($nick ishop $chan) {
    if (!%target) {
      notice $nick A target would be better to hit than nothing ._.
    }
    else {
      .timer 1 3 describe $chan $read(Fatal.txt)
      .timer 1 4 mode $chan +b %target
      .timer 1 4 mode $chan +b $address(%target,*)
      .timer 1 5 kick $chan %target 4,5 $+ FATALITY $+ 3,0
    }
  }
}
on *:text:`no*:#: {
  if ($nick isop $chan) || ($nick ishop $chan) {
    if (!%target) {
      notice $nick A target would be better to hit than nothing ._.
    }
    else {
      .timer 1 3 describe $chan $read(Fatal.txt)
      .timer 1 7 kick $chan %target 4,5 $+ FATALITY $+ 3,0
    }
  }
}
on *:text:`clear*:#: {
  /unset %target
  notice $nick cleared
}

Comments

Sign in to comment.
Viper01   -  Apr 30, 2008

I know, i got bored one day and just went beserk on making this lol
(I\'m Zaiba91 as well so...) ^-^

 Respond  
DemonicDerek666   -  Mar 31, 2008

very very interesting but i prefer to normal kick/ban

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.