Intent question- paginatedmessage
Does paginated message require any intents or am I fine with just app command and bot scope?
7 Replies
Solution
you need Guilds intent if you want the command to work in servers
Thank you, that explains it. Is there a slash only one that would work without any intents?
For making an intent less bot and just relying on the payload supplied by the request
sounds like you're looking for http only bots which DiscordJS and subsequently Sapphire do not do
Ah okay I see, I was thinking gateway but with no intents just with application intents
but it's not a problem for my use-case as I do want a gateway bot
you cannot have a gateway bot with no intents at all. You need at least guilds intent if you want the bot to be usable in servers
but do not confuse intents with privileged intents (message content, presence, etc)
the guild intent is entirely free to have and will work just fine for slashy only bots
I linked @Dragonite 's code after all
yeah I understand, I will take a look at the code.
Thank you