feat: Tái cấu trúc bot sang kiến trúc cog, thêm hỗ trợ đa máy chủ, giới thiệu tính năng đăng ký bóng đá, giao diện web và quản lý cấu hình.

This commit is contained in:
2026-01-16 17:26:42 +07:00
parent 8c38357c28
commit b24365927a
39 changed files with 3864 additions and 997 deletions
+17
View File
@@ -0,0 +1,17 @@
from discord.ext import tasks
from core.bot import bot
# @tasks.loop(minutes=1)
# async def update_voice_exp():
# current_time = datetime.now()
# for user_id in list(active_voice_users):
# last_join_time = await user_repo.get_voice_time(user_id)
# if last_join_time:
# join_time = datetime.fromisoformat(last_join_time)
# time_spent = current_time - join_time
# if time_spent.total_seconds() >= 60:
# current_exp = await user_repo.get_exp(user_id)
# new_exp = current_exp + VOICE_EXP_POINTS_PER_MINUTE
# await user_repo.update_exp(user_id, new_exp)
# await user_repo.update_voice_time(user_id, current_time.isoformat())
# print(f"Thêm {VOICE_EXP_POINTS_PER_MINUTE} điểm kinh nghiệm cho user {user_id} cho thời gian voice")