13.4.3 • Published 2 years ago

discord.js-crossy v13.4.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

UNDER CONSTRUCTION

A fork of discord.js that supports selfbots, with more features.

Installation

Node.js 16.6.0 or newer is required.

npm install discord.js-crossy
yarn add discord.js-crossy
pnpm add discord.js-crossy
  • Note: Automating user accounts is against the Discord ToS. Do so at your own risk.

Key Features

  • Self-bots support
  • Normal bots support
  • Backwards compatible with original library discord.js.

Examples

Signing in syntax: Client.login(token: string, self_bot?: boolean)

Example of signing in with self-bots

const Discord = require("discord.js-crossy");
let client = new Discord.Client();
client.login("TOKEN", true);

Example of signing in with normal bots

const Discord = require("discord.js-crossy");
let client = new Discord.Client();
client.login("TOKEN", false);

Joining server

await client.guilds.join('hX7shs')

Todo

  • Websocket connection.
  • Auto Client presence setting at startup.
  • Fetch members for self-bots.
  • Fetch messages for self-bots.
  • Unlimited channel message fetching.
  • User Relationships.
  • User notes.
  • Manage cache.
  • Joining guilds.
  • Adding member subscriptions.
  • Adding channel subscriptions.