Answers for "discord.py how to make if some one will dm to the bot the bot will send the message to you"

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
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 "discord.py how to make if some one will dm to the bot the bot will send the message to you"

Python Answers by Framework

Browse Popular Code Answers by Language