Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/z1xus/self-reaction-bot
- Owner: Z1xus
- License: gpl-3.0
- Created: 2023-07-20T21:14:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-03T08:25:13.000Z (7 months ago)
- Last Synced: 2024-06-03T10:22:21.115Z (7 months ago)
- Topics: discord, discord-py, discord-selfbot, python, python-discord-bot
- Language: Python
- Homepage:
- Size: 73.2 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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 .`
### 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
```