LevelBot / app.py
lunarflu's picture
lunarflu HF staff
Update app.py
80a1e02
raw
history blame
No virus
3.2 kB
import discord
import os
import threading
from discord.ext import commands
import json
import gradio_client
import gradio as gr
from gradio_client import Client
DISCORD_TOKEN = os.environ.get("DISCORD_TOKEN", None)
intents = discord.Intents.all()
bot = commands.Bot(command_prefix='!', intents=intents)
""""""
XP_PER_MESSAGE = 10 # 100k messages = 1M exp = lvl 100
def calculate_level(xp):
return int(xp ** (1.0 / 3.0))
""""""
@bot.event
async def on_ready():
print(f'Logged in as {bot.user.name}')
print(f"XP_PER_MESSAGE: {XP_PER_MESSAGE}")
print(f"xp_data: {xp_data}")
for author in xp_data:
print(f"XP people: {author}")
try:
with open('xp_data.json', 'r') as f:
xp_data = json.load(f)
except FileNotFoundError:
xp_data = {}
def save_xp_data():
with open('xp_data.json', 'w') as f:
json.dump(xp_data, f)
@bot.event
async def on_message(message):
try:
if message.author != bot.user:
"""AWAIT LEVEL ALGORITM OR SOMETHING (MULTIPLE FILES?)"""
author_id = str(message.author.id) # dictionary pairs (ID -> TOTAL XP)
xp_data.setdefault(author_id, 0) # default if it doesn't already exist
xp_data[author_id] += XP_PER_MESSAGE
print(f"xp_data: {xp_data}")
save_xp_data()
await bot.process_commands(message)
except Exception as e:
print(f"Error: {e}")
@bot.command()
async def level(ctx):
author_id = str(ctx.author.id)
if author_id in xp_data:
xp = xp_data[author_id]
level = calculate_level(xp)
await ctx.send(f'You are at level {level} with {xp} XP.')
else:
await ctx.send('You have not earned any XP yet.')
@bot.command()
async def top_users(ctx, limit: int = 10):
"""Get the top users with the highest message counts."""
message_counts = {}
channel = discord.utils.get(ctx.guild.text_channels, name="general") # Replace with your channel name
async for message in channel.history(limit=None):
if not message.author.bot:
message_counts[message.author] = message_counts.get(message.author, 0) + 1
sorted_users = sorted(message_counts.items(), key=lambda x: x[1], reverse=True)
top_list = "\n".join([f"{member.name}: {count}" for member, count in sorted_users[:limit]])
await ctx.send(f"Top {limit} users by message count:\n{top_list}")
"""
for member in ctx.guild.members:
#if not member.bot:
message_counts[member] = sum(1 for _ in await ctx.history(user=member).flatten())
sorted_users = sorted(message_counts.items(), key=lambda x: x[1], reverse=True)
top_list = "\n".join([f"{member.name}: {count}" for member, count in sorted_users[:limit]])
await ctx.send(f"Top {limit} users by message count:\n{top_list}")
"""
""""""
DISCORD_TOKEN = os.environ.get("DISCORD_TOKEN", None)
def run_bot():
bot.run(DISCORD_TOKEN)
threading.Thread(target=run_bot).start()
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()