Advertisement
Guest User

Untitled

a guest
May 6th, 2013
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. ###### BASIC FILTERS
  2.  
  3. # REPLACE F Bomb variants with fudge. Also catches ffffuuuccckkk
  4. match f+u+c+k+|f+u+k+|f+v+c+k+|f+u+q+
  5. then randrep fudge|frack|ferp|fork
  6. then warn Watch your language please
  7. then log
  8.  
  9. # REPLACE a list of naughty words with merp!
  10. match cunt|whore|fag|slut|queer|bitch|bastard|Shit|pussy|penis|vagina|dick|nodus
  11. then replace Merp
  12. then warn &4Don't use there words!
  13.  
  14. # DENY & BAN use of the N word by hooking to another plugins ban command
  15. match n[^a]gg+(a|er|uh)
  16. then console ban &player -s Banned for racism!
  17. then deny
  18. then log
  19.  
  20.  
  21.  
  22. # Randrep example and then kill people saying bad things about your server!
  23. match .*this server sucks.*|.*hate this server.*
  24. then randrep I love this server!|This server rocks!|This is the greatest server ever!
  25. then kill
  26.  
  27.  
  28.  
  29. ###### FIXES FOR 'aaaaa', 'hihihihihihhi', 'lolololololol' type spam.
  30.  
  31.  
  32. ###### COMPLEX FILTERS
  33.  
  34. # REPLACE CAPS!!! New in Version 2.0.0!!! Yes.. not just block or warn but replace with lower
  35. match (\p{Lu}|\s){6,120}
  36. then lower
  37.  
  38.  
  39. ###### FUN Filters - use "rewrite" instead of replace to maintain colors
  40.  
  41. # FUN: Troll Planet Minecraft noobs
  42. match planet minecraft
  43. then replace Planet Krypton
  44.  
  45. # REPLACE Lag Bomb variants with merp. Also catches laaaaaaaaggggggg
  46. #match l+a+g+|l+a+g+g+|l+a+g+g+i+n+g+|l+a+g+g+g+g+g+g+g+g+
  47. #then randrep merp|herp|ferp|derp|florence
  48. #then warn we dont appreciate the negative feedback, we are aware of the issue.
  49. #then log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement