V4NSH4J / discord-mass-DM-GO

The most powerful Discord selfbot written in GO allowing users to automate their campaigns & send low-cost mass messages to Discord users!
https://t.me/tosviolators
GNU Affero General Public License v3.0
2.17k stars 638 forks source link

yall got any tool that turn discord ids to usernames? #851

Open Sweetdanutz opened 1 year ago

Sweetdanutz commented 1 year ago

Put the following in the title of your Issue:

[Question] for a general question.

Be specific, people can't help you if we don't know what you are talking about

[Bug] for unexpected error/behavior on the program.

Please include your:

  • DMDGO version (shown on title screen)
  • Whether you built from source or downloaded a release
  • Your operating system.

Explain your question/bug below:

DevTechJr commented 1 year ago

Try using a scraper. DMDGO's scraper only scrapes in member ids. If you use another scraper to collect the ids and usernames, you can add the ids into memberids.txt and won't have an issue. You can always use the usernames for later.

You can even edit an existing scraper. I'm playing around with Discum Scraper bc I have the same issue lol.

matukaking commented 1 year ago
memberslist = []
members = get_members(serverid, channelid)
for p_id, p_info in members.items():
    memberslist.append(str(p_info["username"]) +"#" +str(p_info["discriminator"]))

for z in memberslist:
    try:
        print(str(z))
    except:
        pass