How can I pull how many boosts a user gave on my server through discord.js?
How can I pull how many boosts a user gave on my server through discord.js?
6 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!you cant
you can only listen for the guildMemberUpdate event to know whether a member started boosting
or the messageCreate event for the messages if you have them enabled
if (newMember.premiumSubscriptionCount === 2 && oldMember.premiumSubscriptionCount < 2) {
it works?
@wolvinny š
no
again
you cannot detect how many times a member boosted
you can count the boosts a server has yes
Is there any way I can pull it sometimes boosted?
no