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 .
- Proxy support
- Message queue to avoid rate limits
- Random delay between reactions
You have to understand that selfbots are against Discord TOS, and there is a great chance your account will get terminated using one.
- Clone the repository
git clone https://github.com/Z1xus/self-reaction-bot
- Install dependencies
pip install -r .\requirements.txt -U
- Configure your .env
# 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=
- Run it
python3 .\main.py