DM rate limit
I'm writing a bot that will send notifications to users about events in the game. They are different for each user. I'm expecting ~60 users. Sometimes there will be no notifications, sometimes there will be one every 5-10 seconds. If I do this via direct messages, will it fit into the rate limit?
3 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OPThe best way would be that user pass through an interaction process to create at least a DM channel betweem the bot and user.
Elsewise you might get flag from the anti-spam and get block for sometime.
Otherwise it will fall in the 50 global.
Thanks