“Python Discord menyebutkan pengguna” Kode Jawaban

cara mengirim pesan di saluran tertentu discord.py

channel = client.get_channel(12324234183172)
await channel.send('hello')
Dangerous Dog

Discord.py menyebutkan pengguna

#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 menyebutkan pengguna

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

bagaimana menyebut seseorang scord.py

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

Python Discord menyebutkan pengguna

import discord
import os

TOKEN = os.environ["<token code here>"]
client = discord.Client()

#This command basicallty mentions the person who used the command.
if message.content.startswith("!mentionself"):
	ID = message.author.id
	await message.channel.send("<@"+str(id)+"> Mentioned you!")

#-OR-
#(This one is just more efficient.)

if message.content.startswith("!mentionself"):
	author = message.author
    await message.channel.send({author.mention}+" - Mentioned you!")

client.run(TOKEN)
Calm Chamois

Jawaban yang mirip dengan “Python Discord menyebutkan pengguna”

Pertanyaan yang mirip dengan “Python Discord menyebutkan pengguna”

Lebih banyak jawaban terkait untuk “Python Discord menyebutkan pengguna” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya