Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

138
Views
How can I detect tag in discord.js

I want make my bot delete any tag that tag me, but it doesn't work. It work successful in random word but failed in tag such as <@id>.

bot.on("message", message => {
  if (message.content.startsWith("")) { //what should I write in ""?
    message.delete()
  }
})
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Check if the bot was mentioned using Message#mentions.

if (message.mentions.users.has(bot.user.id)) {
  message.delete()
}

Note that this also counts for replies that mention the user. If you want to check the message content, but not replies, you can use regex

const regex = new RegExp(`<@!?${bot.user.id}>`)
if (regex.test(message.content)) {
  message.delete()
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!