Answers for "discord bot response to private message python"

9

discord bot response to private message python

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('We have logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content.startswith('$hello'):
        await message.channel.send('Hello!')

client.run('your token here')
Posted by: Guest on March-27-2020
0

discord bot response to private message python

@bot.event
async def on_message(message):
    if isinstance(message.channel, discord.channel.DMChannel) and message.author != bot.user:
        await message.channel.send('This is a DM')
Posted by: Guest on July-03-2021

Code answers related to "discord bot response to private message python"

Python Answers by Framework

Browse Popular Code Answers by Language