Disclaimer: This project is strictly for educational purposes only. Do not use this bot on servers you do not own or have explicit permission to modify. Abusing this code may violate Discord's Terms of Service and could result in account termination.
This project demonstrates how to structure a Discord bot/selfbot for learning purposes. It includes:
- Dynamic configuration using
.env - Logging actions in the terminal and optionally via webhook
- Version tracking for the bot
Important: This code is intended to teach Python, Discord API interactions, and bot structure, not to manipulate servers without permission.
- Loads settings from
.envfile - Tracks bot version
- Logs actions with timestamps to terminal
- Optional: Send logs to a Discord webhook
- Clone the repository:
git clone https://github.com/nabil-devs/Server-vanity-rotator-bot
cd Server-vanity-rotator-bot- Create a virtual environment and activate it:
python -m venv venv
# Windows
venv\Scripts\activate
# macOS/Linux
source venv/bin/activate- Install dependencies:
pip install -r requirements.txtRun the bot:
python main.pyTerminal will show logs including the bot version and actions being taken (for educational purposes).
Current version: 1.0.0
MIT License