First working version

This commit is contained in:
CramMK
2020-01-18 04:13:57 +01:00
parent 7e805ff13a
commit 818bafc604
14 changed files with 58 additions and 652 deletions

View File

@@ -4,7 +4,7 @@
# https://discordpy.readthedocs.io/en/latest/ext/commands/cogs.html
#
# IMPORTS
# IMPORTS - exter
import discord
from discord.ext import commands
@@ -15,17 +15,17 @@ class HelpCog(commands.Cog):
# COG BODY
@commands.command(
name="aquabot"
name="aquabot",
description="Prints a short help for new users"
)
async def aquabot(self, ctx):
await ctx.send("""
I'm the usele... divine AquaBot!\n
If you need help, try using the `help` command!\n
I'm the usele... divine AquaBot!
If you need help, try using the `help` command!
""")
# COG ENDING
def setup(bot):
bot.add_cog(HelpCog(bot))
bot.add_cog(HelpCog(bot))