📅  最后修改于: 2022-03-11 15:03:55.783000             🧑  作者: Mango
client.on("message", exa => {
var channel = exa.channel.id === `اÙد٠اÙرÙÙ
`;
if (!channel) return false;
let sugexa = exa.content
.split(" ")
.slice("")
.join(" ");
if (exa.author.bot) return;
if (exa.content.startsWith("")) {
exa.delete();
var embed = new Discord.MessageEmbed()
.setAuthor(exa.author.username)
.setTitle("**Suggestion !!**")
.setThumbnail(exa.author.displayAvatarURL({ dynamic: true }))
.setColor("#0083ff")
.setDescription(
`ââ¬â¬â¬â¬â¬â¬â
${sugexa}
ââ¬â¬â¬â¬â¬â¬â`
)
.setFooter(`${exa.author.tag}`, `${exa.author.avatarURL()}`);
exa.channel.send(embed).then(exa => {
exa.react(":white_check_mark:");
exa.react(":negative_squared_cross_mark:");
});
}
});