20 lines
858 B
Python
20 lines
858 B
Python
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` , `hack` , `token` , `users` , `wizz` , `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`""" |