Added afk/brb

Timer messages ("Timer XX has yyy left") now get resumed after a bot restart
Alliance relay is discord compatible now. [Orgbot]
This commit is contained in:
2021-10-26 22:35:31 +02:00
parent bd8055dac7
commit 2d7ecf4883
14 changed files with 119 additions and 48 deletions
+4 -2
View File
@@ -12,6 +12,7 @@ class BotConfig:
"username": "",
"password": "",
"host": "",
"port": 3306,
"name": ""})
shared_db = DictObject({
@@ -19,9 +20,9 @@ class BotConfig:
"username": "",
"password": "",
"host": "",
"port": 3306,
"name": ""
})
tower_url = ""
slaves = [
# {"username": "account_name", "password": "password", "character": "character_name"},
@@ -39,4 +40,5 @@ class BotConfig:
"modules/raidbot"
]
slaves = [DictObject(x) for x in slaves if password != ""]
# DO NOT TOUCH THIS LINE
slaves = [DictObject(x) for x in slaves]