{% extends "base.html" %} {% block title %}Discord Message Archives - Home{% endblock %} {% block content %}

Available Servers

{% if servers %} {% else %}
No archives available

No server message archives have been created yet.

Use the Discord bot's !archive or !archive_all commands to create archives.

{% endif %}

How to Use the Discord Bot

Available Commands
  • !archive [channel] [limit] [format] - Archive messages from a channel
  • !archive_all [limit_per_channel] [format] - Archive messages from all channels
  • !count [channel] [sample_size] - Count messages in a channel
Format Options
  • json - Full detailed JSON format with all message data (default)
  • txt - Human-readable text format with detailed formatting
  • simple - Minimalist text format with just timestamp, display name, and content
Examples
  • !archive - Archive 1000 messages from the current channel in JSON format
  • !archive #general 500 txt - Archive 500 messages from #general in TXT format
  • !archive #announcements 300 simple - Archive 300 messages from #announcements in simple text format
  • !archive_all 200 json - Archive 200 messages from each channel in JSON format
  • !count - Count messages in the current channel
{% endblock %}