A lot of people in discord servers send these emoji spam things, and I'm trying to keep it down. I'd like to delete any messages with more than 7 emojis. How can I do this? Something along the lines of:
@client.event
async def on_message(message):
if more than 5 emojis in message.content and message.channel.id == 717525332093042808 and message.channel.id == 723147921264082974:
I also have 2 channels I'd like to delete this from. Does message.channel.id == 717525332093042808 and message.channel.id == 723147921264082974
solve the problem?