Whenever the user uses a bot other than your one, the bot feels envious and reminds the user to use them.
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
let bot_name = context.params.event.author.username.toUpperCase();
let user = context.params.event.mentions[0].id;
if (context.params.event.mentions.length === 1) {
await lib.discord.channels['@0.1.2'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: `<@!${user}> how could you do me like this?! You're using **${bot_name}** instead of **ME**?! :(`,
});
}