Skip to content

Guild Emojis

nutmeg edited this page Feb 22, 2023 · 3 revisions

Run Down

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

Emoji Count

Discord+PS' emoji count uses the guild's emoji cache so it may not be accurate until you restart the bot

PSClient.guild.emojiCount(?guild);

Emojis

PSClient.guild.emojis() returns a list of all emojis
Uses the guild's emoji cache so it may not update until you restart the bot

PSClient.guild.emojis(?guild);

EmojiF

EmojiF is a function that lets you use every emoji in a server constantly updating although it's limited due to Discord.JS limitations

PSClient.guild.emojiF( (emojis) => {
	emojis.forEach( (emoji) => {
		console.log(emoji.id);	
	});
});
Clone this wiki locally