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

137
Views
How to track who invited a bot with discord.js?

How to track who invited a Discord bot in a guild, using discord.js? I want to create an anti-bot event and take action against the inviter.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Using audit logs will suffice (you will need to give the bot perms). Using GuildAuditLogsEntry.executor and GuildAuditLogsEntry.target. Here is an implementation (it will check if the member is a bot and if they are, do something of your choice)

client.on("guildMemberAdd", async (member) => {
  if (!member.user.bot) return;
  const auditLogs = await member.guild.fetchAuditLogs({type: "BOT_ADD"})
  const auditLog = auditLogs.entries.first()
  //you can take ban with "auditLog.executor.ban()"
  //you can also ban the bot with "auditLog.target.ban"
})

Tested on discord.js v13

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!