3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 13:51:51 +00:00
zeppelin/README.md

34 lines
711 B
Markdown
Raw Normal View History

2018-07-01 03:35:51 +03:00
### Config format example
2018-07-01 04:31:24 +03:00
Config files are currently located at `config/<guildId>.yml` (and `config/global.yml` for global plugins).
2018-07-01 03:35:51 +03:00
```yml
levels:
2018-07-01 04:31:24 +03:00
50: "1234" # Mod role id
100: "5678" # Admin role id
2018-07-01 03:35:51 +03:00
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']
```