report discord server code example
Example: discord report command
client.on('message', message => {
if (message.content.startsWith(prefix + 'report')) {
if (message.author.bot) return;
message.channel.send(`${message.author}` + ' Our Admin(s) Have Receied Your Report')
const channel = client.channels.cache.get('YOUR CHANEL ID HERE')
const ReportMessage = message.content.slice(7).trim();
const ReportEmbed = new Discord.MessageEmbed()
.setColor('#b700ff')
.setTitle(ReportMessage)
channel.send(`||${message.author}||` + "**'s Report : - **")
channel.send(ReportEmbed)
}
});