upload from local

upload muzovkantv2 from local storage
This commit is contained in:
2026-03-08 14:35:33 +05:00
committed by GitHub
parent 86361adabe
commit 5f00de56b9
29 changed files with 1089 additions and 0 deletions

27
cogs/help.py Normal file
View File

@@ -0,0 +1,27 @@
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))