Advertisement
Guest User

Untitled

a guest
May 20th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. # Default message setups, can be overridden in rules.txt per match, do not remove quotes around messages!
  2. warnmsg: '&4[&6PwnFilter&4] &4Warned by PwnFilter!'
  3. kickmsg: '&4[&6PwnFilter&4] &4Kicked by PwnFilter!'
  4. burnmsg: '&4[&6PwnFilter&4] &4Burned by PwnFilter!'
  5. killmsg: '&4[&6PwnFilter&4] &4Killed by PwnFilter!'
  6.  
  7. # Set the level for MATCH/SEND and DEBUG messages (if enabled)
  8. # The logfile level will be set to match this, so PwnFilter.log
  9. # Set to 'info' if you want MATCH/SEND events in your main server log
  10. loglevel: info
  11.  
  12. # Create a PwnFilter.log file in the plugins/PwnFilter directory
  13. # This file will contain all PwnFilter log messages, regardless of level.
  14. logfile: false
  15.  
  16. # Debug mode (VERY verbose) (Enable logfile above)
  17. debug: false
  18.  
  19. # Strip color from chat. Permission to bypass pwnfilter.color or pwnfilter.bypass
  20. decolor: false
  21.  
  22. # Experimental, filter commands as well as chat true/false
  23. commandfilter: false
  24.  
  25. # Filter text applied to signs
  26. signfilter: true
  27.  
  28. # Basic spam filter enabled (chat ONLY)
  29. spamfilter: true
  30.  
  31. # Basic spam filter enabled (commands ONLY)
  32. commandspamfilter: false
  33.  
  34. # Command White List: Commands to filter, if empty, will filter ALL (except blacklist)
  35. cmdlist: []
  36.  
  37. # Command Black List: Commands to never filter
  38. cmdblist:
  39. - tp
  40. - tpa
  41. - warp
  42. - help
  43.  
  44. # Note: You can also change the priority of event handlers with:
  45. # priority, cmdpriority and signpriority
  46. # Changing priority can allow the event handlers to process messages before or after other
  47. # plugins.
  48.  
  49. # Chat Filter Priority Configuration, options: lowest,low,normal,high,highest
  50. priority: highest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement