“Discord py Get пользователя по ID” Ответ

Discord py Get пользователя по ID

user = bot.get_user(user_id)
IllegalBeagle123

Как получить имя пользователя с userid discord.py

username = client.get_user(user_id)
Swetsen

Discord Python Get объект участника по ID

user = await bot.fetch_user(payload.user_id)
Cooperative Cobra

Discord py Get пользователя по ID

#Another way to do it as a simpler way with discord.py:
#(This is a command for showing the author of the message's ID)
id = message.author.id
if message.content.startswith("!whatismyid"):
  await message.channel.send("Your ID is: "+str(id))
Calm Chamois

Discord py Get пользователя по ID

id = message.author.id
await message.channel.send("<@"+str(id)+"> Mentioned you!")
Calm Chamois

Ответы похожие на “Discord py Get пользователя по ID”

Вопросы похожие на “Discord py Get пользователя по ID”

Больше похожих ответов на “Discord py Get пользователя по ID” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования