“Discord.py упомянуть пользователь” Ответ

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

username = client.get_user(user_id)
Swetsen

Discord.py упомянуть пользователь

#discord.py rewrite
#python 3+
bot.command(name='pingme', help='pings the author of the message')
async def pingme(ctx):
	#to get a member from a 'ctx' object is ctx.author
	#from there its .mention will mention (ping) the user
	#also there are others like .id
	await ctx.send(ctx.author.mention)
_creare_

Python Discord упоминать пользователя

await message.channel.send(message.author.mention)
Delightful Dragonfly

Как упомянуть кого -то discord.py

myid = '<@201909896357216256>'
await client.send_message(message.channel, ' : %s is the best ' % myid)
Healthy Horse

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

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

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

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

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