“Discord JS упоминает” Ответ

Discord JS, как упомянуть бот

//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
Open Oystercatcher

Discord JS упоминает

// mention user:
msg = "Write to <@USERID>";
// mention role:
msg = "Dont ping <@&ROLEID>";
N!ls

Discord.JS BOT Упоминается

// We are going to use regex because its the best way to check
// client -> your discord.js Client variable

if (message.content.match(/^<@!?${client.user.id}>( |)$/)) 
  return message.channel.send("Hello! thanks for mentioning me!");
Concerned Cormorant

Ответы похожие на “Discord JS упоминает”

Вопросы похожие на “Discord JS упоминает”

Больше похожих ответов на “Discord JS упоминает” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования