Sinuce

BanManager config.yml

Aug 30th, 2014
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.59 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: 127.0.0.1
  8.     port: 3306
  9.     name: banmanager
  10.     user: root
  11.     password: *PASS*
  12.     maxConnections: 10
  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.       playerWarnings: bm_player_warnings
  21.       ipBans: bm_ip_bans
  22.       ipBanRecords: bm_ip_ban_records
  23.   external:
  24.     enabled: false
  25.     host: 127.0.0.1
  26.     port: 3306
  27.     name: external_bans
  28.     user: root
  29.     password: ''
  30.     maxConnections: 10
  31.     tables:
  32.       playerBans: bm_player_ban_all
  33.       playerUnbans: bm_player_unban_all
  34.       playerMutes: bm_player_mute_all
  35.       playerUnmute: bm_player_unmute_all
  36.       ipBans: bm_ip_ban_all
  37.       ipUnbans: bm_ip_unban_all
  38.   convert:
  39.     enabled: false
  40.     host: 127.0.0.1
  41.     port: 3306
  42.     name: banmanager
  43.     user: root
  44.     password: *PASS*
  45.     maxConnections: 10
  46.     tables:
  47.       bansTable: bm_bans
  48.       bansRecordTable: bm_ban_records
  49.       ipBansTable: bm_ip_bans
  50.       ipBansRecordTable: bm_ip_records
  51.       kicksTable: bm_kicks
  52.       mutesTable: bm_mutes
  53.       mutesRecordTable: bm_mutes_records
  54.       playerIpsTable: bm_player_ips
  55.       warningsTable: bm_warnings
  56. mutedCommandBlacklist:
  57. - msg
  58. - m
  59. - t
  60. - tell
  61. - pm
  62. - w
  63. - whisper
  64. - r
  65. - me
  66. - l
  67. - g
  68. - local
  69. - global
  70. - join
  71. - focus
  72. duplicateIpCheck: true
  73. logKicks: false
Advertisement
Add Comment
Please, Sign In to add comment