Discord.py 如何发出静音命令?

问题描述

正如标题所说.我试图弄清楚如何使用 discord.py 重写来制作静音命令.我认为我们需要一个静音"角色,其中使用的命令为用户提供静音"角色以及持续多长时间.我如何做到这一点.

As the title says. I'm trying to figure out how to make a mute command using discord.py rewrite. I'm thinking that we need to have a "mute" role where the command used gives the user the "mute" role and for how long. How do I achieve this.

我已经有了

@bot.command()
@commands.has_permissions(mute_members)
async def mute(ctx, member:discord.Member):


解决方案

您可以创建一个静音角色,并让您的机器人将角色添加到您要静音的用户:

you can create a Muted role and make your bot add the role to the user you want to mute:

@bot.command()
async def mute(ctx, member: discord.Member):
    role = discord.utils.get(ctx.guild.roles, name='Muted')
    await member.add_roles(role)
    await ctx.send("role added")

相关文章