Open aiko-chan-ai opened 2 years ago
This is not an ETA
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");
@ajmeese7 i checked, it's true that the event is not received Discord doesn't send guildMemberAdd and guildMemberRemove events
@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
User Updates don't fire too, unless is the bot himself
Which package has the bugs?
The core library
Issue description
Some problems with the event, I will list them here
109
127
109
72
195
If the user does not have a Friends relationship, or the user is not in the cache (using request members gateway - opcode 8/14), it does not work.
voiceStateUpdate
207
Enable DMSync
If there is any more information, please let me know.