我可以检测特定的人是否加入了随机语音通道(他们加入了哪个通道?)

时间:2020-07-20 17:52:39

标签: python discord bots

我可以检测特定的某人(我有ID)是否加入了随机语音通道并将我的漫游器发送到该通道吗?我查阅了很多论坛和文档,但对如何执行此操作一无所知。

我有一个事件可以检查特定的人是否加入了语音通道-可以。 但我无法将我的漫游器发送到那里,因为我不知道他们加入了哪个渠道。

1 个答案:

答案 0 :(得分:0)

on_voice_state_update(member, before, after)

@client.event
async def on_voice_state_update(member, before, after):
    if after is not None and member.id == the_id:
        # check if bot is not already in the voice channel (im not sure how to) and then join it if not