How do I get target's presence ?
I am creating a slash command that gives presence info about a target'ed user. How do I get their presence?
I tried doing this, just to get object of presence but got nothing.
`js
console.log(target.user.presence);
3 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!
- ✅
Marked as resolved by OPtarget.presence
also you dont need to fetch the member, you can just use
interaction.options.getMember("target")
ok
Thanks. It works 👍