Delete any message with more than 10 characters in all caps. The bot will post a message asking the user to not use all caps.
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
if (context.params.event.content.length > 10) {
if (
context.params.event.content.toUpperCase() === context.params.event.content
) {
await lib.discord.channels['@0.1.0'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: `<@!${context.params.event.author.id}> please don't use all caps.`,
});
await lib.discord.channels['@0.1.1'].messages.destroy({
message_id: `${context.params.event.id}`,
channel_id: `${context.params.event.channel_id}`,
});
}
}