Discord Bot使用Python使用语音聊天使人的声音静音

时间:2020-09-24 09:16:07

标签: python discord

我15岁,我正在尝试制作一个不和谐的机器人,该机器人使用语音聊天使参与者的语音静音。为此,我正在使用Python。这是我的代码,但无法正常工作。

from discord.ext import commands
client = commands.Bot(command_prefix=" !")
@client.event
async def on_ready():
    print('BOT ACTIVATED')

@client.command()
async def mute(ctx):
    voice_client = ctx.guild.voice_client
    if not voice_client:
        return
    channel = voice_client.channel
    await voice_client.main_ws.voice_state(ctx.guild.id, channel.id, self_mute=True)

client.run('')

我的想法是: 我将输入的命令:!muteall 机器人将使语音聊天中的所有参与者静音 我将输入的命令:!unmuteall 并且该机器人将取消语音聊天中所有参与者的静音

请有人帮助我!!!!!

0 个答案:

没有答案