An open API service indexing awesome lists of open source software.

https://github.com/systemvll/selfcord

A Discord selfbot client that allows you to join multiple voice channels through commands.
https://github.com/systemvll/selfcord

discord-exploits discord-group-lock discord-hack discord-multi-voice discord-tool multi-tools selfbot-for-discord tools

Last synced: about 1 month ago
JSON representation

A Discord selfbot client that allows you to join multiple voice channels through commands.

Awesome Lists containing this project

README

          

# Selfcord

A Discord selfbot client that allows you to join multiple voice channels through commands and have
embeded auto-afk features.

## Features (User)

- [x] Join multiple voice channels at the same time with the `voice` command
- [x] Check Discord API latency with the `ping` command
- [x] Colorful console logging with the `Logs` utility
- [x] Freezing the group with the `freeze-group` command making it impossible to remove or add people to the group.
- [x] Clearing your messages with the `clear` command
- [ ] Automatically answering to mentions.

https://github.com/user-attachments/assets/29415551-890e-494e-afac-b16926c67505

## Installation

To install dependencies:

```bash
bun install
```

## Configuration

Create a .env file in the root directory with your Discord token:

```
TOKEN=your_discord_token_here
```

## Usage

To run the bot:

```bash
bun run start
```

### Available Commands

- `&voice [link]` - Join a Discord voice channel using a channel link
- `&ping` - Check your latency to the Discord API
- `&clear [amount]` - Clear your messages in the current channel
- `&freeze-group` - Freeze the group making it impossible to remove or add people to the group.

## Docker Support

You can also run this project using Docker:

```bash
# Build the image
docker build -t discord-multi-voice .

# Run the container (replace with your Discord token)
docker run -e TOKEN=your_discord_token_here discord-multi-voice
```

This project uses [Bun](https://bun.sh), a fast all-in-one JavaScript runtime.