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

# Starboard

> Highlight the best messages in a dedicated channel.

# Starboard

> Highlight the best messages in a dedicated channel.

## Overview

Starboard automatically reposts messages that collect enough reactions to a dedicated channel. When a message hits the reaction threshold, it gets pinned to your starboard. You can run multiple starboards with different emojis and thresholds — for example one for great messages and one for funny ones.

When using ⭐ as the emoji, the star upgrades automatically based on how many reactions a message gets:

| Reactions | Emoji |
| --------- | ----- |
| 0–4       | ⭐     |
| 5–9       | 🌟    |
| 10–24     | 💫    |
| 25+       | ✨     |

## Add a starboard

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;starboard add (channel) (emoji) (threshold)
  ```

  ```Example theme={null} theme={null}
  ;starboard add #starboard ⭐ 5
    ;starboard add #memes 🤡 3
  ```
</CodeGroup>

## Remove a starboard

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;starboard remove (emoji)
  ```

  ```bash Example theme={null} theme={null}
  ;starboard remove ⭐
  ```
</CodeGroup>

## Move a starboard

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;starboard move (emoji) (channel)
  ```

  ```bash Example theme={null} theme={null}
  ;starboard move ⭐ #new-starboard
  ```
</CodeGroup>

## Set embed color

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;starboard color (emoji) (hex color)
  ```

  ```bash Example theme={null} theme={null}
  ;starboard color ⭐ #FFD700
    ;starboard color 🤡 #FF0000
  ```
</CodeGroup>

## List all starboards

```
;starboard list
```

## Ignore list

Prevent specific channels, roles, or users from appearing on the starboard.

<Tabs>
  <Tab title="Ignore">
    ```bash theme={null} theme={null}
    ;starboard ignore (channel/role/user)
    ```

    ```bash theme={null} theme={null}
    ;starboard ignore #announcements
    ;starboard ignore @Admin
    ;starboard ignore @wanderer
    ```
  </Tab>

  <Tab title="Unignore">
    ```bash theme={null} theme={null}
    ;starboard unignore (channel/role/user)
    ```

    ```bash theme={null} theme={null}
    ;starboard unignore #announcements
    ```
  </Tab>
</Tabs>
