Advertisement
Guest User

Untitled

a guest
Feb 28th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. #
  2. # Aliases will be found and blocked automatically, e.g. msg will block tell
  3. debug: false
  4. databases:
  5. local:
  6. enabled: true
  7. host: localhost
  8. port: 3306
  9. name: CoveBanManager
  10. user: CoveLeon
  11. password: 'leon123'
  12. maxConnections: 20
  13. tables:
  14. players: bm_players
  15. playerBans: bm_player_bans
  16. playerBanRecords: bm_player_ban_records
  17. playerMutes: bm_player_mutes
  18. playerMuteRecords: bm_player_mute_records
  19. playerKicks: bm_player_kicks
  20. playerNotes: bm_player_notes
  21. playerReports: bm_player_reports
  22. playerReportLocations: bm_player_report_locations
  23. playerWarnings: bm_player_warnings
  24. ipBans: bm_ip_bans
  25. ipBanRecords: bm_ip_ban_records
  26. ipMutes: bm_ip_mutes
  27. ipMuteRecords: bm_ip_mute_records
  28. ipRangeBans: bm_ip_range_bans
  29. ipRangeBanRecords: bm_ip_range_ban_records
  30. external:
  31. enabled: false
  32. host: 127.0.0.1
  33. port: 3306
  34. name: external_bans
  35. user: root
  36. password: ''
  37. maxConnections: 10
  38. tables:
  39. playerBans: bm_player_ban_all
  40. playerUnbans: bm_player_unban_all
  41. playerMutes: bm_player_mute_all
  42. playerUnmutes: bm_player_unmute_all
  43. playerNotes: bm_player_note_all
  44. ipBans: bm_ip_ban_all
  45. ipUnbans: bm_ip_unban_all
  46. convert:
  47. enabled: false
  48. host: 127.0.0.1
  49. port: 3306
  50. name: local_bans
  51. user: root
  52. password: ''
  53. maxConnections: 10
  54. tables:
  55. bansTable: bm_bans
  56. bansRecordTable: bm_ban_records
  57. ipBansTable: bm_ip_bans
  58. ipBansRecordTable: bm_ip_records
  59. kicksTable: bm_kicks
  60. mutesTable: bm_mutes
  61. mutesRecordTable: bm_mutes_records
  62. playerIpsTable: bm_player_ips
  63. warningsTable: bm_warnings
  64. mutedCommandBlacklist:
  65. - msg
  66. softMutedCommandBlacklist:
  67. - msg
  68. duplicateIpCheck: true
  69. bypassDuplicateChecks:
  70. - 0.0.0.0
  71. - 127.0.0.1
  72. logKicks: false
  73. displayNotifications: true
  74. broadcastOnSync: false
  75. timeLimits: {}
  76. reportCooldown: 10
  77. warningCooldown: 10
  78. warningActions:
  79. enabled: false
  80. hooks:
  81. enabled: false
  82. checkForUpdates: true
  83. offlineAutoComplete: true
  84. punishAlts: false
  85. cleanUp:
  86. kicks: 30
  87. banRecords: 0
  88. ipBanRecords: 0
  89. ipMuteRecords: 0
  90. muteRecords: 0
  91. readWarnings: 0
  92. unreadWarnings: 0
  93. maxOnlinePerIp: 0
  94. checkOnJoin: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement