Discord.py how do I make a mute command?(Discord.py 如何发出静音命令?)
本文介绍了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")
这篇关于Discord.py 如何发出静音命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Discord.py 如何发出静音命令?


猜你喜欢
- 我如何卸载 PyTorch? 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01