discord-kagebot/src/main/resources/config.toml

31 lines
603 B
TOML
Raw Normal View History

2019-06-08 11:07:52 +02:00
[system]
serverId = "356414885292277771"
admins = [
"137780880344088576"
]
2019-06-08 13:03:33 +02:00
[[commands]]
trigger = "!ping"
response = "pong"
[[commands]]
trigger = "somewhere"
response = "found it"
2019-06-08 21:14:57 +02:00
matchType = "CONTAINS"
[[commands]]
trigger = "A.+B"
response = "regex matched"
matchType = "REGEX"
[[commands]]
trigger = "answer me"
# this will @mention the user who triggered the command,
# i.e. “@author there you go”
response = "@@ there you go"
2019-06-08 21:14:57 +02:00
[[commands]]
trigger = "^[^`]*([()|DoOvVcC][-=^']?;|;[-=^']?[()|DoOpPvVcC3]|:wink:|😉)[^`]*$"
response = "@@ Oboe!"
matchType = "REGEX"
deleteMessage = true