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
750 stars 160 forks source link

Problem logging into the server #1206

Open IsNoLimit opened 2 months ago

IsNoLimit commented 2 months ago

Which package has the bugs?

The core library

Issue description

Problem logging into the server

Code sample

Failed to accept invite: HTTPError: CAPTCHA_SOLVER_NOT_IMPLEMENTED

client.on('ready', async () => {
  console.log(`${client.user.username} is ready!`);
  try {
    await client.acceptInvite('https://discord.gg/gg', { bypassOnboarding: false, bypassVerify: false })
    console.log('Invite accepted successfully');
  } catch (error) {
    console.error('Failed to accept invite:', error);
  }
});

Package version

3.2.2

Node.js version

v18.20.3

Operating system

win 11

Priority this issue should have

Low (slightly annoying)

Checklist

Additional Information

No response

002-sans commented 2 months ago

you must have a captcha solver in your code. You can find an example here (captcha solver are not free.)