Answers for "run command if message is sent in specific channel discord.py"

8

how to send a message in a specific channel discord.py

channel = client.get_channel(12324234183172)
await channel.send('hello')
Posted by: Guest on January-19-2020
0

Detect Word Then Send Message (discord.py)

#New Event, prints oh wow if someone says wow
@client.event
async def on_message(message):

    if "wow" in message.content:
        await channel.send("oh wow")

#End of Event
Posted by: Guest on June-03-2021

Code answers related to "run command if message is sent in specific channel discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language