onJoin
Command executes when a user joins the guild.
Prerequisites
bot.addEvent([
"onMessage",
"onInteraction",
"onJoin" //This is what you need to add
])const dbd = require("dbd.ts")
const bot = new dbd.Bot({
intents: ["GUILDS", "GUILD_MESSAGES", "GUILD_MEMBERS"],
prefix: "PREFIX"
})
//The rest of your index.js file hereExample

Last updated
Was this helpful?
