discord.js-selfbot-v13 icon indicating copy to clipboard operation
discord.js-selfbot-v13 copied to clipboard

Event {name} is not working

Open aiko-chan-ai opened this issue 3 years ago • 5 comments

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, userUpdate and guildMemberUpdate events

  • 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

If there is any more information, please let me know.

aiko-chan-ai avatar Jul 10 '22 03:07 aiko-chan-ai

This is NOT an ETA image

aiko-chan-ai avatar Nov 26 '22 05:11 aiko-chan-ai

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 avatar Nov 26 '22 18:11 ajmeese7

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

aiko-chan-ai avatar Nov 27 '22 07:11 aiko-chan-ai

@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

Triggered0 avatar Dec 12 '22 18:12 Triggered0

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

notsapinho avatar Jan 08 '23 13:01 notsapinho