common update

This commit is contained in:
2025-06-18 11:48:41 +07:00
parent 88c4ee362e
commit 047290e2ea
27 changed files with 1533 additions and 87 deletions
+8
View File
@@ -0,0 +1,8 @@
import discord
from core.bot import bot, user_repo
@bot.command(name='exp')
async def show_exp(ctx):
user_id = ctx.author.id
exp = await user_repo.get_exp(user_id)
await ctx.send(f"{ctx.author.mention} has {exp} experience points!")