2022-05-06 16:18:33 +00:00
|
|
|
{"meta":{"generator":"0.11.1","format":20,"date":1651853522558},"custom":{"general":{"name":"General","files":{"welcome":{"name":"Welcome","type":"md","content":"<div align=\"center\">\r\n <br />\r\n <p>\r\n <a href=\"https://discord.js.org\"><img src=\"https://discord.js.org/static/logo.svg\" width=\"546\" alt=\"discord.js\" /></a>\r\n </p>\r\n <br />\r\n <p>\r\n <a href=\"https://discord.gg/djs\"><img src=\"https://img.shields.io/discord/222078108977594368?color=5865F2&logo=discord&logoColor=white\" alt=\"Discord server\" /></a>\r\n <a href=\"https://www.npmjs.com/package/discord.js\"><img src=\"https://img.shields.io/npm/v/discord.js.svg\" alt=\"npm version\" /></a>\r\n <a href=\"https://www.npmjs.com/package/discord.js\"><img src=\"https://img.shields.io/npm/dt/discord.js.svg\" alt=\"npm downloads\" /></a>\r\n <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>\r\n </p>\r\n</div>\r\n\r\n## About\r\n\r\n- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.\r\n\r\n\r\n<div align=\"center\">\r\n <p>\r\n <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>\r\n <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>\r\n <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>\r\n </p>\r\n</div>\r\n\r\n### <strong>I don't take any responsibility for blocked Discord accounts that used this module.</strong>\r\n### <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>\r\n\r\n## <strong>[1. Document Website (recommend)](https://discordjs-self-v13.cf)</strong>\r\n\r\n### <strong>[2. Document but Markdown :)](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/DOCUMENT.md)</strong>\r\n### <strong>[3. Document but Wiki :v](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/wiki)</strong>\r\n### <strong>[Risky actions](https://github.com/Merubokkusu/Discord-S.C.U.M/issues/66)</strong>\r\n\r\n## Checklist\r\n- [x] Send + receive messages with Attachment, Embed (WebEmbed), etc.\r\n- [x] Setting Discord App (Missing a lot of functions)\r\n- [X] Requests (add friends, join guilds, etc.)\r\n- [X] Profile Editing (Name, Status, Avatar, Bio, Rich-Presence, etc.)\r\n- [X] Interactions (slash commands, buttons, etc.)\r\n- [X] Voice Channel (Join, Leave, Speak, etc.)\r\n- [ ] Improve documentation (maybe)\r\n- [ ] Add more guild http api wraps\r\n- [ ] Audio / Video call \r\n- [ ] Everything\r\n\r\n## Installation\r\n\r\n**Node.js 16.6.0 or newer is required**\r\n\r\n```sh-session\r\nnpm install discord.js-selfbot-v13@latest\r\n```\r\n## Example\r\n\r\n```js\r\nconst { Client } = require('discord.js-selfbot-v13');\r\nconst client = new Client(); // Intents and Partials are already set so you don't have to define them\r\n\r\nclient.on('ready', async () => {\r\n console.log(`${client.user.username} is ready!`);\r\n})\r\n\r\nclient.login('token');\r\n```\r\n\r\n<strong>Github Repo (Play Youtube music) [Here](https://github.com/aiko-chan-ai/Selfbot-Example)</strong>\r\n\r\n## Get Token ?\r\n\r\n<strong>Copy code to console Discord [Ctrl + Shift + I]</strong>\r\n\r\n```js\r\nwindow.webpackChunkdiscord_app.push([\r\n [Math.random()],\r\n {},\r\n req => {\r\n for (const m of Object.keys(req.c)\r\n .map(x => req.c[x].exports)\r\n .filter(x => x)) {\r\n if (m.default && m.default.getToken !== undefined) {\r\n return copy(m.default.getToken());\r\n }\r\n if (m.getToken !== undefined) {\r\n return copy(
|