Tools

Gateway Intent Calculator

Select Discord gateway intents and compute the numeric value for your bot configuration.

Intents

Computed Value

0

decimal

Hexadecimal

0x00000000

Binary

00000000000000000000000000

Code Snippet

const { Client, GatewayIntentBits } = require('discord.js');

const client = new Client({
  intents: 0, // numeric intent value
});

client.login('YOUR_BOT_TOKEN');

Frequently Asked Questions