> ## 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.

# Counters

> Create live stat counter voice channels that update automatically as your server grows.

# Counters

> Create live stat counter voice channels that update automatically as your server grows.

## Overview

Counters are read-only voice channels whose names update automatically to reflect live server stats. Up to **25** counters can be active per server.

## Create

Each counter type has its own subcommand. The channel is created immediately with the current value.

```bash theme={null} theme={null}
;counter create members
;counter create users
;counter create bots
;counter create connected
;counter create boosts
;counter create boosters
;counter create roles
;counter create channels
;counter create text
;counter create voice
;counter create announce
;counter create stage
;counter create categories
```

| Type         | Tracks                            |
| ------------ | --------------------------------- |
| `members`    | Total member count (users + bots) |
| `users`      | Human members only                |
| `bots`       | Bots only                         |
| `connected`  | Members currently in voice        |
| `boosts`     | Total server boost count          |
| `boosters`   | Number of active boosters         |
| `roles`      | Total roles                       |
| `channels`   | Total channels (all types)        |
| `text`       | Text channels                     |
| `voice`      | Voice channels                    |
| `announce`   | Announcement channels             |
| `stage`      | Stage channels                    |
| `categories` | Categories                        |

## Delete

Delete a single counter channel.

<CodeGroup>
  ```bash Syntax theme={null} theme={null}
  ;counter delete (#channel)
  ```

  ```bash Example theme={null} theme={null}
  ;counter delete #Members:-1234
  ```
</CodeGroup>

## View

List all active counter channels and their types.

```bash theme={null} theme={null}
;counter view
```

## Reset

Delete all counter channels in the server at once.

```bash theme={null} theme={null}
;counter reset
```
