xoxo__cool_tabahi__xoxo
xoxo__cool_tabahi__xoxo
DIAdiscord.js - Imagine an app
Created by Myz on 6/22/2023 in #djs-questions
How to get a list of all pinged members in a message (not interaction)
also alternatively too loop through each member you can use
<Message>.mentions.members?.forEach((mem)=>{
console.log(mem)
})
<Message>.mentions.members?.forEach((mem)=>{
console.log(mem)
})
9 replies
DIAdiscord.js - Imagine an app
Created by Myz on 6/22/2023 in #djs-questions
How to get a list of all pinged members in a message (not interaction)
const mentionedMember = <Message>.mentions.members.map(mem=> mem)
const mentionedMember = <Message>.mentions.members.map(mem=> mem)
mentionedMember is an array of the members
9 replies