本文介绍了Discord.py如何执行静音命令?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如标题所述.我试图弄清楚如何使用discord.py rewrite进行静音命令.我认为我们需要具有静音"角色,其中所使用的命令为用户提供了静音"角色以及持续了多长时间.我该如何做到这一点.
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):
推荐答案
您可以创建一个Muted角色,并使您的机器人将角色添加到您要静音的用户中:
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")
这篇关于Discord.py如何执行静音命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!