Answers for "discord.py if someone dm to the bot the bot will send the message to a specific channel"

0

how to make a discord bot dm someone python

@bot.command(pass_context = True)
async def dm(ctx, member : discord.Member, *, content: str):
    await bot.send_message(member, content)
Posted by: Guest on May-17-2020

Code answers related to "discord.py if someone dm to the bot the bot will send the message to a specific channel"

Python Answers by Framework

Browse Popular Code Answers by Language