register commands for multiple servers

i got the code for my command register file from the docs. there you need to input a guild id, but what if you can add my bot to multiple discord servers then i cant just all copy in ids right? how would i do that? is there a way to like globaly register commands?
18 Replies
d.js toolkit
d.js toolkit7mo 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! - Marked as resolved by OP
treble/luna
treble/luna7mo ago
use global commands
d.js docs
d.js docs7mo ago
:guide: Creating Your Bot: Registering slash commands - Command registration > Global commands read more
constt.de
constt.deOP7mo ago
thx ill look at it
Inky
Inky7mo ago
Just remember to remove the guild commands you deployed
constt.de
constt.deOP7mo ago
remove?
Inky
Inky7mo ago
Yes
constt.de
constt.deOP7mo ago
how would i remove the,
treble/luna
treble/luna7mo ago
deploy an empty array
constt.de
constt.deOP7mo ago
ah okay
constt.de
constt.deOP7mo ago
is this right?
const data = await rest.put(
Routes.applicationGuildCommands(process.env.CLIENT_ID),
{ body: commands }
);
const data = await rest.put(
Routes.applicationGuildCommands(process.env.CLIENT_ID),
{ body: commands }
);
No description
treble/luna
treble/luna7mo ago
no .
constt.de
constt.deOP7mo ago
did it
treble/luna
treble/luna7mo ago
Not in the code you showed
constt.de
constt.deOP7mo ago
yea ik but i changed it now to applicationCommands but on my guild i dont see the command (i registerd it too)
treble/luna
treble/luna7mo ago
did you refresh your discord client
constt.de
constt.deOP7mo ago
Oh thats for sure it u mean like CTRL+R
treble/luna
treble/luna7mo ago
yes

Did you find this page helpful?