Discord bot 独自离开语音通道

时间:2021-01-14 16:29:07

标签: python discord discord.py

我正在寻找代码,让我的机器人在单独在语音通道中时断开连接,即使它正在播放音乐。我尝试了不同的代码段,但它们不起作用。这就是我所拥有的,但是每当检测到事件时我都会收到错误消息。 (它在一个齿轮中),我想在一个名为 music(Music._leave) 的类中使用另一个名为 _leave 的命令

@commands.Cog.listener()
async def on_voice_state_update(self, member, before, after):
    if before.channel and len(before.channel.members) == 1:
        voice = get(bot.voice_clients, guild=member.guild)
        if voice is None:
            return
        else:
            #use _leave command

_离开代码:

@commands.command(name='leave', aliases=['l'])
async def _leave(self, ctx: commands.Context):

    if not ctx.voice_state.voice:
        embedVar = discord.Embed(title="",
                                 description='Not connected to any voice channel.',
                                 color=0x000000)
        return await ctx.send(embed=embedVar)

    await ctx.voice_state.stop()
    del self.voice_states[ctx.guild.id]

0 个答案:

没有答案