mirror of
https://github.com/opus-tango/minecraft-server-discord-bot.git
synced 2026-03-19 19:52:52 +00:00
29 lines
1.2 KiB
JSON
29 lines
1.2 KiB
JSON
{
|
|
"config": {
|
|
"chat_channel": "minecraft",
|
|
"command_channel": "minecraft",
|
|
"command_prefix": "!",
|
|
"regex": [
|
|
{
|
|
"match": ".*\\]: <(.*)> (.*)",
|
|
"fstring": "**[{groups[0]}]**: {groups[1]}",
|
|
"description": "Passes chat from minecraft to discord"
|
|
},
|
|
{
|
|
"match": ".*\\[minecraft/DedicatedServer\\]: (.*) (joined the game|left the game)",
|
|
"fstring": "**{groups[0]} {groups[1]}**",
|
|
"description": "Passes join/leave messages from minecraft to discord"
|
|
},
|
|
{
|
|
"match": ".*\\[minecraft/DedicatedServer\\]: There are (.*) players online: (.*)",
|
|
"fstring": "There are {groups[0]} players online: **{groups[1]}**",
|
|
"description": "Passes player count from minecraft to discord (for listplayers command)"
|
|
},
|
|
{
|
|
"match": ".*\\[minecraft/DedicatedServer\\]: Done (.*)! For help, type \"help\"",
|
|
"fstring": "**Server ready!**",
|
|
"description": "Notifies discord when server has started"
|
|
}
|
|
]
|
|
}
|
|
} |