aiko-chan-ai / discord.js-selfbot-v13

An unofficial discord.js fork for creating selfbots
https://discordjs-self-v13.netlify.app
GNU General Public License v3.0
712 stars 148 forks source link

Event X is not working #197

Open aiko-chan-ai opened 2 years ago

aiko-chan-ai commented 2 years ago

Which package has the bugs?

The core library

Issue description

Some problems with the event, I will list them here

aiko-chan-ai commented 1 year ago

This is NOT an ETA image

ajmeese7 commented 1 year ago

I'll add that the guildMemberAdd is not specific to large servers, with the following code I can't get the event to fire on a server with three users:

const { Client } = require("discord.js-selfbot-v13");
const client = new Client({});

client.on("ready", async () => {
  console.log(`${client.user.username} is ready!`);
});

// Listen for members joining the guild
client.on("guildMemberAdd", async (member) => {
  console.log("A user joined...");
});

client.login("token here");
aiko-chan-ai commented 1 year ago

@ajmeese7 i checked, it's true that the event is not received Discord doesn't send guildMemberAdd and guildMemberRemove events

Triggered0 commented 1 year ago

@ajmeese7 i checked, it's true that the event is not received Discord doesn't send guildMemberAdd and guildMemberRemove events

guildMemberUpdate does not work too

notsapinho commented 1 year ago

User Updates don't fire too, unless is the bot himself