upload from local
upload muzovkantv2 from local storage
This commit is contained in:
27
cogs/help.py
Normal file
27
cogs/help.py
Normal 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))
|
||||
Reference in New Issue
Block a user