Skip to main content

What is Pagination?

Pagination allows you to create embeds with multiple pages that users can navigate through using reaction arrows. This is perfect for long messages, guides, or any content that’s better split into sections.
This is a premium feature. You must have a premium subscription to use pagination.

Setting Up Pagination

First, create your base embed and set it up for pagination:
,pagination set [message link]
This will add navigation arrows (⬅️ ➡️) to your embed.
Add additional pages to your paginated embed:
,pagination add [message link] {embed}$v
{description: This is page 2!}$v
{color: #ff0000}
Modify an existing page in your pagination:
,pagination update [message link] [page number] {embed}$v
{description: Updated content!}$v
{color: #00ff00}
Remove a specific page from your pagination:
,pagination remove [message link] [page number]

Managing Paginations

Remove pagination entirely from a message:
,pagination delete [message link]
Remove all paginated embeds in your server:
,pagination reset
This requires Administrator permission and cannot be undone!
View all paginated embeds in your server:
,pagination list
If the navigation arrows are missing, restore them:
,pagination restorereactions [message link]

Requirements

  • Permissions: Manage Messages
  • Premium: Required
  • Command Usage: 3 second cooldown
  • Alias: ,pn

Example Setup

// Step 1: Create your first embed
,createembed {embed}$v
{title: My Guide}$v
{description: This is page 1}$v
{color: #7289da}

// Step 2: Set up pagination
,pagination set [message link]

// Step 3: Add more pages
,pagination add [message link] {embed}$v
{title: My Guide}$v
{description: This is page 2}$v
{color: #7289da}

// Step 4: Add final page
,pagination add [message link] {embed}$v
{title: My Guide}$v
{description: This is page 3}$v
{color: #7289da}
Replace [message link] with the actual Discord message link. You can get this by right-clicking the message and selecting “Copy Message Link”.

Common Issues

  • Missing Reactions: Use ,pagination restorereactions to fix missing navigation arrows
  • Invalid Link: Make sure you’re using a valid Discord message link
  • Permission Errors: Bot needs Manage Messages permission
  • Single Page: Cannot remove the last page (use delete instead)