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
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
python if message contains then reply in discord
@client.event
async def on_message(message):
if message.author == client.user:
return
#MSG
msg = message.content
if any(word in msg for word in keyword):
#reply
await message.channel.send("ABC")
#keywords
keyword = ["1", "2", "3"]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us