55 lines
1.1 KiB
Markdown
55 lines
1.1 KiB
Markdown
|
|
# Faucet
|
|
|
|
Discord selfbot for automatically leaking messages from servers.
|
|
|
|
Most of the code is skidded from [Selfbot V2](https://git.xargana.tr/glitchy/selfbot).
|
|
|
|
## Setup
|
|
|
|
1. Python 3.8 or higher is required
|
|
2. Install virtualenv if you haven't already:
|
|
|
|
```bash
|
|
pip install venv
|
|
```
|
|
|
|
## Installation
|
|
|
|
1. Clone the repository:
|
|
|
|
```bash
|
|
git clone https://git.xargana.tr/glitchy/selfbot.git
|
|
cd selfbot
|
|
```
|
|
|
|
2. Create and activate a virtual environment:
|
|
|
|
```bash
|
|
# Windows
|
|
python -m venv venv
|
|
venv\Scripts\activate
|
|
|
|
# Linux/macOS
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
```
|
|
|
|
3. Install the required packages:
|
|
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
4. Edit `config.toml` with your preferred settings and add your Discord bot token. If you have an existing `config.json` file, it will be automatically migrated to TOML format when you first run the bot.
|
|
|
|
## Running the Bot
|
|
|
|
1. Start the bot:
|
|
|
|
```bash
|
|
python main.py
|
|
```
|
|
|
|
The bot should now be running and connected to Discord. You can verify this by checking the console output for the login confirmation message, or by doing .help in any channel.
|