Advertisement
Seb

Simple Blacklist/Shitlist Script

Seb
May 20th, 2010
1,437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.85 KB | None | 0 0
  1. #Super simple Blacklist / Shitlist script for mIRC.
  2. #Use it as an example to make your own. the last line of code is the line to use for channel service bots
  3. #You need access to said channel to use the bots. edit it to your own need.
  4.  
  5. menu nicklist {
  6.   $iif($me isop $chan,Blacklist)
  7.   .Add:/auser BLACKLIST $address($$1,1) | kick # $$1 Unwanted user due to abusive behavior. /msg $me for info | ban # $address($$1,1)
  8. }
  9. menu channel {
  10.   Blacklist
  11.   .List:/ulist BLACKLIST
  12.   .Add-Manual:/auser BLACKLIST $$?="Enter A host like this one -> *!*host@host.com"
  13.   .Del:/ruser BLACKLIST $$?="Enter A host From Listing like this -> *!*host@host.com"
  14. }
  15. on blacklist:JOIN:#:{
  16.   if ($me isop #) { ban -k # $nick Unwanted user due to abusive behavior. /msg $me for info }
  17.   else { .msg x ban # $nick Unwanted user due to abusive behavior. /msg $me for info }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement