This discord bot is used to evaluate a Safe-Score from 0 to 100 for each account joining a server
The Bot scrape infos about the new user and and assign more or less points depending on the results .
All infos used are :
- Creation Date
- Activities
- Biography
- Accounts Linked
- Banner
- Color
- Profile Picture , Default ?
- Is on mobile ?
- Is Nitro ?
- Is on Web version ?
(The command ?check @user
also allows the analysis of a targeted profile)
-
cd ~ git clone https://github.com/Vozec/Discord-Multi-Account-Detector.git cd Discord-Multi-Account-Detector python3 -m pip install -r requirements.txt
- Edit the
config.json
file
{
"TOKEN_BOT":"OTQ2OD ... Sg",
"TOKEN_USER":"Mzg2M ... 4yqmS5E",
"PREFIX":"?",
"DESCRIPTION":"Discord Multi-Account Detector",
"WEBHOOK":"https://discord.com/api/webhooks/101239346 ... 8569354/PLuCEhNywE_U3W_XJCDyQbIb6UPWY9Sc ... 4OC7"
}
- Go here and create a
application
- Activate
Intents
and Copy theTOKEN
in theBOT
section - Create a server on discord and invit your bot using the
URL generator
(OAuth2 section)
- Go here and
login
- Open DevTools (Ctrl+Shift) and go in
Application
section - Copy the
token
cookie
- Go in your
Discord server setup
and Webhooks section - Create one a setup all :
- Name
- Profile Picture
- Channel were message will be send
You may wonder why a user token is needed : Discord prevents access to certain information from a bot , including a user's biography and linked accounts.This is why it is necessary to use a classic account to retrieve this information and have a more precise result.
The bot can work without the user token but the result will not be based on the description and the accounts linked to the profile. (Much Less Accurate)
Vozec