If you like my work, consider buying me a coffee! ☕️
Welcome to the Discord Welcome Bot repository! This Python bot is designed to enhance your Discord server by providing a warm welcome to new members. The bot sends a personalized welcome message to users as they join your server, creating a friendly and inviting atmosphere.
-
Clone the Repository:
git clone https://github.com/your-username/discord-welcome-bot.git
-
Install Dependencies:
Navigate to the project directory and install the required dependencies:
pip install -r requirements.txt
-
Configure the Bot:
Copy the
config.example.json
file and rename it toconfig.json
. Open theconfig.json
file and add your Discord bot token and set other configuration options as needed. -
Run the Bot:
Run the bot script:
python bot.py
Ensure that your Discord bot is invited to your server and has the necessary permissions.
Customize the bot's behavior by modifying the options in the config.json
file. You can adjust the welcome message, specify the channel where the welcome message should be sent, and more.
{
"token": "YOUR_DISCORD_BOT_TOKEN",
"prefix": "!",
"welcome_channel_id": "YOUR_WELCOME_CHANNEL_ID",
"welcome_message": "Welcome to the server, {user_tag}! We're glad to have you here.",
"enable_private_message": true
}