n1cat-discord-script-manager
Version:
A Discord.js plugin for dynamic script management and execution
24 lines (21 loc) • 738 B
JavaScript
const { GatewayIntentBits } = require("discord.js");
const intents = [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.DirectMessageReactions,
GatewayIntentBits.GuildMessageTyping,
GatewayIntentBits.DirectMessageTyping,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.GuildInvites,
GatewayIntentBits.GuildModeration,
GatewayIntentBits.GuildScheduledEvents,
GatewayIntentBits.GuildExpressions,
GatewayIntentBits.GuildMessagePolls,
GatewayIntentBits.GuildWebhooks,
];
module.exports = intents;