diff options
-rwxr-xr-x | cogs/utils.py | 17 | ||||
-rwxr-xr-x | custom_commands.json | 11 |
2 files changed, 26 insertions, 2 deletions
diff --git a/cogs/utils.py b/cogs/utils.py index 2261edd..cc6e6cb 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -158,6 +158,21 @@ class Utils(commands.Cog): await ctx.send(f"{discord.utils.escape_mentions(ctx.message.author.display_name)} -> your sleep is {sleepHrs} hours long - {moreSleepMsg[randint(0, len(moreSleepMsg) - 1)]}") @commands.Cog.listener() + async def on_reaction_add(self, reaction, user): + if reaction.emoji == "⭐": + embed = discord.Embed(title=f"**{reaction.message.clean_content}**", colour=discord.Colour(0xb92c36), url=reaction.message.jump_url, timestamp=reaction.message.created_at) + + for attachement in reaction.message.attachments: + if attachement.height: + embed.set_image(url=attachement.url) + embed.set_author(name=str(reaction.message.author), icon_url=reaction.message.author.avatar_url_as(format="png")) + embed.set_footer(text=reaction.message.id) + + embed.add_field(name="Stars", value=reaction.count) + channel = self.bot.get_channel(int(self.bot.config[str(reaction.message.guild.id)]["pins_channel"])) + await channel.send(embed=embed) + + @commands.Cog.listener() async def on_member_join(self, member): if member.id == 640933433215811634: await member.edit(nick="JoetheSheepFucker") @@ -167,7 +182,7 @@ class Utils(commands.Cog): msg = await self.bot.wait_for("message", check=check, timeout=300) await msg.channel.send("<:PeepoPog:732172337956257872>") except asyncio.TimeoutError: - await msg.channel.send("<:pepesadcrash:739927552260440185>") + pass @commands.Cog.listener() async def on_member_update(self, before, after): diff --git a/custom_commands.json b/custom_commands.json index ecfbe14..e54a703 100755 --- a/custom_commands.json +++ b/custom_commands.json @@ -45,5 +45,14 @@ "!ez": "I am practicing speed running right now and I am planning to have my friend and I speed run in bedrock - both mobile. Since there are no runs in bedrock co-op mobile any% I think we have what it takes. (We are both beginners.) So do I need to glitch in order to get into any% or do I get sent to any% glitchless? If so, then I can just look up some glitches or use some that I know but I would like to know.", "!clap": "\ud83d\udc4f", "!faq": "https://www.speedrun.com/mcbe/thread/vdv9t", - "!hell": "@everyone" + "!hell": "@everyone", + "!god": "i feel like ur a god mistaken", + "!w": "I wank to Murray", + "!torture": "<@!99457716614885376>", + "!ping": "Oh WoW i Am RaReLy AcTiVe On ThIs SeRvEr AnD nEvEr CaRe AbOuT aNy OtHeR pInGs BuT iNsTeAd Of MuTiNg PiNgS fRoM tHiS cHaNnEl I wIlL iNsTeAd CoMpLaIn!!!", + "!mango": "MKW community legend, best MCBE moderator, champion of the MSD community, and Jesus Christ himself. Also big brain programmer.", + "!h": "h", + "!mistaken": "hi", + "!cringe": "DUHHH CIRNGE!!!! DUHHH BRINGE!!???!!1 CRINGE!!!!! IS THAT ALL YOU SHITPOSTING FUCKS CAN SAY!!??? DURR BASED BASED BASED CRINGE CRINGE BASED BASED CRINGE CRINGE CRINGE BASED CRINGE I FEEL LIKE IM IN A FUCKING ASYLUM FULL OF DEMENTIA RIDDEN OLD PEOPLE THAT CAN DO NOTHING BUT REPEAT THE SAME FUCKING WORDS ON LOOP LIKE A FUCKING BROKEN RECORD CRINGE CRINGE CRINGE BASED BASED CRINGE ONIONS ONIONS ONIONS SNOYY ONIONS LOL ONIONS!!! CRINGE!!!1 BOOMER!! LE ZOOMER!!!! I AM BOOMER!!!! NO ZOOM ZOOM ZOOMIES ZOOMER GOING ZOOMIES AHGHGH I FUCKING HATE THE INTERNET SO GODDAMN MUCH FUCKJK YOU SHITPOST I HONEST TO GOD HOPE YOUR MOTHER CHOKES ON HER OWN FECES IN HELL YOU COCKSUCKER VUT OHHH I KNOWM MY POST IS CRINGE ISNT IT?? CRINGE CRINGE CRINGR CRINGEY BASED CRINGE BASED REDDIT REDDIT CRINGE ZOOM CRINGE ONIONS REDDIT BASED BASED!!!!!!", + "!fuckcommandglitch": "HELLO MINECRAFT SPEED PLAYERS! I Just got a time of 0.1 SECONDS!!!! It took a few hours of work BUT IT FINALLY HAPPENED I AM LITERALLY SHAKING I CLUTCHED IT SO HARD!!!!!!! NOW MODS PLEAAAAASE VERIFY IT SOON because i want a WR FOR THE HARDEST MINECRAFT RUN!! I just want to quickly make sure its ok to use commands right? because TOYCAT INVENTED IT SO IF YOU SAY OTHERWISE YOU ARE WRONG BECAUSE I AM THE BEST MINECRAFT PLAYER FUCK U!!!!" }
\ No newline at end of file |