Initial commit in new repository
This commit is contained in:
commit
23c78f2c9c
15 changed files with 4048 additions and 0 deletions
33
README.md
Normal file
33
README.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
### Config format example
|
||||
|
||||
Config files are currently located at `data/guilds/<guildId>.yml` (and `data/guilds/global.yml` for global plugins).
|
||||
|
||||
```yml
|
||||
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']
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue