This Snippet Prevents Users/Mods/You From Spamming With All Caps
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
//**DEV CONFIG** (CHANGE '10' TO WHATEVER YOU WANT) (THE NUMBER MEANS HOW MANY CAPS TRIGGER THE MESSAGE)
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 Never Use All Caps In This Server.`, //change this to whatever u want
});
await lib.discord.channels['@0.1.1'].messages.destroy({
message_id: `${context.params.event.id}`,
channel_id: `${context.params.event.channel_id}`,
});
}
}
//By RedSweater#2500