-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event {name} is not working #197
Comments
I'll add that the 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 |
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
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.
Enable DMSync
If there is any more information, please let me know.
The text was updated successfully, but these errors were encountered: