discord.js-selfbot-v13/README.md

127 lines
5.0 KiB
Markdown
Raw Normal View History

2022-03-19 10:37:45 +00:00
<div align="center">
<br />
<p>
<a href="https://discord.js.org"><img src="https://discord.js.org/static/logo.svg" width="546" alt="discord.js" /></a>
</p>
<br />
<p>
2022-03-19 10:52:50 +00:00
<a href="https://discord.gg/djs"><img src="https://img.shields.io/discord/222078108977594368?color=5865F2&logo=discord&logoColor=white" alt="Discord server" /></a>
2022-04-27 03:51:39 +00:00
<a href="https://www.npmjs.com/package/discord.js"><img src="https://img.shields.io/npm/v/discord.js.svg" alt="npm version" /></a>
<a href="https://www.npmjs.com/package/discord.js"><img src="https://img.shields.io/npm/dt/discord.js.svg" alt="npm downloads" /></a>
2022-04-17 10:30:47 +00:00
<a href="https://github.com/discordjs/discord.js/actions"><img src="https://github.com/discordjs/discord.js/actions/workflows/test.yml/badge.svg" alt="Tests status" /></a>
2022-03-19 10:37:45 +00:00
</p>
</div>
## About
2022-11-12 11:11:30 +00:00
<strong>Welcome to `discord.js-selfbot-v13@v2.9`, based on `discord.js@13.12`</strong>
2022-05-14 08:06:15 +00:00
- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.
2022-03-19 10:37:45 +00:00
<div align="center">
<p>
2022-04-27 03:51:39 +00:00
<a href="https://www.npmjs.com/package/discord.js-selfbot-v13"><img src="https://img.shields.io/npm/v/discord.js-selfbot-v13.svg" alt="npm version" /></a>
<a href="https://www.npmjs.com/package/discord.js-selfbot-v13"><img src="https://img.shields.io/npm/dt/discord.js-selfbot-v13.svg" alt="npm downloads" /></a>
2022-04-17 10:30:47 +00:00
<a href="https://github.com/aiko-chan-ai/discord.js-selfbot-v13/actions"><img src="https://github.com/aiko-chan-ai/discord.js-selfbot-v13/actions/workflows/lint.yml/badge.svg" alt="Tests status" /></a>
</p>
</div>
2022-03-19 10:52:50 +00:00
### <strong>I don't take any responsibility for blocked Discord accounts that used this module.</strong>
### <strong>Using this on a user account is prohibited by the [Discord TOS](https://discord.com/terms) and can lead to the account block.</strong>
2022-03-19 10:37:45 +00:00
2022-05-16 14:07:27 +00:00
### <strong>[Document Website (recommend)](https://discordjs-self-v13.netlify.app/)</strong>
### <strong>[Extend Document (With Example)](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/tree/main/Document)</strong>
## Features (User)
- [x] Message: Embeds (WebEmbed)
2022-08-17 10:49:58 +00:00
- [x] User: Settings, Status, Activity, DeveloperPortal, RemoteAuth, etc.
- [X] Guild: Fetch Members, Join / Leave, Roles, Channels, etc.
- [X] Interactions: Slash Commands, Click Buttons, Menu (classic), Modal, Context Menu, etc.
2022-08-17 10:49:58 +00:00
- [X] Voice: Connect, Disconnect, Mute, Deafen, Call, Play Audio, etc.
- [X] Captcha Handler
2022-05-14 08:06:15 +00:00
- [X] Documentation
- [ ] Video stream
- [ ] Everything
### Optional packages
- [2captcha](https://www.npmjs.com/package/2captcha) for solving captcha (`npm install 2captcha`)
2022-03-19 10:37:45 +00:00
## Installation
**Node.js 16.6.0 or newer is required**
2022-03-19 10:37:45 +00:00
```sh-session
npm install discord.js-selfbot-v13@latest
2022-03-19 10:37:45 +00:00
```
2022-03-19 10:37:45 +00:00
## Example
```js
2022-03-19 10:52:50 +00:00
const { Client } = require('discord.js-selfbot-v13');
2022-11-12 11:11:30 +00:00
const client = new Client({
// See other options here
// https://discordjs-self-v13.netlify.app/#/docs/docs/main/typedef/ClientOptions
// All partials are loaded automatically
});
2022-03-19 10:37:45 +00:00
client.on('ready', async () => {
console.log(`${client.user.username} is ready!`);
2022-03-19 10:37:45 +00:00
})
client.login('token');
```
## Get Token ?
2022-10-03 12:30:49 +00:00
<strong>Run code (Discord Console - [Ctrl + Shift + I])</strong>
```js
2022-05-06 16:18:33 +00:00
window.webpackChunkdiscord_app.push([
[Math.random()],
{},
req => {
for (const m of Object.keys(req.c)
.map(x => req.c[x].exports)
.filter(x => x)) {
if (m.default && m.default.getToken !== undefined) {
return copy(m.default.getToken());
}
if (m.getToken !== undefined) {
return copy(m.getToken());
}
}
},
]);
console.log('%cWorked!', 'font-size: 50px');
console.log(`%cYou now have your token in the clipboard!`, 'font-size: 16px');
```
2022-03-27 12:29:02 +00:00
Credit: <img src="https://cdn.discordapp.com/emojis/889092230063734795.png" alt="." width="16" height="16"/> [<strong>hxr404</strong>](https://github.com/hxr404/Discord-Console-hacks)
2022-03-19 10:52:50 +00:00
2022-06-26 06:54:43 +00:00
## Contributing
2022-03-19 10:52:50 +00:00
2022-03-20 03:47:44 +00:00
- Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the
2022-03-19 10:52:50 +00:00
[documentation](https://discord.js.org/#/docs).
2022-03-20 03:47:44 +00:00
- See [the contribution guide](https://github.com/discordjs/discord.js/blob/main/.github/CONTRIBUTING.md) if you'd like to submit a PR.
2022-03-19 10:52:50 +00:00
## Need help?
2022-11-02 15:23:47 +00:00
Contact me in Discord: [Elysia#1782](https://discord.com/users/721746046543331449)
2022-11-27 06:53:43 +00:00
> **Note**
> Because too many people open DMs with me, I won't support via Discord
2022-11-12 11:11:30 +00:00
Github Discussion: [Here](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/discussions)
## Credits
2022-05-06 16:18:33 +00:00
- [Discord.js](https://github.com/discordjs/discord.js)
- [Discord S.C.U.M](https://github.com/Merubokkusu/Discord-S.C.U.M)
- [Discord Console Hack](https://github.com/hxr404/Discord-Console-hacks)
2022-03-20 07:25:53 +00:00
## <strong><img src="https://cdn.discordapp.com/attachments/820557032016969751/952436539118456882/flag-vietnam_1f1fb-1f1f3.png" alt="." width="20" height="20"/> Vietnamese</strong>
2022-05-06 16:18:33 +00:00
Được tạo bởi người Việt Nam, dựa trên Discord API v9, đây là một trong những module selfbot được hỗ trợ tốt nhất.
2022-06-13 16:53:43 +00:00
# From Github with love 💕