how to send a message in a specific channel discord.py
channel = client.get_channel(12324234183172)
await channel.send('hello')
how to send a message in a specific channel discord.py
channel = client.get_channel(12324234183172)
await channel.send('hello')
discord.py mention user
#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)
python discord mention user
await message.channel.send(message.author.mention)
how to mention someone discord.py
myid = '<@201909896357216256>'
await client.send_message(message.channel, ' : %s is the best ' % myid)
python discord mention user
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us