toasta
toasta
DIAdiscord.js - Imagine an app
Created by Ling Ling Eggroll on 3/27/2024 in #djs-questions
Slash Commands not showing up
16 replies
DIAdiscord.js - Imagine an app
Created by Ling Ling Eggroll on 3/27/2024 in #djs-questions
Slash Commands not showing up
this should be ur code
const data = await rest.put(
Routes.applicationCommands(clientId),
{ body: commands },
);
const data = await rest.put(
Routes.applicationCommands(clientId),
{ body: commands },
);
16 replies
DIAdiscord.js - Imagine an app
Created by Ling Ling Eggroll on 3/27/2024 in #djs-questions
Slash Commands not showing up
and 2 is the answer based off of this here
const data = await rest.put(Routes.applicationGuildCommands(clientId, guildId),
{ body: commands },
);
const data = await rest.put(Routes.applicationGuildCommands(clientId, guildId),
{ body: commands },
);
16 replies
DIAdiscord.js - Imagine an app
Created by Ling Ling Eggroll on 3/27/2024 in #djs-questions
Slash Commands not showing up
the reason your probably aren't seeing the slash commands are
1. you have to reload your Discord client 2. your bot is only pushing guild commands
16 replies
DIAdiscord.js - Imagine an app
Created by Ling Ling Eggroll on 3/27/2024 in #djs-questions
Slash Commands not showing up
No description
16 replies
DIAdiscord.js - Imagine an app
Created by Ling Ling Eggroll on 3/27/2024 in #djs-questions
Slash Commands not showing up
this is the Discord.JS Guide (i use it so i can help)
16 replies
DIAdiscord.js - Imagine an app
Created by Osintedx on 3/27/2024 in #djs-questions
Intents
i use this const { Client, GatewayIntentBits } = require('discord.js');
9 replies