diff options
author | turret <turret@duck.com> | 2024-03-30 21:22:16 -0500 |
---|---|---|
committer | turret <turret@duck.com> | 2024-03-30 21:22:16 -0500 |
commit | bbc67a79e34b3ff4ba044b1d0abad1cd022cd6ab (patch) | |
tree | 74ef9174fe523e1f62d9d736c30d58e4f3ab57be | |
parent | 2fb619ed6eac19afd7ed3b2c7baa4adc253f418e (diff) | |
download | discord-bot-skeleton-bbc67a79e34b3ff4ba044b1d0abad1cd022cd6ab.tar.gz discord-bot-skeleton-bbc67a79e34b3ff4ba044b1d0abad1cd022cd6ab.tar.bz2 discord-bot-skeleton-bbc67a79e34b3ff4ba044b1d0abad1cd022cd6ab.zip |
bits: add intents
-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) |