“como mencionar alguém discord.py” Respostas de código

discord.py mencione o usuário

#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 Menção Usuário

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

como mencionar alguém discord.py

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

como mencionar alguém discord.py

await message.channel.send(f'<@{your_id_here}> is the best')
Combative Centipede

Respostas semelhantes a “como mencionar alguém discord.py”

Perguntas semelhantes a “como mencionar alguém discord.py”

Mais respostas relacionadas para “como mencionar alguém discord.py” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código