Tools
Gateway Intent Calculator
Select Discord gateway intents and compute the numeric value for your bot configuration.
Intents
Computed Value
0
decimal
Hexadecimal
0x00000000Binary
00000000000000000000000000Code Snippet
const { Client, GatewayIntentBits } = require('discord.js');
const client = new Client({
intents: 0, // numeric intent value
});
client.login('YOUR_BOT_TOKEN');