Answers for "discord js mention"

1

discord js mention

// mention user:
msg = "Write to <@USERID>";
// mention role:
msg = "Dont ping <@&ROLEID>";
Posted by: Guest on October-11-2021
0

discord js how to mention bot

//to mention bot you need the client.user
//like this

client.on('message' , message => {
	if(message.isMemberMentioned(client.user)) return message.channel.send(client.user)
})
//don't worry about the isMemberMentioned i only used it to make the bot detect if it's was mentioned
Posted by: Guest on August-18-2021

Code answers related to "discord js mention"

Code answers related to "Javascript"

Browse Popular Code Answers by Language