Detecting Application Commands Intended for Other Bots!
I'm currently working on a Discord.js bot where I need to detect when users trigger application commands intended for other bots. I want to be able to track when a user sends a command like "/play" meant for a music bot, and then capture the interaction where the music bot responds.
Example: a user types "/play", thinking it will trigger the music bot, but my bot intercepts it and logs that it was intended for the music bot. Then, when the music bot responds to the user's command, my bot should detect this interaction and log that the music bot replied, possibly with additional details such as an embed containing a link.
My question is: Is it possible to achieve this functionality with Discord.js, and if so, how can I implement it effectively?
What I've tried:
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!
- ✅
Marked as resolved by OPDetecting the public reply of the bot shouldn't be any different than detecting a regular users message or is there anything special I should be aware of?
you can use Message.interaction
however this is to detect a user using a command of that bot
ookay I'll try that thanks for the help!