¿Cómo configuraría mis comandos para eliminar el mensaje del autor después de que el Discord Bot ejecutó el comando? Por ejemplo:
#This is for the 'Ping' command.
if message.content.upper().startswith('!PING'):
userID = message.author.id
await client.send_message(message.channel, "<@%s> Pong!" % (userID))
Este comando es simple, escribe !ping
y el bot regresó con "@mention Pong!". Quiero eliminar lo !ping
enviado por el usuario justo después de que el bot envíe "@mention Pong!".