Skip to content

Guild Stickers

nutmeg edited this page Feb 22, 2023 · 3 revisions

Run Down

Discord+PS improves on how guild stickers can be used in a few ways

Sticker Count

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);

Stickers

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

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);
	});
});
Clone this wiki locally