Welcome new users with a random welcome gif
// ** DEV ** Customise gifs here
const gifs = [
'https://media.giphy.com/media/28GHfhGFWpFgsQB4wR/giphy.gif',
'https://media.giphy.com/media/icUEIrjnUuFCWDxFpU/giphy.gif',
'https://media.giphy.com/media/3ornk57KwDXf81rjWM/giphy.gif',
'https://media.giphy.com/media/Vbtc9VG51NtzT1Qnv1/giphy.gif',
'https://media.giphy.com/media/dzaUX7CAG0Ihi/giphy.gif',
];
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const event = context.params.event;
const randomGif = gifs[Math.floor(Math.random() * gifs.length)];
await lib.discord.channels['@0.1.1'].messages.create({
channel_id: process.env.CHANNEL_ID,
content: `Welcome <@!${context.params.event.user.id}>!`,
tts: false,
embed: {
type: 'rich',
image: {
url: randomGif,
},
},
});