Discord Bot Management

{{ bot.user }}

ID: {{ bot.user.id }}

Command Prefix: {{ command_prefix }}

Shard Count: {{ bot.shard_count }}

{% for cog_name, cog in enabled_cogs %}

{{ cog_name }}

    {% for cmd in cog.__cog_commands__ %}
  • {{ cmd }}
  • {% endfor %}
{% set location = "Unknown" %} {% if cog.__cog_commands__|length >= 1 %} {% set location = getfile(cog.__cog_commands__[0].__dict__._callback) %} {% endif %}

Location: {{ location }}

{% endfor %} {% for cog_name, cog in disabled_cogs %}

{{ cog_name }}

    {% for cmd in cog.__cog_commands__ %}
  • {{ cmd }}
  • {% endfor %}
{% endfor %}