About 1,010,000 results
Open links in new tab
  1. How do I get the ID of an user in Discord.py - Stack Overflow

    1 We're writing a bot for our Discord Server which is supposed to mention the person that starts a specific command. For this I'd need the ID of the user, but can't figure out how to get it.

  2. How to get user's info only using user's ID? discord.py

    So far I just wanted to get user's info using their discord ID, I know I can use discord.Member instead, but I want to do it with their ID and do like k!userinfo 326024842765664257 Is there …

  3. How to make discord bot only notify me when an user joining …

    Nov 23, 2021 · It seems that you essentially want to check if 5, or more, minutes have passed between each voice channel leave/join of a user. You can use the datetime module to get the …

  4. How do I get the User ID of a discord user using discord.py

    Im using Discord.py and Im trying to get the Discord userid of a user when they type into a channel. The userid can be found when you go into developer mode, and right click on a …

  5. Discord.JS get member from user ID - Stack Overflow

    Jan 31, 2021 · Discord.JS get member from user ID Asked 4 years, 9 months ago Modified 4 years, 9 months ago Viewed 19k times

  6. How to get user id of interaction with Discord.JS

    Nov 12, 2022 · 0 It's because author of the code assumed that the type returned from interaction.guild.members.fetch(interaction.user.id) is User while it's GuildMember . If you do …

  7. Get Discord username from user ID (discord.py) - Stack Overflow

    0 I'm trying to write a simple game in discord.py. The score is stored in a database, indexed by the Discord user ID (an integer). Now I'd like to display the highscore in a nicely readable …

  8. How can I get user directly from discord API? - Stack Overflow

    Aug 25, 2022 · How can I get user directly from discord API? Asked 3 years, 3 months ago Modified 2 years, 11 months ago Viewed 3k times

  9. discord - How to get user who ran interaction - Stack Overflow

    Jan 4, 2022 · I have searched arround for a while for this but can't seem to find an answer. Does anyone know how to get the user who ran the interactions nickname, username, and user id? …

  10. How to get ID of a mentioned user (Discord.py) - Stack Overflow

    Oct 28, 2018 · for user_mentioned in ctx.message.mentions: # Now we can use the .id attribute. print(f"{user_mentioned}'s ID is {user_mentioned.id}") It's up to you whether you want to …