1.0.2 • Published 5 months ago

fs-selfbot v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

FSSelfbot

Effortlessly gather Discord information using user tokens. (Disclaimer: This violates Discord's Terms of Service and is intended for educational purposes only.)


Disclaimer

Important: Use of this package is strictly at your own risk. Misuse may result in your account being banned or other repercussions. Always ensure compliance with applicable laws and platform rules.


Features

  • Simple integration with your existing bots.
  • Highly configurable with caching options.
  • Extendable via the ForgeScript library.

Installation

npm install fs-selfbot @tryforge/forgescript

Usage

Here is a quick example to get started:

const { FSSelfbot } = require("fs-selfbot");
const { ForgeClient } = require("@tryforge/forgescript");

const client = new ForgeClient({
    intents: [
        "Guilds",
        "MessageContent",
        "GuildMessages",
    ],
    prefixes: ["!", "<@$botID>"],
    extensions: [
        new FSSelfbot({
          userTokens: { 
            user1: "User token",
            user2: "User Token",
            ... 
          }, // An object of user tokens
          cacheDuration: 600000 // Cache lifespan in ms
        })
    ],
})

client.login("bot token");

Options

FSSelfbot Configuration

OptionTypeDescription
userTokensObjectAn object of user tokens.
cacheDurationNumberCache lifespan in milliseconds.

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.


License

This project is licensed under the MIT License. See the LICENSE file for details.

1.0.2

5 months ago

1.0.1

6 months ago

1.0.0

6 months ago