尝试使用Discord.py将整个语音通道静音

时间:2020-10-17 14:42:02

标签: python discord discord.py

我对python很陌生,并在https://discordpy.readthedocs.io/en/latest/进行了搜索,但没有找到类似的选项。 有人可以帮我写代码吗? 那就是我所做的:

import discord
from discord.ext import commands

bot = commands.Bot(command_prefix = '.')

@bot.event
async def on_ready():
    print('The bot is ready!')

bot.run('TOKEN')

1 个答案:

答案 0 :(得分:0)

我要解决的方法是生成该语音通道中所有用户的列表,然后通过for循环将每个用户静音。

channel.members将返回语音通道(https://discordpy.readthedocs.io/en/latest/api.html?highlight=channel%20members#discord.VoiceChannel.members)中所有成员的列表