Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. exports.moderation = {
  2. modException: '%', // Min rank for not receive moderation
  3.  
  4. allowmute: true,
  5. disableModNote: false,
  6.  
  7. MOD_CONSTS: {
  8. FLOOD_MESSAGE_NUM: 5,
  9. FLOOD_PER_MSG_MIN: 500, // this is the minimum time between messages for legitimate spam. It's used to determine what "flooding" is caused by lag
  10. FLOOD_MESSAGE_TIME: 6 * 1000,
  11.  
  12. MIN_CAPS_LENGTH: 18,
  13. MIN_CAPS_PROPORTION: 0.8,
  14.  
  15. MAX_STRETCH: 7,
  16. MAX_REPEAT: 4
  17. },
  18.  
  19. values: {
  20. 'spam-p': 3,
  21. 'spam': 4,
  22. 'spam-link': 4,
  23. 'flood-hard': 3,
  24. 'flood': 2,
  25. 'caps': 1,
  26. 'stretch': 1,
  27. 'banwords': 2,
  28. 'inapwords': 2,
  29. 'servers': 2,
  30. 'youtube': 2,
  31. 'spoiler': 2
  32. },
  33.  
  34. modDefault: {
  35. //basic mods
  36. 'caps': 1,
  37. 'stretching': 1,
  38. 'flooding': 1,
  39. 'spam': 1,
  40.  
  41. 'bannedwords': 1,
  42. 'inapropiate': 1,
  43.  
  44. //specific mods
  45. 'spoiler': 0,
  46. 'youtube': 0,
  47. 'psservers': 0,
  48.  
  49. //multiple infraction
  50. 'multiple': 1,
  51.  
  52. //zero tolerance
  53. 'zerotol': 1
  54. },
  55.  
  56. punishments: [
  57. "warn",
  58. "mute",
  59. "hourmute",
  60. "roomban"
  61. ],
  62.  
  63. psServersExcepts: {
  64. "showdown": 1,
  65. "smogtours": 1
  66. },
  67.  
  68. zeroToleranceDefaultLevel: 'h',
  69. zeroToleranceLevels: {
  70. 'l': {name: 'Low', value: 1},
  71. 'n': {name: 'Normal', value: 2},
  72. 'h': {name: 'High', value: 3}
  73. }
  74. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement