不和谐机器人如何在不和谐重写中加入语音通道?

时间:2019-07-31 07:28:23

标签: python discord discord.py discord.py-rewrite

当我输入!join时,我想使我的不和谐机器人连接到我所在的语音通道。 我尝试使用以下代码来执行此操作,但出现此错误: bot: BotInstance of 'Bot' has no 'voice_client_int' memberpylint(no-member)

我发现我的代码与重写不和谐版本不兼容。

@bot.command(pass_context = True)
async def join(ctx):
        channel = ctx.message.author.voice.voice_channel
        await bot.join_voice_channel(channel)
@bot.command(pass_context = True)
async def leave(ctx):
        server = ctx.message.server
        voice_client = bot.voice_client_int(server)
        await voice_client.disconnect()

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

如迁移页面中所述,在重写版本中,语音连接现在是VoiceChannel模型的一种方法。 pass_context也被弃用,因为现在总是传递上下文。

现在看起来像这样:

@bot.command()
async def join(ctx):
    channel = ctx.author.voice.channel
    await channel.connect()
@bot.command()
async def leave(ctx):
    await ctx.voice_client.disconnect()

当然,这个过分简化的版本缺少错误处理。