how to make it so if a message includes a certain word something happens in pythgon discord code example
Example: 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