Utility bot for rhythm game D4DJ. (Note that some dependencies are not public)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import discord
|
|
|
|
from d4dj_utils.manager.asset_manager import AssetManager
|
|
|
|
from discord.ext import commands
|
|
|
|
|
|
|
|
from miyu_bot.commands.common.master_asset_manager import MasterFilterManager
|
|
|
|
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
|
|
with open('config.json') as f:
|
|
|
|
bot_token = json.load(f)['token']
|
|
|
|
|
|
|
|
bot = commands.Bot(command_prefix='!', case_insensitive=True)
|
|
|
|
|
|
|
|
asset_manager = AssetManager('assets')
|
|
|
|
|
|
|
|
masters = MasterFilterManager(asset_manager)
|
|
|
|
|
|
|
|
bot.load_extension('miyu_bot.commands.cogs.card')
|
|
|
|
bot.load_extension('miyu_bot.commands.cogs.event')
|
|
|
|
bot.load_extension('miyu_bot.commands.cogs.music')
|
|
|
|
bot.load_extension('miyu_bot.commands.cogs.utility')
|
|
|
|
|
|
|
|
|
|
|
|
@bot.event
|
|
|
|
async def on_ready():
|
|
|
|
logging.getLogger(__name__).info(f'Current server count: {len(bot.guilds)}')
|
|
|
|
await bot.change_presence(activity=discord.Game(name='https://discord.gg/TThMwrAZTR'))
|
|
|
|
|
|
|
|
|
|
|
|
bot.run(bot_token)
|