The Discord Name Bot is a Python script designed to automate changing your Discord username periodically. It randomly selects from a predefined list of humorous names, allowing you to showcase your wit or entertain your friends. The script utilizes the nodriver
library to control a browser instance, ensuring that the name changes happen seamlessly.
- Randomly selects a name from a predefined list.
- Periodically changes username at a customizable interval.
- User-friendly interface with options to interact directly with Discord.
Official successor of the Undetected-Chromedriver python package that does NOT use WebDriver https://github.com/ultrafunkamsterdam/nodriver
Before using the Discord Name Bot, make sure you have the following installed:
- Python 3.x
- nodriver library
-
Clone the Repository:
git clone https://github.com/Connor9994/Discord-Name-Bot.git cd Discord-Name-Bot
-
Install the Dependency:
pip install nodriver
-
Set Up Browser Environment:
- Download the Chrome browser and place it at the path specified in the script (or modify the script to point to your Chrome executable).
- Prepare a folder structure for user data
.\Users
. This folder will hold your Discord session cookies.
-
Modify the Script:
- Update the
names
list with your desired funny names. - Change the
DiscordChannelUrl
variable to the URL of your Discord channel. - Adjust the
IntervalTimer
to set how often (in seconds) you want the username to change. - Set
LoggedIn
to1
once you have successfully logged in to Discord with your cookies saved.
- Update the
names = [
"Funny Name 1",
"Funny Name 2",
"Connor (Funny Name 3)"
]
DiscordChannelUrl = "https://discord.com/channels/1113511191788491111/1113570111188411151" # URL to Discord Channel
IntervalTimer = 60 # Seconds Between Name Changes
LoggedIn = 0 # Set To 1 After You Save Your Discord Cookies/etc to the "Users" folder
- Run the Script:
python DiscordNameChanger.py
- If you are logged in and have cookies set up correctly, the bot will automatically change your username every few seconds as specified.
- If you are not logged in, the script will take you to the Discord login page to enter your credentials.
- Make sure to comply with Discord's Terms of Service when using the bot. Automating user interactions can lead to your account being flagged or banned.
- Use this bot for entertainment purposes only, and ensure that other members of your Discord community find it amusing.
Feel free to fork the repository and submit pull requests for improvements or new features!