作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 discord.py 和一般的 python 还很陌生,但我正在努力学习。我不知道如何将 command.reset_cooldown 添加到我的代码中。正如下面代码中所说,我希望 !test 忽略冷却时间,但我希望 !test 2 具有冷却时间。有人可以帮助我吗?
@commands.cooldown(1, 30, commands.BucketType.user)
async def test(ctx, command=None):
if command is None:
await ctx.send('I want this to ignore cooldown')
elif command.lower() == '2':
await ctx.send('I want this to have a Cooldown')```
最佳答案
@commands.cooldown(1, 30, commands.BucketType.user)
async def test(ctx, command=None):
if command is None:
await ctx.send('I want this to ignore cooldown')
test.reset_cooldown(ctx)
elif command.lower() == '2':
await ctx.send('I want this to have a Cooldown')
基本上,正是上面那个人所说的,但是没有 await
。尝试了他的代码但没有用,幸运的是我能够找到为我指明正确方向的资源。
关于python - Reset_cooldown Discord.py,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60099254/
我对 discord.py 和一般的 python 还很陌生,但我正在努力学习。我不知道如何将 command.reset_cooldown 添加到我的代码中。正如下面代码中所说,我希望 !test
我是一名优秀的程序员,十分优秀!