例如: 我使用 !react 命令,然后在 1 分钟后我发送一条消息,然后机器人用特定的表情符号对消息做出反应。可能吗?
@commands.command()
@commands.cooldown(1, 600, commands.BucketType.user)
async def cookieme(self, ctx):
...不知何故记住了这个名字,下次用户说些什么时它会用 cookie 对 msg 做出反应
答案 0 :(得分:0)
我不太明白你的问题,但我会尽力帮助你:
@bot.command()
async def react(ctx):
def check(message):
return ctx.author == message.author and ctx.channel == message.channel
react = await bot.wait_for("message", check=check)
await react.add_reaction("?")