discord.js-crossy
v13.4.3
Published
Discord.js v13 with selfbots support
Downloads
7
Maintainers
Readme
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
- [x] Websocket connection.
- [x] Auto Client presence setting at startup.
- [x] Fetch members for self-bots.
- [x] Fetch messages for self-bots.
- [x] Unlimited channel message fetching.
- [ ] User Relationships.
- [ ] User notes.
- [ ] Manage cache.
- [x] Joining guilds.
- [ ] Adding member subscriptions.
- [ ] Adding channel subscriptions.