Guild Stickers - shysolocup/willclient GitHub Wiki

Discord+PS improves on how guild stickers can be used in a few ways
Discord+PS' sticker count uses the guild's sticker cache so it may not be accurate until you restart the bot
PSClient.guild.stickerCount(?guild);
PSClient.guild.stickers() returns a list of all stickers
Uses the guild's sticker cache so it may not update until you restart the bot
PSClient.guild.stickers(?guild);
StickerF is a function that lets you use every sticker in a server constantly updating although it's limited due to Discord.JS limitations
PSClient.guild.stickerF( (stickers) => {
stickers.forEach( (sticker) => {
console.log(sticker.id);
});
});