I have made a Discord bot for a game\'s Discord server. I\'m using the discord.py rewrite version and I want to send a private message to the author of the message.
I\'v
Firstly you have to define the Bot. The you will have to DM a user.
Bot
bot = commands.Bot(command_prefix='your_prefix') @bot.command() async def hello(ctx): user = ctx.author await user.send("Hello!")