标签: python bots discord discord.py
标题说明了一切,我有一个我制造的机器人,它是一种游戏,您可以通过@bot.command(name='join')输入游戏,然后根据输入的使用情况前进:
@bot.command(name='join')
@bot.event async def on_message(message)
有时您只想重置游戏,而无法退出比赛,所以我想知道,有没有一种方法可以使用命令重置机器人?试图使它返回但没有运气,如果没有,那就可以摆脱上面使用的命令。
答案 0 :(得分:1)
使用await.bot.logout DOCS LINK 和await.bot.login DOCS LINK 我想。
在登录名一中使用参数:
await login(token, *, bot=True)
希望这会有所帮助!
编辑:这将完全注销,然后登录bot。