Add cooldown / timer to on_message [Discord.py](将冷却时间/计时器添加到 on_message [Discord.py])
问题描述
我最近开始用 Python 制作一个 Discord 机器人(用它测试 Python 的基础),并自己创建了一个带有多个命令的功能性机器人.为了扩大它的用途,我添加了一个级别/XP 系统,该系统目前正在运行.
I got into making a Discord bot in Python very recently (testing the grounds of Python with it) and created a functioning one with several commands myself. To widen its uses, I have added a level/XP system, which is working so far.
[...]
@bot.event
async def on_message(message):
user_add_xp(message.author.id, 2)
await bot.process_commands(message)
# commands go here
def user_add_xp(user_id, xp):
if os.path.isfile('users.json'):
try:
with open('users.json', 'r') as fp:
users = json.load(fp)
users[user_id]['xp'] += xp
with open('users.json', 'w') as fp:
json.dump(users, fp, sort_keys=True, indent=4)
except KeyError:
with open('users.json', 'r') as fp:
users = json.load(fp)
users[user_id] = {}
users[user_id]['xp'] = xp
with open('users.json', 'w') as fp:
json.dump(users, fp, sort_keys=True, indent=4)
else:
users = {user_id: {}}
users[user_id]['xp'] = xp
with open('users.json', 'w') as fp:
json.dump(users, fp, sort_keys=True, indent=4)
[...]
但为了防止用户只是泛滥/垃圾邮件某些频道并飙升至顶部,我想为 XP 奖励添加一个冷却时间/计时器.我尝试将 @commands.cooldown(1, 120, commands.BucketType.server)
添加到 @bot.event
和 user_add_xp
,但两者都没有得到我想要的结果.我不知道如何添加此冷却时间/计时器.
But to prevent users from just flooding/spamming some channels and rocketing to the top, I want to add a cooldown/timer on the awarding of XP. I have tried to add @commands.cooldown(1, 120, commands.BucketType.server)
to both @bot.event
and user_add_xp
, but both do not get me the desired result.
I have no other idea how to add this cooldown/timer.
最后,我希望机器人每两分钟只授予一次 XP.
In the end, I want the bot to only grant XP once every two minutes.
推荐答案
不确定是否可以仅使用 discord.py
,但您可以存储最后一次将消息授予用户 XP 的时间在你的字典里.
Not sure if it's possible with just discord.py
, but you can store the last time a message was awarded XP to a user in your dictionary.
以下代码存储自静态开始日期(epoch
)消息奖励 XP 以来的秒数.然后,它会检查发生新消息事件的时间.
The below code stores the number of seconds since a static start date (epoch
) when a message awards XP. It then checks against this time when a new message event happens.
[...]
import datetime
epoch = datetime.datetime.utcfromtimestamp(0)
@bot.event
async def on_message(message):
user_add_xp(message.author.id, 2)
await bot.process_commands(message)
# commands go here
def user_add_xp(user_id, xp):
if os.path.isfile('users.json'):
try:
with open('users.json', 'r') as fp:
users = json.load(fp)
time_diff = (datetime.datetime.utcnow() - epoch).total_seconds() - users[user_id]['xp_time']
if time_diff >= 120:
users[user_id]['xp'] += xp
users[user_id]['xp_time'] = (datetime.datetime.utcnow() - epoch).total_seconds()
with open('users.json', 'w') as fp:
json.dump(users, fp, sort_keys=True, indent=4)
except KeyError:
with open('users.json', 'r') as fp:
users = json.load(fp)
users[user_id] = {}
users[user_id]['xp'] = xp
users[user_id]['xp_time'] = (datetime.datetime.utcnow() - epoch).total_seconds()
with open('users.json', 'w') as fp:
json.dump(users, fp, sort_keys=True, indent=4)
else:
users = {user_id: {}}
users[user_id]['xp'] = xp
users[user_id]['xp_time'] = (datetime.datetime.utcnow() - epoch).total_seconds()
with open('users.json', 'w') as fp:
json.dump(users, fp, sort_keys=True, indent=4)
[...]
这篇关于将冷却时间/计时器添加到 on_message [Discord.py]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将冷却时间/计时器添加到 on_message [Discord.py]
基础教程推荐
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01