Files
muzovkantv2/cogs/help.py
perforat 5f00de56b9 upload from local
upload muzovkantv2 from local storage
2026-03-08 14:35:33 +05:00

27 lines
830 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import discord
from discord.ext import commands
class HelpCog(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command(name="help")
async def help(self, ctx):
help_text = """
комманды:
```
uptime : сколько времени прошло с запуска бота
funchosarand <id> : рандомная пикча из фунчозы либо по айдишнику в базе
funchosainfo : фунчоза.статы
kitty : рандомная пикча кошечки из [thecatapi](https://thecatapi.com/)
```
префикс: `!`
в лс отпишите по предложениям че в бота докинуть
"""
await ctx.send(help_text)
async def setup(bot):
await bot.add_cog(HelpCog(bot))