Automatically add an emoji of your choice to all new images posted in a given channel. Make sure to add the id of the channel you want your bot to check on line 9.
// authenticates you with the API standard library
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
if (context.params.event.attachments[0]) { // is the trigger an image
await lib.discord.channels['@0.1.2'].messages.reactions.create({
emoji: `⭐`, // the choosen emoji
message_id: context.params.event.id, //the id of the message thet triggerent the event
channel_id: `the channel id you want your bot to check`,
});
}