-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a command to see all players in your guild who did not meet the…
… weekly gexp requirement
- Loading branch information
1 parent
435a8fd
commit 655eb69
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import discord | ||
from discord.ext import commands | ||
import json | ||
from datetime import datetime | ||
|
||
|
||
# Open the JSON file and read in the data | ||
with open('config.json') as json_file: | ||
data = json.load(json_file) | ||
|
||
embed_color = int(data["general"]["embed_color"].strip("#"), 16) #convert hex color to hexadecimal format | ||
weekly_gexp_requirement = 10000 | ||
|
||
class lastjoined(commands.Cog): | ||
def __init__(self, client): | ||
self.client = client | ||
|
||
@commands.hybrid_command(aliases = ["gminpoints", "gmp"], brief="guildminimumpoints",description="Displays a list of all guild members that did not meet the weekly GEXP requirement.", with_app_command=True) | ||
async def guildminimumpoints(self, ctx: commands.Context): | ||
|
||
with open('guild_cache.json', 'r') as guild_cache_file: | ||
guild_cache_data = json.load(guild_cache_file) | ||
|
||
# Find users with points less than the weekly requirement | ||
low_points_users = [] | ||
total_guild_members = 0 | ||
for member in guild_cache_data["guild_data"]["guild"]["members"]: | ||
total_guild_members += 1 | ||
weekly_points = sum(member["expHistory"].values()) | ||
if weekly_points < weekly_gexp_requirement: | ||
uuid = member["uuid"] | ||
username = guild_cache_data["usernames"].get(uuid) # Fix here | ||
if username: | ||
low_points_users.append((username, weekly_points, uuid)) | ||
|
||
# Sort the list by weekly points in ascending order | ||
low_points_users.sort(key=lambda x: x[1], reverse=True) | ||
|
||
# Format the list of users with index, username, and weekly points | ||
formatted_users = "\n".join([f"**{i + 1}.** [{username}](https://plancke.io/hypixel/player/stats/{uuid}) - `{points}` GEXP" for i, (username, points, uuid) in enumerate(low_points_users)]) | ||
|
||
percentage_members = (len(low_points_users) / total_guild_members) * 100 | ||
|
||
# Create an embed | ||
embed = discord.Embed( | ||
title="⏰ | Members Below Weekly GEXP Requirement", | ||
description=f"A total of `{len(low_points_users)}`/`{total_guild_members}` guild members did not meet the\n weekly GEXP requirement of `{weekly_gexp_requirement}` points.\n\n{formatted_users}\n\n**{percentage_members:.2f}%** of your guild is not meeting weekly requirements.", | ||
color=embed_color | ||
) | ||
# embed.set_thumbnail(url = "{}".format(ctx.guild.icon.url)) | ||
|
||
await ctx.send(embed=embed) | ||
|
||
|
||
async def setup(client): | ||
await client.add_cog(lastjoined(client)) |