discord.js-selfbot-v13
discord.js-selfbot-v13 copied to clipboard
Event {name} is not working
Which package has the bugs?
The core library
Issue description
Some problems with the event, I will list them here
- guildMemberAdd
- #109
- #127
- guildMemberRemove
- #109
- guildMemberUpdate
- https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/197#issuecomment-1347081552
- userUpdate
- https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/197#issuecomment-1374834562
Note Discord does not send
guildMemberAdd,guildMemberRemove,userUpdateandguildMemberUpdateevents
- messageCreate (Fixed c165824)
- #72
- presenceUpdate
- #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.
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