A unofficial discord.js fork for creating selfbots [Based on discord.js v13]

Overview

discord.js


Discord server npm version npm downloads Tests status

About

  • discord.js-selfbot-v13 is a Node.js module that allows user accounts to interact with the Discord API v9.

npm version npm downloads

I don't take any responsibility for blocked Discord accounts that used this module.

Using this on a user account is prohibited by the Discord TOS and can lead to the account block.

Feature + Example Code

Risky actions

Checklist

  • Send + receive messages with Attachment, Embed (WebEmbed), etc.
  • Setting Discord App (Missing a lot of functions)
  • Requests (add friends, join guilds, etc.)
  • Profile Editing (Name, Status, Avatar, Bio, Rich-Presence, etc.)
  • Interactions (slash commands, buttons, etc.)
  • Voice Channel (Join, Leave, Speak, etc.)
  • Improve documentation (maybe)
  • Add more guild http api wraps
  • Audio / Video call
  • Everything

Installation

Node.js 16.6.0 or newer is required

npm install discord.js-selfbot-v13@latest

Example

const { Client } = require('discord.js-selfbot-v13');
const client = new Client(); // Intents and Partials are already set so you don't have to define them

client.on('ready', async () => {
  console.log(`${client.user.username} is ready!`);
})

client.login('token');

Github Repo (Play Youtube music) Here

Get Token ?

Copy code to console Discord [Ctrl + Shift + I]

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")

Credit: . hxr404

Selfbot feature ?

Links [Discord.js]

Contributing [Discord.js]

  • Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the documentation.
  • See the contribution guide if you'd like to submit a PR.

Need help?

Contact me in Discord: Shiraori#1782

Credits

. Vietnamese

  • Tóm lại là module này dùng Discord.js v13 , API v9 nên chưa chết sớm đâu, cứ dùng đi =))
Comments
  • MISSING_PERMISSIONS in .addbot

    MISSING_PERMISSIONS in .addbot

    Which package has the bugs?

    The core library

    Issue description

    when i try to add a bot to the server it shows Error [MISSING_PERMISSIONS]: You can't do this action [Missing Permission(s): ADMINISTRATOR]

    Code sample

    const discord = require("discord.js-selfbot-v13");
    const client = new discord.Client();
    
    client.login("token")
    
    client.options.captchaService = "nopecha";
    client.options.key = "key";
    
    client.on("ready", () => {
        console.log(`${client.user.tag} ready`);
        const guild = client.guilds.cache.get("server_id")
        console.log(guild)
        guild.addBot("bot_id", "8").then(() => console.log("Added bot to server"));
    });
    

    Package version

    2.9.16

    Node.js version

    v16.18.1

    Operating system

    linux

    Priority this issue should have

    Medium (should be fixed soon)

    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

    i tried with administrator and even ownership with the same issue

    bug 
    opened by Turkidev 27
  • Selfbot DM Problem

    Selfbot DM Problem

    Issue description

    Hi, I'm trying to make a DM ALL, only issue is that it does send a message to the user when you have at least one message already sent to him.

    If you don't have at least one message sent by you ( manually ) with the person, It will open the DM but send nothing (even with a setTimeout())

    Code sample

    async function dmEveryone(message, toDM) {
    	let members = await message.guild.members.fetch({ force: true });
    	for (const [key, value] of members.entries()) {
    		message.guild.members.cache.get(key).send("Test").catch(() => console.log("error"))
    	  }
    }
    

    Package version

    Newest

    Node.js version

    16.9.1

    Operating system

    Windows

    Priority this issue should have

    Low (slightly annoying)

    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

    bug Fixed 
    opened by ByLife 24
  • Incoming or outgoing cache is empty

    Incoming or outgoing cache is empty

    Which package has the bugs?

    The core library

    Issue description

    I'm trying to get friend list, incoming friends and outgoing but all of them seem to be empty to me even though I am sure I have some. Stuff like sending friend request works fine for me. I appreciate any help how to get these caches. I (Kuba) added you (aiko-chan) on discord

    Code sample

    const { Client, Message } = require('discord.js-selfbot-v13');
    const client = new Client({checkUpdate: false});
    const config = require('./config.json')
    
    
    client.on('ready', async () => {
      
    
      console.log(client.relationships.outgoingCache);
    
    
    })
    
    client.login(`Fake token`);
    

    Package version

    2.8.6

    Node.js version

    19

    Operating system

    No response

    Priority this issue should have

    Low (slightly annoying)

    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

    bug 
    opened by ewho2137 22
  • Connected Accounts always are an empty array

    Connected Accounts always are an empty array

    Which package has the bugs?

    The core library

    Issue description

    1. I am with the version 2.4.12
    2. I get the users from an specific guild
    3. Then I fetch the user
    4. Then when I log the user I can't see the connected Accounts since the array is always empty

    Code sample

    const { Client } = require("discord.js-selfbot-v13");
    const client = new Client({
      checkUpdate: false,
    }); // All partials are loaded automatically
    
    client.on("ready", async () => {
      console.log(`${client.user.username} is ready!`);
      var guilds = await client.guilds.cache.map((g) => g.id);
      guilds.forEach(async (g) => {
        var guild = await client.guilds.cache.get(g);
        var members = await guild.members.fetch();
        members = members.filter((m) => !m.user.bot);
        members.forEach(async (m) => {
          if (m.user.bot) return;
          var user = await client.users.fetch(m.user.id);
          console.log(user);
        });
        console.log(`${guild.name} has ${members.size} members`);
      });
    });
    
    client.login(
      "Mytoken"
    );
    

    Package version

    2.4.12

    Node.js version

    16.13

    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

    bug 
    opened by MrlolDev 18
  • Slash Commands

    Slash Commands

    Issue description

    Getting an error while trying to use slash commands

    Code sample

    client.on("messageCreate", async (message) => {
      if (message.content === "a") {
        await message.guild.searchInteraction({
          query: "help",
          botId: "302050872383242240",
        });
        message.channel.sendSlash("302050872383242240", "help");
      }
    });
    

    Package version

    2.3.2

    Node.js version

    16.14.0

    Operating system

    Windows

    Priority this issue should have

    Medium (should be fixed soon)

    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

    Error

      if (!msg) throw new Error(`An invalid error message key was used: ${key}.`);
                      ^
    
    Error: An invalid error message key was used: Command bump is not found
    Debug:
    + botId: 302050872383242240
    + args: .
        at message (C:\Users\someone\Desktop\Desktop\Coding stuff\Node\slash selfbot\node_modules\discord.js-selfbot-v13\src\errors\DJSError.js:40:19)
        at new DiscordjsError (C:\Users\someone\Desktop\Desktop\Coding stuff\Node\slash selfbot\node_modules\discord.js-selfbot-v13\src\errors\DJSError.js:16:13)
        at TextChannel.sendSlash (C:\Users\someone\Desktop\Desktop\Coding stuff\Node\slash selfbot\node_modules\discord.js-selfbot-v13\src\structures\interfaces\TextBasedChannel.js:409:13)
        ```
    bug Fixed 
    opened by xHaruke 15
  • Button clicking issue

    Button clicking issue

    Hey,whenever the bot have some random delay trying to click button and in case message is edited and there is no button module returns error MESSAGE_NO_COMPONENTS.Uding try catch finnaly doesnt work anr adding delay before checking for message doesnt workzonly way is updating module to check does button still exists(discum is doing this just fine) or skipping that one error and completly ignoring it.

    bug Fixed 
    opened by ChiggaTheNicca 14
  • client.password and client.options.password returns null

    client.password and client.options.password returns null

    Which package has the bugs?

    The core library

    Issue description

    i don't can get my password.

    client.options.password //null
    client.password //null
    

    Code sample

    No response

    Package version

    latest - 2.9.12

    Node.js version

    v16 LTS

    Operating system

    No response

    Priority this issue should have

    Medium (should be fixed soon)

    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

    bug 
    opened by Weredok 13
  • Slash Commands

    Slash Commands

    Issue description

    I am just trying to send an application command

    Code sample

    client.on("messageCreate", async (message) => {
      if (message.content === "a") {
        await message.guild.searchInteraction({
          query: "help",
          botId: "302050872383242240",
        });
        message.channel.sendSlash("302050872383242240", "help");
      }
    });
    

    Package version

    2.2.0

    Node.js version

    16.14.0

    Operating system

    windows

    Priority this issue should have

    Medium (should be fixed soon)

    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

    error

    C:\Users\someone\node_modules\discord.js-selfbot-v13\src\client\websocket\handlers\GUILD_APPLICATION_COMMANDS_UPDATE.js:13 client.users.cache.get(data.application_commands[0].application_id).applications.cache, ^

    TypeError: Cannot read properties of undefined (reading 'applications') at Object.module.exports [as GUILD_APPLICATION_COMMANDS_UPDATE] (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\src\client\websocket\handlers\GUILD_APPLICATION_COMMANDS_UPDATE.js:13:72) at WebSocketManager.handlePacket (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketManager.js:346:31) at WebSocketShard.onPacket (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:478:22)
    at WebSocketShard.onMessage (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:317:10)
    at WebSocket.onMessage (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\node_modules\ws\lib\event-target.js:199:18) at WebSocket.emit (node:events:520:28) at Receiver.receiverOnMessage (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\node_modules\ws\lib\websocket.js:1169:20)
    at Receiver.emit (node:events:520:28) at Receiver.dataMessage (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\node_modules\ws\lib\receiver.js:528:14) at Receiver.getData (C:\Users\arvind kumar\node_modules\discord.js-selfbot-v13\node_modules\ws\lib\receiver.js:446:17)

    bug Fixed 
    opened by xHaruke 13
  • How do you capture the response of

    How do you capture the response of "sendSlash"?

    Which package is the feature request for?

    The documentation

    Feature

    Capture the response of sendSlash?

    Ideal solution or implementation

    Unsure

    Alternative solutions or implementations

    No response

    Other context

    No response

    Feature 
    opened by archubbuck 12
  • channel.messages.fetch(messageId) throw 'Missing Access'

    channel.messages.fetch(messageId) throw 'Missing Access'

    Which package has the bugs?

    The core library

    Issue description

    channel.messages.fetch(messageId) throw 'Missing Access'

    Some reason to use another endpoint https://github.com/aiko-chan-ai/discord.js-selfbot-v13/commit/91b5be5a88fe16021a0389b0072bfa0e952b4ecd#commitcomment-70292157

    Code sample

    channel.messages.fetch(messageId)
    // Request /guilds/*/messages/search?channel_id=*&max_id=*&min_id=*
    // return 403 with 'Missing Access'
    
    channel.messages.fetch({limit:1, around: messageId})
    // Will request as /channels/*/messages?around=msg_id&limit=1
    // Works fine
    

    Package version

    2.3.74

    Node.js version

    16.13.1

    Operating system

    Win 10

    Priority this issue should have

    Medium (should be fixed soon)

    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

    bug 
    opened by websharik 12
  • Just a question

    Just a question

    Which package has the bugs?

    The documentation

    Issue description

    I have a question, I just see that: image

    but how do I must use that for invite a bot in a guild ? (url)

    Code sample

    ** **
    

    Package version

    2.9.7

    Node.js version

    18.12.1

    Operating system

    Win34

    Priority this issue should have

    Low (slightly annoying)

    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

    And can you add a label for question ?

    bug 
    opened by 002-sans 11
  • Disable cache

    Disable cache

    const client = new Discord.Client({
        makeCache: Discord.Options.cacheWithLimits({
            ApplicationCommandManager: 0,
            BaseGuildEmojiManager: 0,
            ChannelManager: 0,
            GuildBanManager: 0,
            GuildChannelManager: 0,
            GuildInviteManager: 0,
            GuildMemberManager: 0,
            GuildStickerManager: 0,
            MessageManager: 0,
            PermissionOverwriteManager: 0,
            PresenceManager: 0,
            ReactionManager: 0,
            ReactionUserManager: 0,
            RoleManager: 0,
            StageInstanceManager: 0,
            ThreadManager: 0,
            ThreadMemberManager: 0,
            UserManager: 0,
            VoiceStateManager: 0
        }),
    });
    
    documentation 
    opened by aiko-chan-ai 0
  • Server Boosting

    Server Boosting

    Which package is the feature request for?

    The core library

    Feature

    Functions for boosting guilds and buying boosts

    Ideal solution or implementation

    client
        .fetchInvite(guildInvite)
            .then(async (invite) => {
                const guild = await invite.acceptInvite(true);
                let numberOfBoosts = 2;
                guild
                    .boost(numberOfBoosts) // Try to boost the server 2 times
                    .then((g) => {
                        console.log(
                            `Boosted ${g.name} ${numberOfBoosts} times. Now the server has ${g.premiumSubscriptionCount} boosts!`
                        );
                    }) // Successfully boosted the guild 2 times
                    .catch((err) => {
                        console.error(err);
                    }); // Not enough aviable boosts on the account
            })
            .catch(console.error);
    

    Returns Discord.Guild Number of boosts is an Number and > 1 Throws an error if you don't have enough boosts

    Alternative solutions or implementations

    const boosts = client.user.boosts;
    console.log(boosts.catch.size); // Logs the users already purchased boosts (2)
    const numberOfBoostsToBuy = 1;
    boosts.purchase(numberOfBoostsToBuy, {
        cardNumber: "0123456789012345",
        cardExpiration: "01/69",
        cvc: 420,
        name: "Andrew Tate",
        billing: {
            country: "Romania",
            adress: "123 Discord Drive",
            adress2?: "Apt, Ste, Dimension",
            city: "Bucharest",
            state: "IDK",
            postCode: 69420,
        },
    });
    boosts.use(guildId, numberOfBoosts);
    boosts.transfer(fromGuildId, toGuildId, numberOfBoosts);
    

    client.user.boosts returns Discord.BoostManager or smt the rest is pretty self explanatory

    Other context

    No response

    Feature 
    opened by BajekekButLost 5
  • Add support for http/s proxies with auth

    Add support for http/s proxies with auth

    Which package is the feature request for?

    The core library

    Feature

    Add some kind of support for http/s proxies with username & password because "proxy-agent" does not support that based on their docs.

    Ideal solution or implementation

    Maybe using https://www.npmjs.com/package/https-proxy-agent or something like that

    Alternative solutions or implementations

    No response

    Other context

    No response

    Feature 
    opened by DemonMartin 6
  • Add card or purchase nitro.

    Add card or purchase nitro.

    Which package is the feature request for?

    The core library

    Feature

    Please add functions from the billing api of discord like view cards, add cards, previous transactions,and functions like purchasing nitro gift or subscribing to nitro.

    Ideal solution or implementation

    Please add functions from the billing api of discord like view cards, add cards, previous transactions,and functions like purchasing nitro gift or subscribing to nitro.

    Alternative solutions or implementations

    No response

    Other context

    No response

    Feature 
    opened by Titan3301 2
  • Channel Join

    Channel Join

    Which package is the feature request for?

    The core library

    Feature

    Does a channel join method exist because I saw the documentation ( especially the ThreadChannel tab ) and I saw nothing about a channel.join() method to make the selfbot join a channel

    Ideal solution or implementation

    Add a method for .join() for the channel would be excellent

    Alternative solutions or implementations

    No response

    Other context

    No response

    Feature 
    opened by ByLife 4
  • chore(deps): bump axios from 1.1.3 to 1.2.2

    chore(deps): bump axios from 1.1.3 to 1.2.2

    Bumps axios from 1.1.3 to 1.2.2.

    Release notes

    Sourced from axios's releases.

    1.2.2

    [1.2.2] - 2022-12-29

    Fixed

    • fix(ci): fix release script inputs #5392
    • fix(ci): prerelease scipts #5377
    • fix(ci): release scripts #5376
    • fix(ci): typescript tests #5375
    • fix: Brotli decompression #5353
    • fix: add missing HttpStatusCode #5345

    Chores

    • chore(ci): set conventional-changelog header config #5406
    • chore(ci): fix automatic contributors resolving #5403
    • chore(ci): improved logging for the contributors list generator #5398
    • chore(ci): fix release action #5397
    • chore(ci): fix version bump script by adding bump argument for target version #5393
    • chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 #5342
    • chore(ci): GitHub Actions Release script #5384
    • chore(ci): release scripts #5364

    Contributors to this release

    v1.2.1

    [1.2.1] - 2022-12-05

    Changed

    • feat(exports): export mergeConfig #5151

    Fixed

    • fix(CancelledError): include config #4922
    • fix(general): removing multiple/trailing/leading whitespace #5022
    • fix(headers): decompression for responses without Content-Length header #5306
    • fix(webWorker): exception to sending form data in web worker #5139

    Refactors

    • refactor(types): AxiosProgressEvent.event type to any #5308
    • refactor(types): add missing types for static AxiosError.from method #4956

    Chores

    • chore(docs): remove README link to non-existent upgrade guide #5307
    • chore(docs): typo in issue template name #5159

    Contributors to this release

    ... (truncated)

    Changelog

    Sourced from axios's changelog.

    [1.2.2] - 2022-12-29

    Fixed

    • fix(ci): fix release script inputs #5392
    • fix(ci): prerelease scipts #5377
    • fix(ci): release scripts #5376
    • fix(ci): typescript tests #5375
    • fix: Brotli decompression #5353
    • fix: add missing HttpStatusCode #5345

    Chores

    • chore(ci): set conventional-changelog header config #5406
    • chore(ci): fix automatic contributors resolving #5403
    • chore(ci): improved logging for the contributors list generator #5398
    • chore(ci): fix release action #5397
    • chore(ci): fix version bump script by adding bump argument for target version #5393
    • chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 #5342
    • chore(ci): GitHub Actions Release script #5384
    • chore(ci): release scripts #5364

    Contributors to this release

    [1.2.1] - 2022-12-05

    Changed

    • feat(exports): export mergeConfig #5151

    Fixed

    • fix(CancelledError): include config #4922
    • fix(general): removing multiple/trailing/leading whitespace #5022
    • fix(headers): decompression for responses without Content-Length header #5306
    • fix(webWorker): exception to sending form data in web worker #5139

    Refactors

    • refactor(types): AxiosProgressEvent.event type to any #5308
    • refactor(types): add missing types for static AxiosError.from method #4956

    Chores

    • chore(docs): remove README link to non-existent upgrade guide #5307
    • chore(docs): typo in issue template name #5159

    Contributors to this release

    ... (truncated)

    Commits
    • 8ea4324 chore(docs): added latest release notes
    • 45c4948 chore: build new version
    • 6f74cb1 chore(ci): set conventional-changelog header config; (#5406)
    • 8de391f chore(ci): fix automatic contributors resolving; (#5403)
    • 341f735 chore(ci): improved logging for the contributors list generator;
    • 46085e6 chore(ci): fix release action;
    • f12d01e chore(ci): fix version bump script by adding bump argument for target version;
    • 75217e6 fix(ci): fix release script inputs;
    • c1fc33c chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2
    • 45b29db GitHub Actions Release script; (#5384)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
Releases(2.9.20)
  • 2.9.20(Jan 5, 2023)

    • BillingManager (guild boost)
    • Custom captchaSolver function
    • fix ws Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.9.19...2.9.20
    Source code(tar.gz)
    Source code(zip)
  • 2.9.19(Dec 27, 2022)

    + fix: Discord Ban (invalid headers)
    + fix: acceptInvite not working (invalid captcha data)
    + feat: automod update
    - chore: deprecated resolveAutoArchiveMaxLimit, `MAX` option
    - feat: remove `nopecha`
    - feat: remove Client#updateCookie & ClientOptions#autoCookie
    

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.9.18...2.9.19

    Source code(tar.gz)
    Source code(zip)
  • 2.9.18(Dec 25, 2022)

  • 2.9.17(Dec 22, 2022)

    What's Changed

    • feat: add and remove members from a team by @TheDevYellowy in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/454
    • feat: add the ability to delete a team by @TheDevYellowy in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/455

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.9.16...2.9.17

    Source code(tar.gz)
    Source code(zip)
  • 2.9.16(Dec 20, 2022)

  • 2.9.14(Dec 12, 2022)

  • 2.9.13(Dec 11, 2022)

  • 2.9.12(Dec 5, 2022)

    What's Changed

    • Remove bignumber.js
    • Fix circular dependency
    • Fix: missing activity.name (SpotifyRPC)
    • Refactor code
    • Update UserAgent
    • New captcha solver service

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.9.11...2.9.12

    Source code(tar.gz)
    Source code(zip)
  • 2.9.11(Dec 3, 2022)

  • 2.9.9(Dec 1, 2022)

  • 2.9.8(Nov 28, 2022)

  • 2.9.7(Nov 27, 2022)

    What's Changed

    • fix & docs: description. by @NekoCyan in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/412

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.9.4...2.9.7

    Source code(tar.gz)
    Source code(zip)
  • 2.9.4(Nov 23, 2022)

  • 2.9.2(Nov 19, 2022)

    - fix example (md file)
    + ClientOptions#interactionTimeout
    - fix: unavalible guild when client isReady
    

    What's Changed

    • Doc: fix sleep return type by @hocsinhgioitoan in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/407

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.9.1...2.9.2

    Source code(tar.gz)
    Source code(zip)
  • 2.9.1(Nov 18, 2022)

    What's Changed

    • Docs & Fix: Updates. by @NekoCyan in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/394
    • docs: sleep. by @NekoCyan in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/405

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.9.0...2.9.1

    Source code(tar.gz)
    Source code(zip)
  • 2.9.0(Nov 12, 2022)

  • 2.8.15(Nov 9, 2022)

  • 2.8.14(Nov 8, 2022)

    Finally the captcha handler worked fine 🎁

    Security update
    + Update Discord Version
    + Update WS identify data
    + Fix Captcha Handler
    

    New Method .addBot

    ok 🧛

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.8.13...2.8.14

    Source code(tar.gz)
    Source code(zip)
  • 2.8.13(Nov 6, 2022)

    + SelectMenu v2 support CHANNEL_SELECT
    + fix sendSlash (DM channel)
    - Replace `{type}_SELECT_MENU` > `{type}_SELECT`
    

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.8.12...2.8.13

    Source code(tar.gz)
    Source code(zip)
  • 2.8.12(Nov 5, 2022)

    + SelectMenu v2 (StringSelect, UserSelect, RoleSelect, MentionableSelect, ChannelSelect (not fully))
    + CaptchaHandler (powered by 2captcha) but ...
    - Not used due to account ban issue !!!
    

    What's Changed

    • feat(SelectMenu): SelectMenu v2 by @aiko-chan-ai in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/391

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.8.9...2.8.12

    Source code(tar.gz)
    Source code(zip)
  • 2.8.9(Oct 30, 2022)

    + Add `searchInteraction` (TextBasedChannel)
    + Add `Message Request`
    + Add `setThemeColors` (GuildMember)
    - Remove `searchInteraction` (Guild) (discord deleted)
    

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.8.8...2.8.9

    Source code(tar.gz)
    Source code(zip)
  • 2.8.8(Oct 26, 2022)

    What's Changed

    • Use the ws properties and User-Agent header provided during client initialization for RemoteAuth by @connerdassen in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/378

    New Contributors

    • @connerdassen made their first contribution in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/378

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.8.7...2.8.8

    Source code(tar.gz)
    Source code(zip)
  • 2.8.7(Oct 25, 2022)

  • 2.8.5(Oct 21, 2022)

    What's Changed

    • typing(ClientSettingManager): make right with the structure. & Clean up by @NekoCyan in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/346
    • fix bugs

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.8.0...2.8.5

    Source code(tar.gz)
    Source code(zip)
  • 2.8.0(Oct 9, 2022)

    What's Changed

    • Fix slashCommand of type SUB_COMMAND_GROUP by @xD33m in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/339
    • feat: awaitModal by @aiko-chan-ai in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/343

    New Contributors

    • @xD33m made their first contribution in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/339

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.7.1...2.8.0

    Source code(tar.gz)
    Source code(zip)
  • 2.7.1(Oct 3, 2022)

    What's Changed

    • feat: Guild Forum channel by @aiko-chan-ai in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/334

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.6.16...2.7.1

    Source code(tar.gz)
    Source code(zip)
  • 2.6.16(Sep 28, 2022)

    What's Changed

    • fix(ClientUser): Bio is null by @aiko-chan-ai in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/302

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.6.14...2.6.16

    Source code(tar.gz)
    Source code(zip)
  • 2.6.14(Sep 11, 2022)

  • 2.6.13(Sep 10, 2022)

    What's Changed

    • Update by @aiko-chan-ai in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/297
    • feat: Appliaction by @aiko-chan-ai in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/300

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.6.11...2.6.13

    Source code(tar.gz)
    Source code(zip)
  • 2.6.11(Aug 31, 2022)

    What's Changed

    • refactor(GuildMemberManager): new Fetch method by @aiko-chan-ai in https://github.com/aiko-chan-ai/discord.js-selfbot-v13/pull/290
    + BREAKING CHANGE: GuildMemberManager.fetch No longer returns results from GuildMemberList due to inaccuracies
    - No discord.js v13.11 :v
    

    Add new methods:

    • https://discordjs-self-v13.netlify.app/#/docs/docs/main/class/GuildMemberManager?scrollTo=fetchBruteforce
    • https://discordjs-self-v13.netlify.app/#/docs/docs/main/class/GuildMemberManager?scrollTo=fetchMemberList

    See here: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/FetchGuildMember.md

    Full Changelog: https://github.com/aiko-chan-ai/discord.js-selfbot-v13/compare/2.6.10...2.6.11

    Source code(tar.gz)
    Source code(zip)
Owner
March 7th
Discord: Shiraori#1782
March 7th
v13 butonlu + mongodb'li register botudur. Sadece Merakımdan V13 uğraştım, devamı geleceğini düşünmüyorum. İstek üzerine yapılmıştır

Testleri yapılmıştır. Hiçbir hatası bulunmamaktadır. Starlarınızı bekliyorum. Yapmanız gereken adımlar settings.json dosyasının içindeki idleri doldur

null 1 Dec 20, 2022
A Fully Oriented Whatsapp Bot Based on Chitoge Don't forget to give a star to the repo before fork

NEZUKO : ANIME THEMED WHATSAPP BOT WITH RICH FEATURES A Fully Modular and Efficient Bot Button : If you are deploying normally Button : If you are dep

Toshiro 5 Dec 3, 2022
OptiBOT - My discord.js V13 discord bot.

OptiBOT Just a discord.js v13 bot for my discord server. if you plan to use this bot for your server, dont. This i made this bot just for learning js

PrecisionEXTP 1 Jan 3, 2022
A feature-rich Giveaway Bot For Discord Written In Discord.js v13. Ft. Slash Commands & Buttons. Make Giveaways and…

Giveaway - Discord Bot A feature-rich Giveaway Bot For Discord Written In Discord.js v13. Ft. Slash Commands. Make Giveaways and more..! Explore the d

Chethan Yadav 27 Dec 5, 2022
WhatsApp bot multi device kitagawa-md by FERDIZ AFK plis star repo and Fork

kitagawa-md Base WhatsApp Bot Multi Device NOTE This Script is for everyone, not for Sale Ngejual SC ORI jahanam brader, neraka menunggumu kitagawa-md

FERDI Z-afk 27 Nov 1, 2022
Projenin aktif gelişimini,devamını desteklemek veya teşekkür etmek isterseniz, Yıldız-Fork :D

?? TeslaGame Proje Sahibi: Hüsnü Ehedov Merhaba, TeslaGameV1 Projesi ile Karşınızdayız. Bot 1 Yıldan Fazladır Telegram da Aktif Olarak Kullanıcılara O

Hüsnü Əhədov 7 Sep 13, 2022
WhatsApp Bot With Baileys, Dont forget star & fork

Rhapsody-Bot > pkg update && pkg upgrade > pkg install nodejs yarn ffmpeg imagemagick libwebp sox > git clone https://github.com/DEFF-Y/Rhapsody-Bot

Daffa Yudhistira 6 Nov 15, 2022
whatsapp api to remote your whatsapp device. Support multi device, multi client. Still update to more feature. Please fork, star, donate and share.

Ndalu-wa-client DEPENDENCIES : { "@adiwajshing/baileys": "^4.2.0", "@adiwajshing/keyed-db": "^0.2.4", "axios": "^0.27.2", "body-parser

null 29 Jan 4, 2023
Umut Bayraktar YouTube Özel Discord.js v13 Uyumlu Başvuru Botu Altyapısı, Glitch ve PC Uyumludur!

Discord.js v13 Başvuru Botu Umut Bayraktar Youtube Özel Discord.js v13 Başvuru Botu Altyapısı. Glitch.com'da Kullanacak İseniz .env İsimli Dosyaya Bot

Umut Bayraktar 6 May 31, 2022
An Easy to use and advanced working multiguild Waitingroom Bot written in discord.js v13 without any extra modules.

Multiguild-Waitingroom-v13 An Easy to use and advanced working multiguild Waitingroom Bot written in discord.js v13 without any extra modules. It is m

Tomato6966 17 Dec 11, 2022
Umut Bayraktar Youtube Özel Discord.js v13 Müzik Botu Altyapısı.

Discord.js v13 Müzik Botu Umut Bayraktar Youtube Özel Discord.js v13 Müzik Botu Altyapısı. .env İsimli Dosyaya Bot Tokeninizi Yazın ve Kullanın. Umut

Umut Bayraktar 8 May 31, 2022
Djs-paginate - Simpler discord.js v13 embed pagination tool

djs-paginate Simpler discord.js v13 embed pagination tool inspired by discordjs-button-pagination. Installation npm install @eugabrielsilva/djs-pagina

Gabriel Silva 1 Jan 4, 2022
Skeleton for a discord.js v13 bot written in TS with Slash Command support.

Discord.js v13 Bot Skeleton/Core This repository is a template for creating a Discord bot using Discord.js v13 with Slash Command support. This projec

Derock 6 Nov 2, 2022
Discord.js bot v13. Russian bot

Nutella-bot Discord.js bot v13. Russian bot Бот создан в России, он набирал популярность среди многих серверов. Завоевал 42 тысячи пользователей, и бы

null 6 Jun 5, 2022
A discord.js v13 bot for CreatorHub

CreatorBot A discord.js v13 bot for CreatorHub CreatorHub Discord Server CreatorHub is a growing community of content creators and gamers alike. The m

null 56 Dec 25, 2022
A template for Discord.js V13 w/Webserver

Discord V13 için altyapı: HEROKU gibi hostingler için db dosyasını yedekleyip otomatikmen yeniden alır. Application command desteği Yedek sistemi. Sür

Akif9748 3 Jan 23, 2022
JavaScript / TypeScript templates for Discord.js v13, Slash Commands only!

discord.js-v13-template Slash Command Template Command Handler Events Handler Commands Example JavaScript Template TypeScript Template I will be const

null 10 Nov 15, 2022
Easy-to-use , actively maintained discord bot written in dJS V13 with customizable features

Multi-purpose discord bot Found a bug? Notes There are some modules missing, you can still start the bot but there are some things within the source t

locus 7 Nov 28, 2022
Erela.js & Discord.js@v13 (SLASH COMMAND!)

?? READ THIS NEED USE WITH PREFIX? HERE: >> NanoSpace ?? Short Feature Music System Playlists System Premium System Setup Request System Multi Languag

Nanotect. 44 Jan 1, 2023