br1t
br1t
DIAdiscord.js - Imagine an app
Created by br1t on 2/26/2025 in #djs-questions
User leave issue
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildInvites
],
partials: [Partials.GuildMember],
});
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildInvites
],
partials: [Partials.GuildMember],
});
probs not how your meant to do it but I need those intents, and documents didn;t go over that
16 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/26/2025 in #djs-questions
User leave issue
Still doesn't work for me, nothing is outputted not even an error
client.on("guildMemberRemove", async member => {

if (member.partial) {
try {

member = await member.fetch();
} catch (error) {
console.error('Error fetching member:', error);
return;
}
}

const guild = member.guild;


const guildInvites = await guild.invites.fetch().catch(() => null);
if (!guildInvites) return;


const cachedInvites = invitesCache.get(guild.id);
const inviteUsed = guildInvites.find(inv => cachedInvites && cachedInvites.get(inv.code) < inv.uses);


if (!inviteUsed || inviteUsed.code === guild.vanityURLCode) return;

const inviterId = inviteUsed.inviter.id;


console.log(`User left after invited from ${inviteUsed.inviter.username} using link ${inviteUsed.code}`);

const db = await dbPromise;


await db.run("UPDATE invites SET invites = invites - 1 WHERE userId = ?", inviterId);


invitesCache.set(guild.id, new Map(guildInvites.map(inv => [inv.code, inv.uses])));
invitedUsers.delete(member.id);
});

client.on("guildMemberRemove", async member => {

if (member.partial) {
try {

member = await member.fetch();
} catch (error) {
console.error('Error fetching member:', error);
return;
}
}

const guild = member.guild;


const guildInvites = await guild.invites.fetch().catch(() => null);
if (!guildInvites) return;


const cachedInvites = invitesCache.get(guild.id);
const inviteUsed = guildInvites.find(inv => cachedInvites && cachedInvites.get(inv.code) < inv.uses);


if (!inviteUsed || inviteUsed.code === guild.vanityURLCode) return;

const inviterId = inviteUsed.inviter.id;


console.log(`User left after invited from ${inviteUsed.inviter.username} using link ${inviteUsed.code}`);

const db = await dbPromise;


await db.run("UPDATE invites SET invites = invites - 1 WHERE userId = ?", inviterId);


invitesCache.set(guild.id, new Map(guildInvites.map(inv => [inv.code, inv.uses])));
invitedUsers.delete(member.id);
});

16 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/26/2025 in #djs-questions
User leave issue
I did and I am still just as confused?
16 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/26/2025 in #djs-questions
User leave issue
oops
16 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/26/2025 in #djs-questions
User leave issue
partials: [
'GUILD_MEMBER'

],
partials: [
'GUILD_MEMBER'

],
I assume it would be this?
16 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/26/2025 in #djs-questions
User leave issue
16 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/26/2025 in #djs-questions
User leave issue
v23.5.0
16 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/8/2025 in #djs-questions
how do i grab the role made by an integration
v14.17
5 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/7/2025 in #djs-questions
Issue with Message Logger
moderation
9 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/7/2025 in #djs-questions
Issue with Message Logger
also this fixed it ty
9 replies
DIAdiscord.js - Imagine an app
Created by br1t on 2/7/2025 in #djs-questions
Issue with Message Logger
then what would be an alternative? Only logging from certain channels?
9 replies