我看过很多相关文章,但是没有人像我那样做他们的机器人。我使用:
client = discord.Client()
@client.event
async def on_message(message):
我的主文件。 我见过人们在使用:
@bot.command
@commands.cooldown(###)
但是由于使用discord.client()而无法执行该操作
任何人都知道解决此问题的方法,而不是改变我的机器人的运行方式。
答案 0 :(得分:0)
我还使用client = discord.Client()和
@commands.cooldown(1,86400, commands.BucketType.user)
对我来说很好用,所以我建议尝试一下。如果它不起作用,则似乎还有其他问题。