“discord.py mencionar usuario” Código de respuesta

Cómo obtener el nombre de usuario con UserID Discord.py

username = client.get_user(user_id)
Swetsen

discord.py mencionar usuario

#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 Mencione User

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

cómo mencionar a alguien discord.py

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

Respuestas similares a “discord.py mencionar usuario”

Preguntas similares a “discord.py mencionar usuario”

Más respuestas relacionadas con “discord.py mencionar usuario” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código