how can i get thestatus
const members = await guild.members.fetch();
const shuffledMembers = Array.from(members.values()).filter(member => !member.user.bot).sort(() => Math.random() - 0.5);
for (const member of shuffledMembers) {
try {
console.log(member.presence);
if (member.presence.status !== 'online') continue;
it just keeps giving null
4 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!@Jô 🌈🦄
Unknown User•8mo ago
Message Not Public
Sign In & Join Server To View
ok