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

# Bump reminders

> Never miss a Disboard bump again — with reminders, a leaderboard and channel auto-locking.

Disboard lets you bump your server every two hours. Remembering to do it is the hard part.

mira watches for successful `/bump` messages, thanks whoever ran it, and reminds the channel when two hours have passed.

Requires **Manage Channels**.

## Setting up

```javascript theme={null}
!disboard channel #bumps
!disboard toggle
```

That's it — reminders will now arrive in `#bumps` every two hours after a bump.

Aliases for the group: `dsboard`, `bumpreminder`, `bump`.

## Messages

<CodeGroup>
  ```javascript The reminder theme={null}
  !disboard message {content: @here} {description: It's been 2 hours — `/bump` the server.}
  ```

  ```javascript The thank-you theme={null}
  !disboard message thank {content: thanks {user.mention}} {description: next bump <t:{timestamp}:R>}
  ```

  ```javascript Reset them theme={null}
  !disboard message remove
  !disboard message thank remove
  ```
</CodeGroup>

Requires **Manage Messages**. Both are full [scripts](/scripting/overview).

## Keeping the channel clean

<AccordionGroup>
  <Accordion title="Auto-clean" icon="broom">
    ```javascript theme={null}
    !disboard clean on
    ```

    Deletes anything in the bump channel that isn't a `/bump`. Keeps it purely functional. Aliases: `autoclean`, `cleanup`.
  </Accordion>

  <Accordion title="Auto-lock" icon="lock">
    ```javascript theme={null}
    !disboard lock on
    ```

    Locks the channel immediately after a bump and unlocks it when the next one is due. Nobody can post in a channel where there's nothing to do, which stops the "can I bump yet" messages entirely. Alias: `autolock`.
  </Accordion>
</AccordionGroup>

<Tip>
  Auto-lock plus auto-clean turns the bump channel into a light that's either on or off. When it's unlocked, someone bumps. It's a small piece of design that meaningfully increases how often a server actually gets bumped.
</Tip>

## Leaderboard

```javascript theme={null}
!disboard leaderboard
```

Ranks members by bumps. Aliases: `bumps`, `top`, `lb`. Anyone can run it.

<Tip>
  Pair the leaderboard with a [level multiplier](/setup/levels#multipliers) or a role reward for your top bumper. Bumping is a chore; a small competition makes it much less of one.
</Tip>

## Reviewing

```javascript theme={null}
!disboard settings
```

Shows the channel, toggle state, auto-clean and auto-lock, and both message templates.

## Command reference

| Command                           | Aliases                | Permission      | Description              |
| --------------------------------- | ---------------------- | --------------- | ------------------------ |
| `disboard channel <channel>`      | —                      | Manage Channels | Reminder channel         |
| `disboard channel remove`         | `delete`, `rm`         | Manage Channels | Remove it                |
| `disboard toggle`                 | `enable`, `disable`    | Manage Channels | Turn reminders on/off    |
| `disboard message <script>`       | `template`, `msg`      | Manage Messages | The reminder             |
| `disboard message thank <script>` | `thanks`               | Manage Messages | The thank-you            |
| `disboard clean (on/off)`         | `autoclean`, `cleanup` | Manage Channels | Delete non-bump messages |
| `disboard lock (on/off)`          | `autolock`             | Manage Channels | Lock between bumps       |
| `disboard leaderboard`            | `bumps`, `top`, `lb`   | —               | Bump leaderboard         |
| `disboard settings`               | `config`, `cfg`, `ov`  | Manage Channels | View configuration       |
