discord.js-selfbot-v13
discord.js-selfbot-v13 copied to clipboard
DiscordAPIError: invalid-input-response
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
- [X] I have searched the open issues for duplicates.
- [X] I have shared the entire traceback.
- [X] I am using a user token (and it isn't visible in the code).
Additional Information
No response