Ratelimit question.

Does discord js check the rate limit? For example, if I want to do this code:
while(true) {
interaction.editReply('something')
}
while(true) {
interaction.editReply('something')
}
5 Replies
d.js toolkit
d.js toolkit14mo ago
• What's your exact discord.js npm list discord.js and node node -v version? • Post the full error stack trace, not just the top part! • Show your code! • Explain what exactly your issue is. • Not a discord.js issue? Check out #useful-servers.
Unknown User
Unknown User14mo ago
Message Not Public
Sign In & Join Server To View
d.js docs
d.js docs14mo ago
Tag suggestion for @sex_instructor228: Rate limits are determined based on the IP address of the sender. • If your bot shares its IP with other bots it will share their rate limits. • This is a common caveat with shared hosting providers and free plans!
Unknown User
Unknown User14mo ago
Message Not Public
Sign In & Join Server To View
LEON
LEON14mo ago
thanks