gpt4 book ai didi

python - Reset_cooldown Discord.py

转载 作者:行者123 更新时间:2023-12-01 21:47:41 25 4
gpt4 key购买 nike

我对 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/

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