3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00
Zeppelin is a moderation bot for Discord, designed with large servers and reliability in mind.
Find a file
2018-07-01 03:35:51 +03:00
migrations Initial commit in new repository 2018-07-01 03:35:51 +03:00
src Initial commit in new repository 2018-07-01 03:35:51 +03:00
.editorconfig Initial commit in new repository 2018-07-01 03:35:51 +03:00
.gitignore Initial commit in new repository 2018-07-01 03:35:51 +03:00
knexfile.js Initial commit in new repository 2018-07-01 03:35:51 +03:00
package-lock.json Initial commit in new repository 2018-07-01 03:35:51 +03:00
package.json Initial commit in new repository 2018-07-01 03:35:51 +03:00
README.md Initial commit in new repository 2018-07-01 03:35:51 +03:00
tsconfig.json Initial commit in new repository 2018-07-01 03:35:51 +03:00
tslint.json Initial commit in new repository 2018-07-01 03:35:51 +03:00

Config format example

Config files are currently located at data/guilds/<guildId>.yml (and data/guilds/global.yml for global plugins).

levels:
  50: mod
  100: admin

plugins:
  mod_plugin:
    config:
      kick_message: 'You have been kicked'
    permissions:
      kick: false
    overrides:
      - level: '>=50'
        permissions:
          kick: true
      - level: '>=100'
        config:
          kick_message: 'You have been kicked by an admin'
  spam:
    config:
      filter_words: ['heck']
    overrides:
      - channel: '1234'
        config:
          +filter_words: ['foo']
      - level: '>=50'
        config:
          -filter_words: ['heck']