1
0

help.py 1.2 KB

12345678910111213141516171819
  1. import discord
  2. import discord.ext.commands as discord_cmds
  3. @discord_cmds.command(name="help")
  4. async def help_cmd(ctx):
  5. ''' Responds to help command '''
  6. embed = discord.Embed(title="***MyAnimeBot Commands***", colour=0xEED000)
  7. embed.add_field(name="`here`", value="Register this channel. The bot will send new activities on registered channels.")
  8. embed.add_field(name="`stop`", value="Un-register this channel. The bot will now stop sending new activities for this channel.")
  9. embed.add_field(name="`info [mal|ani]`", value="Get the registered users for this server. Users can be filtered by specifying a service.")
  10. embed.add_field(name="`add {mal|ani} <user>`", value="Register a user for a specific service.\nEx: `add mal MyUser`")
  11. embed.add_field(name="`delete {mal|ani} <user>`", value="Remove a user for a specific service.\nEx: `delete ani MyUser`")
  12. embed.add_field(name="`role <@discord_role>`", value="Specify a role that is able to manage the bot.\nEx: `role @Moderator`, `role @everyone`")
  13. embed.add_field(name="`top`", value="Show statistics for this server.")
  14. embed.add_field(name="`ping`", value="Ping the bot.")
  15. embed.add_field(name="`about`", value="Get some information about this bot")
  16. await ctx.send(embed=embed)