const app = express() const webhook = new Topgg.Webhook("my auth") app.post("/dblwebhook", webhook.listener(vote => { let channelId = client.channels.cache.get(`971718503914680340`)  const user = client.users.fetch(vote.user)  let x = Math.floor((Date.now() / 1000) + 43200) let y = Math.floor((Date.now()) / 1000) const exampleEmbed = new EmbedBuilder() .setColor(`Random`) .setTitle(' New Vote On Top.GG ') .setURL('https://top.gg/bot/960381632471240744/vote') .setAuthor({ name: 'Role Icon#3800', iconURL: 'https://i.imgur.com/Gm6IiXu.png', url: 'https://youtu.be/dQw4w9WgXcQ' }) .setDescription(`**${user.username}#${user.discriminator} Voted** For **Role Icon!** \n**Thanks** To Vote ❤️ ! \nNow I Have ${a} Monthly Votes ! \n[Vote Here Directly](https://top.gg/bot/960381632471240744/vote) `) .setThumbnail(user.displayAvatarURL()) .addFields( { name: 'Voted At:', value: `` }, { name: 'Can Vote Again At :', value: `` } ) .setTimestamp(); channelId.send({ embeds: [exampleEmbed] }); const examplEmbed = new EmbedBuilder() .setColor(`Random`) .setTitle('Join Official Server ') .setURL('https://discord.gg/4QCDQbBY2R') .setAuthor({ name: 'From Role Icon#3800', iconURL: 'https://i.imgur.com/Gm6IiXu.png', url: 'https://top.gg/bot/960381632471240744/vote' }) .setDescription(`**You Voted** For **Role Icon!** \n**Thanks** To Vote! \nYou Were ${a}th Monthly Voter! \n[You Can Vote Again In 12 Hrs](https://top.gg/bot/960381632471240744/vote) `) .setThumbnail(user.displayAvatarURL()) .addFields( { name: 'You Voted At:', value: `` }, { name: 'You Can Vote Again At :', value: `` } ) .setTimestamp(); user.send({ embeds: [examplEmbed] }); })); app.listen(80)