Can a bot find the value of a field in a embed?
I'm trying to make this bot that can find the value of the first field that a webhook sends. Is that possible and how so?
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 OPyou appear to have been looking for #djs-questions, rather than this channel which is focused on
@discordjs/voice
but webhook messages are still messages
<Message>.embeds
is an array of Embed
s in a message
<Embed>.fields
is an array of APIEmbedField
s in an embed
<APIEmbedField>.value
is the field's valueThank you, and sorry for using the wrong channel!