Skip to content

adding counters category #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/miscellaneous/counters/add.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/miscellaneous/counters/remove.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@
"pages": [
"miscellaneous/music",
"miscellaneous/webhook",
"miscellaneous/giveaway"
"miscellaneous/giveaway",
"miscellaneous/counters"
]
},
{
Expand Down
69 changes: 69 additions & 0 deletions miscellaneous/counters.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
title: "Counters"
description: "Create counters in your server"
icon: timer
---

## Overview

Counters allows you to show important info in your server. This can be useful to show your members about significant milestones.

## Adding a counter

You can add a counter using the `counter add` command.

<Info>
Available counter options are `members`, `users_only`, `bots_only`, `pending_members`,
`all_channels`, `text_channels`, `voice_channels`, `categories`, `announcement_channels`,
`staging_channels`, `boosts`, `booster_count` and unix timestamps.
</Info>

<Info>
Available counter types are `voice` (suggested), `text`, `category`, `announce`,
and `stage`.
</Info>

<Tip>
You can create a fun and visble countdown using a UNIX timestamp.
</Tip>

<CodeGroup>

```javascript Syntax
,counter add (option) (type of channel)
```

```javascript Example
,counter add members vc
```

</CodeGroup>
<br />
<Frame>
<img src="/images/miscellaneous/counters/add.png" />
</Frame>
<br />

## Removing a counter

You can remove a counter using the `counter remove` command.

<Warning>
After removing counter, you will have to delete the channel (or category) manually.
</Warning>

<CodeGroup>

```javascript Syntax
,counter remove (channel)
```

```javascript Example
,counter remove #members
```

</CodeGroup>
<br />
<Frame>
<img src="/images/miscellaneous/counters/remove.png" />
</Frame>