“DM User Discord.py” Ответ

Discord.py DM конкретный пользователь

    if message.content == "dm":
        await message.channel.send("Dming user")
        dm = await message.author.create_dm()  # Creates a dm channel with the user
        await dm.send("What you want to send")  # Sends the user the message
Witty Warbler

Discord.py упомянуть пользователь

#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_

Как упомянуть кого -то discord.py

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

DM User Discord.py

@client.command()
async def dm(ctx, user: discord.User, *, reason = None)
 await ctx.send(f"I'm messaging {user.mention}!")
 await user.send({reason})
Bingus

Отправить DM на пользователь Discord.py

# sends a DM to the user

@client.event
async def on_message(message):
  msg = message.content

  if msg.startswith('Hello!'):
    await message.author.send("Well hello there!")
JessiCoder

команда DM в discord.py

@bot.command()
@commands.has_permissions(administrator=True)
async def edm(ctx, users: commands.Greedy[discord.User], *, message):
    for user in users:
      embed =  discord.Embed(description=message, color = 4*5555 )
      embed.set_footer(text=f'{ctx.author}',icon_url=ctx.author.avatar_url)
      channel = ctx.channel
      await user.send(embed=embed)
      await channel.purge(limit=1)
      await ctx.send('Sent' ,delete_after=5)
Hunter 87

Ответы похожие на “DM User Discord.py”

Вопросы похожие на “DM User Discord.py”

Больше похожих ответов на “DM User Discord.py” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования