33 lines
2.0 KiB
Python
33 lines
2.0 KiB
Python
# ╔══════════════════════════════════════════════════════════════════╗
|
|
# ║ ║
|
|
# ║ +-+-+-+-+-+-+-+-+ ║
|
|
# ║ |H|e|x|a|H|o|s|t| ║
|
|
# ║ +-+-+-+-+-+-+-+-+ ║
|
|
# ║ ║
|
|
# ║ © 2026 HexaHost — All Rights Reserved ║
|
|
# ║ ║
|
|
# ║ discord ── https://discord.gg/hexahost ║
|
|
# ║ github ── https://github.com/theoneandonlymace ║
|
|
# ║ ║
|
|
# ╚══════════════════════════════════════════════════════════════════╝
|
|
|
|
import discord
|
|
from utils.emoji import ZMODULE
|
|
from discord.ext import commands
|
|
|
|
|
|
class _general(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
"""General commands"""
|
|
|
|
def help_custom(self):
|
|
emoji = ZMODULE
|
|
label = "General Commands"
|
|
description = "Show you Commands of General"
|
|
return emoji, label, description
|
|
|
|
@commands.group()
|
|
async def __General__(self, ctx: commands.Context):
|
|
"""`status` , `afk` , `avatar` , `banner` , `servericon` , `membercount` , `poll` , `users` , `urban` , `rickroll` , `hash` , `snipe` , `users` , `list boosters` , `list inrole` , `list emojis` , `list bots` , `list admins` , `list invoice` , `list mods` , `list early` , `list activedeveloper` , `list createpos` , `list roles` , `calculator`""" |