Discord Rate Limit for Channel Creation

Hey guys! I'm working on a discord tool where some users would be able create a template (template i mean the channels structure and roles, perms etc) and other users would be able setup new servers using these preset templates. I have a concern about rate limits. Does limits apply to bot itself or server? For example if I have 100 members that would like to copy a template with 20 channels, it will be 2000 create channel calls. Is that possible to work?
8 Replies
d.js toolkit
d.js toolkit3w ago
- 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!
Mark
Mark3w ago
There are global rate limits and also route specific ones Why not use the guild template feature for this
coconut
coconutOP3w ago
What is that template feature? The templates I see on server creation are quite limited I think. Or I missed something? What do you mean? Can I set my own custom channels before server create? Also how would I create categories ahead of the time? I need category id to set as parent for the channels which means that guilds are supposed to be created.
d.js docs
d.js docs3w ago
:interface: GuildCreateOptions [email protected] Options used to create a guild.
coconut
coconutOP3w ago
How can I do that? Can I create clone of current server?
d.js docs
d.js docs3w ago
:discord: Guild Resource - Create Guild POST /guilds Create a new guild. Returns a guild object on success. Fires a Guild Create Gateway event. read more
coconut
coconutOP3w ago
-_- So I came up with a good idea that is already implemented natively. Yes, exactly. That is the idea of providing the templates. Creating a copy of server which provide a template. Didn't get what do you mean. The idea I tried to describe is something like that: You as server owner or admin that want to publish a server template you can use the slash command: /create-template d.js-server Other users can make a clone of your server using the slash command: /copy-template d.js-server The basic idea is to be able make easily copies of common server templates. The fact if that does the job on existing server or new server isn't that important I think.
Théo
Théo2w ago
Discord guild template is a bit broken Since it doesn't create every channel that needs Community enabled So don't create announcement channels, forums etc

Did you find this page helpful?