This commit is contained in:
tropii 2023-11-24 21:36:00 -05:00
parent cfd1eb8a53
commit 758119d172
2 changed files with 80 additions and 1 deletions

View File

@ -131,6 +131,8 @@ class economy(commands.Cog):
@commands.hybrid_command(name="eleaderboard", description="View the leaderboard", aliases=["elb"]) @commands.hybrid_command(name="eleaderboard", description="View the leaderboard", aliases=["elb"])
@commands.cooldown(1, 60, commands.BucketType.user) @commands.cooldown(1, 60, commands.BucketType.user)
async def eleaderboard(self, ctx): async def eleaderboard(self, ctx):
await ctx.send("Command disabled")
"""
client = pymongo.MongoClient(os.getenv("mongo_url")) client = pymongo.MongoClient(os.getenv("mongo_url"))
db = client.servers db = client.servers
coll = db.economy coll = db.economy
@ -140,7 +142,7 @@ class economy(commands.Cog):
for i in range(10): for i in range(10):
embed.add_field(name=f"{i+1}. {ctx.guild.get_member(users[i]['_id']['author_id']).display_name}", value=f"{users[i]['coins']} bloboons", inline=False) embed.add_field(name=f"{i+1}. {ctx.guild.get_member(users[i]['_id']['author_id']).display_name}", value=f"{users[i]['coins']} bloboons", inline=False)
await ctx.send(embed=embed) await ctx.send(embed=embed)
"""
async def setup(bot): async def setup(bot):
await bot.add_cog(economy(bot)) await bot.add_cog(economy(bot))

77
commands/store.py Normal file
View File

@ -0,0 +1,77 @@
# LINKED WITH ECONOMY.PY
import discord, asyncio, pymongo, os
from discord.ext import commands
from dotenv import load_dotenv
from discord.ui import Button, button, View
from dotenv import load_dotenv
load_dotenv()
def is_enabled(self):
client = pymongo.MongoClient(os.getenv("mongo_url"))
db = client.servers
coll = db.settings
if coll.find_one({"_id": {"guild_id": self.guild.id, "commands":"ticket"}}):
command = coll.find_one({"_id": {"guild_id": self.guild.id, "commands":"ticket"}})
command_enabled = command["enabled"] # True or False
if command_enabled:
return True
else:
return False
else:
return True
class BronzeButton(View):
def __init__(self):
super().__init__(timeout=None)
@button(label="Buy Bronze", style=discord.ButtonStyle.blurple, custom_id="bronze")
async def bronze(self, interaction: discord.Interaction, button: Button):
await interaction.response.defer(ephemeral=True)
client = pymongo.MongoClient(os.getenv("mongo_url"))
db = client.servers
coll = db.economy
cost = 100
guild = interaction.guild
user = interaction.user
user = coll.find_one({"_id": {'author_id': user.id, 'guild_id': guild.id}})
if not user:
await interaction.followup.send("You don't have any coins!", ephemeral=True)
return
if user["coins"] < cost:
await interaction.followup.send("You don't have enough coins!", ephemeral=True)
return
if user["coins"] >= cost:
coll.update_one({"_id": {'author_id': user.id, 'guild_id': guild.id}}, {"$inc":{"coins":-cost}})
coll.update_one({"_id": {"author_id": user.id, "guild_id": guild.id}}, {"$set": {"bought": "bronze"}})
await interaction.followup.send("You bought the bronze ticket! Redeem it in the Blob support server for rewards!", ephemeral=True)
return
class store(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.Cog.listener()
async def on_ready(self):
print('Tickets Online')
@commands.hybrid_command(name="ticket", description="Create a ticket")
@commands.has_permissions(administrator=True)
@commands.check(is_enabled)
async def ticket(self, ctx):
await ctx.send(
embed=discord.Embed(
description="Shop!",
color=ctx.author.color
),
view=BronzeButton()
)
async def setup(bot):
await bot.add_cog(store(bot))