37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
import logging
|
|
|
|
import discord
|
|
from discord.ext import commands
|
|
|
|
|
|
class Test_Cog(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot # defining bot as global var in class
|
|
|
|
@commands.Cog.listener() # this is a decorator for events/listeners
|
|
async def on_ready(self):
|
|
logging.info(f'Cog {__name__.split(".")[1]} is ready!.')
|
|
|
|
@commands.command() # this is for making a command
|
|
async def bot_info(self, ctx, bot):
|
|
# await ctx.send(f'Pong! {round(self.bot.latency * 1000)}')
|
|
emb = discord.Embed(
|
|
title=f"General information",
|
|
description=f"General information on about {bot}",
|
|
icon=bot.avatar_url
|
|
)
|
|
emb.set_thumbnail(url=bot.avatar_url)
|
|
emb.add_field(name="General info",
|
|
value=f"Username: {bot}\n"
|
|
f"Nickname: {bot.nick}\n"
|
|
f"Joined at: {bot.joined_at.strftime('%A, %B %d %Y @ %H:%M:%S')}", inline=False)
|
|
# emb.add_field(name="Audio list", value=f"{audios}", inline=True)
|
|
# emb.add_field(name="Roles list", value=f"{roles}", inline=True)
|
|
emb.set_footer(text="Information requested by: {}".format(ctx.author.display_name))
|
|
|
|
await ctx.reply(embed=emb, ephemeral=True)
|
|
|
|
|
|
def setup(bot): # a extension must have a setup function
|
|
bot.add_cog(Test_Cog(bot)) # adding a cog
|