Discord.py(重写)如何让冷却时间处理on_message事件?



我一直在尝试将我的命令转换为on_message事件,因为在这种情况下,它节省了空间并且看起来更干净。但是我似乎不能再使用 @cooldown((,因为我必须使用命令。Cog.listener((

还有其他方法可以让冷却时间工作吗?下面列出了我的代码

# Cog on_message for waifus and husbandos
@commands.Cog.listener()
# Cooldown NOT WORKING
@cooldown(1, 1, BucketType.user)
async def on_message(self, message):
# Defining the channel and global variables
global waifu_split_msg
global husbando_split_msg
channel = message.channel
# Defining the message content in lowercase
user_msg = message.content.lower()
# Defining array for the list of waifus/husbando's available
waifu_array = ["toga", "yumeko"]
husbando_array = ["husk", "kakashi", "tamaki"]
# If the channel that the command has been sent is in the list of accepted channels
if str(channel) in settings.channels:
# Surround with try/except to catch any exceptions that may occur
try:
# Makes sure that the user wants a random image of a waifu
if 'w random' in user_msg:
# Get embed from randomWaifu() and send it to the channel
embed = randomWaifu(message, waifu_array)
await channel.send(embed=embed)
# Makes sure that the user wants a specific image of a waifu
elif user_msg.startswith('~w'):
# Define who the waifu is using string splitting
waifu_split_msg = user_msg.split("w ", 1)
w_array = str(waifu_split_msg[-1]).lower()
# Retrieve the image of the waifu that the user has specified
with open(f'images/AnimeImages/Waifus/{w_array}.txt') as file:
images_array = file.readlines()
# Get the full name of the waifu
full_name = Abbrev(w_array)
# Get the embed from a displayAnimeImage() and send it to the channel
embed = displayAnimeImage(images_array, message, full_name)
await channel.send(embed=embed)
except FileNotFoundError as e:
print(e)
# Throw error message saying no waifu's could be found
await channel.send(f"Sorry! That Waifu doesn't exist!! Try the Waifu's listed below!")
# Send list of suitable waifu's to the channel
nice = string.capwords(', '.join(map(str, waifu_array)))
await channel.send(nice)
# Surround with try/except to catch any exceptions that may occur
try:
# Makes sure that the user wants a random image of a husbando
if 'h random' in user_msg:
# Get embed from randomHusbando() and send it to the channel
embed = randomHusbando(message, husbando_array)
await channel.send(embed=embed)
# Makes sure that the user wants a specific image of a husbando
elif user_msg.startswith('~h'):
# Define who the husbando is using string splitting
husbando_split_msg = user_msg.split("h ", 1)
h_array = str(husbando_split_msg[-1]).lower()
# Retrieve the image of the Husbando that the user has specified
with open(f'images/AnimeImages/Husbandos/{h_array}.txt') as file:
images_array = file.readlines()
# Get the full name of the husbando
full_name = Abbrev(h_array)
# Get the embed from a displayAnimeImage() and send it to the channel
embed = displayAnimeImage(images_array, message, full_name)
await channel.send(embed=embed)
except FileNotFoundError as e:
print(e)
# Throw error message saying no husbando's could be found
await channel.send(f"Sorry! That Husbando doesn't exist!! Try the Husbando's listed below!")
# Send list of suitable Husbando's to the channel
nice = string.capwords(', '.join(map(str, husbando_array)))
await channel.send(nice)
# if the message is outwith the enso-chan-commands
else:
# Makes sure that the user only typed ~w or ~h
if user_msg.endswith('~w') or user_msg.endswith('~h'):
# Send error message
message = await channel.send(error_function())
# Let the user read the message for 2.5 seconds
await asyncio.sleep(2.5)
# Delete the message
await message.delete()

除了顶部的 cooldown(( 对事件没有任何影响之外,代码运行良好

谁能帮我想出另一个解决方案?

可以使用时间参数或计数参数来限制事件的使用次数。您将无法轻松地为每个用户执行此操作。如果您希望每个用户都有冷却时间,我强烈建议您切换回命令方法。 这可能会有所帮助。 如何限制on_message回复(不和谐的蟒蛇机器人(

相关内容

最新更新