A Discord selfbot library — Mirore Edition — based on discord.js-selfbot-v13.
Warning
Using a selfbot (user account bot) is against Discord's Terms of Service. Use this library at your own risk.
npm installconst { Client } = require('safeness-mirore-sb');
const client = new Client();
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}`);
});
client.login('YOUR_TOKEN_HERE');- Full discord.js v13 selfbot support
- WebSocket gateway connection
- REST API manager with rate limiting
- Slash Commands & Interactions support
- AntiGroup protection system (Hidden mode)
- All Discord structures (Guild, Channel, Message, User, etc.)
- All Discord managers (GuildManager, MessageManager, etc.)
- Presence & Activity support (RichPresence, SpotifyRPC, CustomStatus)
- RemoteAuth / QR Login support
- Relationship & Friend management
- Billing manager
- User settings manager
- Sharding support
src/
├── client/
│ ├── BaseClient.js
│ ├── Client.js
│ ├── WebhookClient.js
│ ├── actions/
│ ├── voice/
│ └── websocket/
├── errors/
├── managers/
├── rest/
├── sharding/
├── structures/
│ └── interfaces/
└── util/
Modified and maintained as safeness-mirore-sb by kirobotdev.