gpt4 book ai didi

discord.py - 只说命令机器人所有者

转载 作者:行者123 更新时间:2023-12-03 22:53:34 26 4
gpt4 key购买 nike

我试图让我的 !say 命令只对机器人所有者有效。这是我目前拥有的

@bot.command(pass_context = True)
async def say(ctx, *args):
mesg = ' '.join(args)
await bot.delete_message(ctx.message)
return await bot.say(mesg)

该代码有效,但我想让它只有我(机器人所有者)才能运行该命令。

最佳答案

您也可以使用装饰器 @is_owner() .

@bot.command(pass_context = True)
@commands.is_owner()
async def say(ctx):
your code...

关于discord.py - 只说命令机器人所有者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50509659/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com