Just get data of (nearly) all of Discord guild members. Or track deleted and edited messages. Or why not both?
Warning
I don't take any responsibility for blocked Discord accounts that used this module. Using this on a user account is prohibited by the Discord TOS and can lead to the account block.
Tip
If you are upgrading from the previous version, please make sure you update the dictionary in the.env
file.
Pomelo has changed the rules for usernames.
- By using source code:
- Clone this repository.
- Make sure that you have Node.js v18 installed.
- Install dependencies by using
yarn
. - Fill in the
.env
file and place it insrc
directory. - Run
npm start
.
All results will be stored in the logs
and media
directories.
There is no prepacked binary - pkg
/yao-pkg
and ESM support state is fucked up beyond all recognition.
You can use some default options from the already provided .env file.
- When you want to dump guild members, set
MODE
toMEMBERS
andGUILD_ID
: The guild ID you want to get data from.SPACING
: Spacing between columns in an output file.TOKEN
: Your Discord account token.DELAY
: Delay between some requests.DICTIONARY
: Characters used by the bruteforce method. Case-insensitive, duplicates are ignored, sorted alphabetically.DATE_FORMAT
: format of the parsed date (refer to the Day.js manual).DATE_LOCALE
: locale used in the parsed date (list of supported locales).PREFETCH
: fetch 10 000 members at once. Missing info about presences may occur.
- When you want to trace deleted and edited messages, set
MODE
toWATCHDOG
andGUILD_ID
: The guild ID you want to get data from. Set toall
, if you want to receive data from all available guilds.TOKEN
: Your Discord account token.
- Q: I'm getting
GUILD_MEMBERS_TIMEOUT
errors. Help!
A: Increasedelay
time in config.