Skip to content

Instantly share code, notes, and snippets.

View DriftAsimov's full-sized avatar
💤

Tanishquasar DriftAsimov

💤
View GitHub Profile
@DriftAsimov
DriftAsimov / hardhelp.py
Last active January 12, 2022 06:09
Discord.py hardcoded help command but it's better
@bot.command()
async def help(ctx: commands.Context, *, name: str = None):
name = name.strip()
if not name:
commands = bot.commands
embed = discord.Embed(title="Commands Menu", color=0x8DDFE3)