Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/z1xus/self-reaction-bot

A Discord Python Selfbot to put reactions on messages
https://github.com/z1xus/self-reaction-bot

discord discord-py discord-selfbot python python-discord-bot

Last synced: 3 days ago
JSON representation

A Discord Python Selfbot to put reactions on messages

Awesome Lists containing this project

README

        

## self-reaction-bot

A Discord Python Selfbot to put reactions on messages.
Designed specifically to annoy all your friends.

> [!WARNING]
> This may not work with the latest discord.py-self.
> In that case you should install a development version by cloning the discord.py-self repository and running `python -m pip install -U .`


preview





CodeFactor





### Features:
+ Proxy support
+ Message queue to avoid rate limits
+ Random delay between reactions

### Use it on your own risk.
You have to understand that selfbots are against Discord TOS, and there is a great chance your account will get terminated using one.

### Usage:
1. Clone the repository
```bash
git clone https://github.com/Z1xus/self-reaction-bot
```
2. Install dependencies
```bash
pip install -r .\requirements.txt -U
```
3. Configure your .env
```Shell
# in case you got rate limited
USE_PROXY=False
PROXY=http://localhost:8080

# channel ids where the bot listens for messages
ALLOWED_IDS=1234567890123456789,...

# reactions list in unicode, emoji and escape formats
REACTIONS=🇧,🇮,🇹,🇨,🇭

# random delay range in seconds
MIN_DELAY=1
MAX_DELAY=5

# your discord user token, see https://www.androidauthority.com/get-discord-token-3149920/
USER_TOKEN=
```
4. Run it
```bash
python3 .\main.py
```