0
I wonder if there is any way to use animated emojis with the webhook without nitro, an example of this would be the NQN bot (Not Quite Nitro), which basically the function is to use animated emojis without having nitro. But when someone without nitro sends an animated emoji using webhook, it sends the message with the name of the emoji. (:emoji:)
Example:
Code:
const webhooks = await message.channel.fetchWebhooks();
const webhook = webhooks.first();
webhook.send(args.join(" "), {
username: message.author.username,
avatarURL: message.member.user.displayAvatarURL({ dynamic: true, format: "png"}),
});