I want to fetch messages from one private discord channel to my channel. But not all messages. Just my wanted ones. Like "car" message. I want to fetch all "car" messages to my discord channel. I don't know programming at all. I'm working on it for 2 days :D. It's so easy I think. But i couldn't do it.
@bot.event
async def on_message(message):
channel = bot.get_channel(931570478915657790)
if message.content == "car":
await channel.send("i found car word!")
I just did this :/