“Cómo hacer una moderación de discordia bot python” Código de respuesta

Cómo hacer una moderación de discordia bot python

#You can solve your problem like this:

@client.event
async def on_message(message):
	if "your word" in str.lower(message.content):
    	await message.delete()

#This programm makes the message into all lowercase letters. 
#just be carefull, your word that you want to be deleted has to be written in all lowercase letters too.

#if you want to look if an element is in a list do:
bad_words = ["test", "bad", "word"]

@client.event
async def on_message(message):
	for word in bad_words:
		if word in str.lower(message.content):
    		await message.delete()
Gleaming Giraffe

Cómo hacer una moderación de discordia bot python

how do i make it so it takes capitals like FUCK it wont delete but if i add that to word list things like fUck wont delete cus capital U
Testy Tuatara

Cómo hacer una moderación de discordia bot python

# for higher letters

@client.event
async def on_message(message):
	for word in bad_words:
		if word in str.higher(message.content):
    		await message.delete()
Hanz_Holu

Respuestas similares a “Cómo hacer una moderación de discordia bot python”

Preguntas similares a “Cómo hacer una moderación de discordia bot python”

Más respuestas relacionadas con “Cómo hacer una moderación de discordia bot python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código