Answers for "how to make it so if a message includes a certain word something happens in pythgon discord"

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

Code answers related to "how to make it so if a message includes a certain word something happens in pythgon discord"

Python Answers by Framework

Browse Popular Code Answers by Language