Answers for "how to check if word is in message discord.py"

2

how to check if a message includes a word discord.py

@bot.event
async def on_message(msg):
    if 'word' in msg.content:
        print('Keyword found')
        # Do stuff here
Posted by: Guest on January-25-2021
0

Detect Word Then Send Message (discord.py)

@client.event
async def on_message(message):

if "wow" in message.content:
    await message.channel.send("oh wow")
Posted by: Guest on June-03-2021

Code answers related to "how to check if word is in message discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language