> ## Documentation Index
> Fetch the complete documentation index at: https://greed.best/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Starboard

> Highlight interesting messages in your server based on reactions.

## Overview

The starboard is a community-driven highlighting system. When a message receives enough reactions (stars, or any emoji you choose), greed reposts it to a designated gallery channel.

## Getting Started

Create a new starboard by specifying the emoji to track and the channel where highlighted messages should be posted.

<CodeGroup>
  ```javascript Syntax theme={null}
  ,starboard add (emoji) #channel
  ```

  ```javascript Example theme={null}
  ,starboard add ⭐ #starboard
  ,starboard add 🤡 #clownboard
  ```
</CodeGroup>

<Tip>
  greed supports multiple starboards per server! You can have one for stars, one for clowns, and even one for custom emojis.
</Tip>

***

## Configuration & Appearance

Customize how starboard messages look and which data they include.

### Appearance Settings

<AccordionGroup>
  <Accordion title="Visuals">
    * `,starboard color (emoji) (hex)`: Set a custom embed color for specific starboards.
    * **Star Leveling**: For the default ⭐ emoji, the reaction emoji in the repost automatically upgrades as stars increase:
      * 1-4 ⭐: `⭐`
      * 5-9 ⭐: `🌟`
      * 10-24 ⭐: `💫`
      * 25+ ⭐: `✨`
  </Accordion>

  <Accordion title="Message Toggles">
    Control what information is displayed in each starboard repost:

    * `,starboard jumpurl`: Toggle the "Jump to message" link.
    * `,starboard timestamp`: Toggle the creation timestamp display.
    * `,starboard attachments`: Toggle whether images/videos are included.
  </Accordion>
</AccordionGroup>

***

## Management

### Advanced Commands

<AccordionGroup>
  <Accordion title="Channel Management">
    * `,starboard move (emoji) #new-channel`: Change which channel a starboard posts to without resetting it.
    * `,starboard ignore #channel`: Prevent messages in specific channels from being starred.
    * `,starboard unignore #channel`: Resume tracking for a previously ignored channel.
  </Accordion>

  <Accordion title="Maintenance">
    * `,starboard list`: See all active starboards and their configurations.
    * `,starboard remove (emoji)`: Delete a specific starboard by its emoji.
  </Accordion>
</AccordionGroup>
