Answers for "how to make a bot send whatever you dm it into a server discord.py"

1

how to make a bot send whatever you dm it into a server discord.py

# We will be importing the discord.ext.commands extension for this.
from discord.ext import commands
import discord

# We make the bot definition and set the prefix to !
bot = commands.Bot(command_prefix='!')

# Here starts the real fun
@bot.command()
async def DM(ctx, user: discord.User, *, message=None):
	# Once we define the argunments we need, it's pretty straight forward.
    message = message
    await user.send(message)
	# You, that's it!

bot.run("TOKEN")
Posted by: Guest on July-30-2021

Code answers related to "how to make a bot send whatever you dm it into a server discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language