【发布时间】:2021-03-25 16:22:34
【问题描述】:
我该如何做到这一点,以便当不是管理员并运行“cls”命令的人给他一条消息,例如你不是管理员,对不起
Python 代码
@bot.command()
@commands.has_permissions(manage_messages=True)
async def cls(ctx, Quantity= 10000):
if manage_messages == False:
await ctx.send('You are not an administrator, you cannot run this command.')
await ctx.channel.purge(limit = Quantity)
帮帮忙,我不知道该怎么做。
【问题讨论】:
标签: python-3.x discord.py