discord bot clear messages
switch(args[0]){
case 'clear':
if(!args[1]) return message.reply('Error please define second argument')
message.channel.bulkDelete(args[1]);
break;
}
discord bot clear messages
switch(args[0]){
case 'clear':
if(!args[1]) return message.reply('Error please define second argument')
message.channel.bulkDelete(args[1]);
break;
}
discord bot remove message
import discord.ext
bot = commands.Bot(";")
@bot.event
async def on_message(message):
if message.content.upper().startswith(";SAY"):
args = message.content.split(" ")
await bot.send_message(message.channel, "%s" % (" ".join(args[1:])))
await bot.delete_message(message)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us