“Discord.py Wspomnienie użytkownika” Kod odpowiedzi

Jak uzyskać nazwę użytkownika za pomocą UserID Discord.py

username = client.get_user(user_id)
Swetsen

Discord.py Wspomnienie użytkownika

#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 wspomina użytkownika

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

Jak wspomnieć o kimś niezgodnym

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

Odpowiedzi podobne do “Discord.py Wspomnienie użytkownika”

Pytania podobne do “Discord.py Wspomnienie użytkownika”

Więcej pokrewnych odpowiedzi na “Discord.py Wspomnienie użytkownika” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu