Files
igncore/conf/template.config.py
T
Minidodo 2d7ecf4883 Added afk/brb
Timer messages ("Timer XX has yyy left") now get resumed after a bot restart
Alliance relay is discord compatible now. [Orgbot]
2021-10-26 22:35:31 +02:00

45 lines
891 B
Python

from core.dict_object import DictObject
class BotConfig:
username = ""
password = ""
character = ""
superadmin = []
database = DictObject({
"type": "mariadb",
"username": "",
"password": "",
"host": "",
"port": 3306,
"name": ""})
shared_db = DictObject({
"type": "mariadb",
"username": "",
"password": "",
"host": "",
"port": 3306,
"name": ""
})
slaves = [
# {"username": "account_name", "password": "password", "character": "character_name"},
]
server = DictObject({
"dimension": "5",
"host": "chat.d1.funcom.com",
"port": 7105
})
module_paths = [
"modules/core",
"modules/standard",
"modules/raidbot"
]
# DO NOT TOUCH THIS LINE
slaves = [DictObject(x) for x in slaves]