【发布时间】:2021-06-11 12:47:57
【问题描述】:
所以我正在制作一个不和谐的机器人,但我不想让某些命令只能由特定角色使用 代码如下:
@client.command()
async def mute(ctx,member : discord.Member):
muted_role = ctx.guild.get_role(I don't know if i should share this role id so just imagine there is a role id here)
await member.add_roles(muted_role)
await ctx.send(member.mention + " has been muted")
【问题讨论】:
标签: python-3.x discord.py bots