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
774 stars 164 forks source link

DiscordAPIError: invalid-input-response #1193

Closed aaronmansfield5 closed 2 months ago

aaronmansfield5 commented 3 months ago

Which package has the bugs?

The core library

Issue description

When accepting the invite it isn't solving the captchas? It does this for all tokens, even new ones, I am using 2captcha, which is topped up, and my Proxy service is IPRoyal; it's on a USA proxy

Code sample

await client.fetchInvite(link).then(async (invite) => {
                        await client.acceptInvite(link).then(() => {
                            console.log(`${colours.white}[${colours.green}SUCCESS${colours.white}]: Bot ${botToken.split(".")[0]} has successfully joined guild ${invite.guild.name} #${invite.guild.id}${colours.reset}`);
                        }).catch(err => {
                            if(debug) {
                                console.error(err)
                            }
                            console.error(`${colours.white}[${colours.red}ERROR${colours.white}]: Failed to join discord.gg/${link}${colours.reset}`);
                            i--;
                        })
                    }).catch(err => {
                        if(debug) {
                            console.error(err)
                        }
                        console.error(`${colours.white}[${colours.red}ERROR${colours.white}]: discord.gg/${link} is invalid${colours.reset}`);
                        i--;
                    })

Package version

3.1.3 & 3.1.4

Node.js version

v 21.1.0

Operating system

Windows

Priority this issue should have

High (immediate attention needed)

Checklist

Additional Information

No response