2d7ecf4883
Timer messages ("Timer XX has yyy left") now get resumed after a bot restart
Alliance relay is discord compatible now. [Orgbot]
45 lines
891 B
Python
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]
|