diff options
-rw-r--r-- | include/dbs/bits/intents.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/dbs/bits/intents.h b/include/dbs/bits/intents.h new file mode 100644 index 0000000..0be87ed --- /dev/null +++ b/include/dbs/bits/intents.h @@ -0,0 +1,19 @@ +#define GUILDS (1 << 0) +#define GUILD_MEMBERS (1 << 1) +#define GUILD_MODERATION (1 << 2) +#define GUILD_EMOJIS_AND_STICKERS (1 << 3) +#define GUILD_INTEGRATIONS (1 << 4) +#define GUILD_WEBHOOKS (1 << 5) +#define GUILD_INVITES (1 << 6) +#define GUILD_VOICE_STATES (1 << 7) +#define GUILD_PRESENCES (1 << 8) +#define GUILD_MESSAGES (1 << 9) +#define GUILD_MESSAGE_REACTIONS (1 << 10) +#define GUILD_MESSAGE_TYPING (1 << 11) +#define DIRECT_MESSAGES (1 << 12) +#define DIRECT_MESSAGE_REACTIONS (1 << 13) +#define DIRECT_MESSAGE_TYPING (1 << 14) +#define MESSAGE_CONTENT (1 << 15) +#define GUILD_SCHEDULED_EVENTS (1 << 16) +#define AUTO_MODERATION_CONFIGURATION (1 << 20) +#define AUTO_MODERATION_EXECUTION (1 << 21) |