slash commands options wont get visible / can add parameters v14.18

I somehow cant add paramters in a server. eventhough everything should be fine. is there a known issue?
29 Replies
d.js toolkit
d.js toolkit2mo 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
P H O E T A N I X
P H O E T A N I XOP2mo ago
this should be just a simple creating roles command
P H O E T A N I X
P H O E T A N I XOP2mo ago
require("dotenv").config();
const { REST, Routes } = require("discord.js");
const fs = require("fs");

const commands = [];
const commandFiles = fs.readdirSync("./src/cmds").filter(file => file.endsWith(".js"));

for (const file of commandFiles) {
const command = require(`./src/cmds/${file}`);
commands.push({
name: command.name,
description: command.description
});
}

const rest = new REST({ version: "10" }).setToken(process.env.DISCORD_TOKEN);

(async () => {
try {
console.log("Registering slash commands...");
console.log("Bot Token:", process.env.TOKEN);
console.log("Client ID:", process.env.APP_ID);
await rest.put(
Routes.applicationCommands(process.env.APP_ID),
{ body: commands }
);
console.log("Slash commands registered!");
} catch (error) {
console.error(error);
}
})();
require("dotenv").config();
const { REST, Routes } = require("discord.js");
const fs = require("fs");

const commands = [];
const commandFiles = fs.readdirSync("./src/cmds").filter(file => file.endsWith(".js"));

for (const file of commandFiles) {
const command = require(`./src/cmds/${file}`);
commands.push({
name: command.name,
description: command.description
});
}

const rest = new REST({ version: "10" }).setToken(process.env.DISCORD_TOKEN);

(async () => {
try {
console.log("Registering slash commands...");
console.log("Bot Token:", process.env.TOKEN);
console.log("Client ID:", process.env.APP_ID);
await rest.put(
Routes.applicationCommands(process.env.APP_ID),
{ body: commands }
);
console.log("Slash commands registered!");
} catch (error) {
console.error(error);
}
})();
my deploy file
P H O E T A N I X
P H O E T A N I XOP2mo ago
my main file with its handlers
P H O E T A N I X
P H O E T A N I XOP2mo ago
No description
P H O E T A N I X
P H O E T A N I XOP2mo ago
this theres no options to choose or parameters wont be accepted as well yes just the parameters cant be set or chosen I ran deploy-command.js file more often @Qjuh sorry ping. I ran this file more often already since yesterday im sorry but what shall i log ok ty
[
{
name: 'createroles',
description: 'Create a custom role with optional settings.'
},
{ name: 'deleterole', description: 'Delete a role from the server.' },
{ name: 'assignrole', description: 'Assign a role to a user.' },
{ name: 'ping', description: 'Replies with Pong!' },
{ name: 'removerole', description: 'Remove a role from a user.' }
[
{
name: 'createroles',
description: 'Create a custom role with optional settings.'
},
{ name: 'deleterole', description: 'Delete a role from the server.' },
{ name: 'assignrole', description: 'Assign a role to a user.' },
{ name: 'ping', description: 'Replies with Pong!' },
{ name: 'removerole', description: 'Remove a role from a user.' }
this is what returned a? bc when I run somehow i get error about form error
command.data.toJSON(),
data: new SlashCommandBuilder()
.setName("createroles")
.setDescription("Create a custom role with optional settings.")
.addStringOption(option =>
option
.setName("name")
.setDescription("The name of the role")
.setRequired(true)
)
...
command.data.toJSON(),
data: new SlashCommandBuilder()
.setName("createroles")
.setDescription("Create a custom role with optional settings.")
.addStringOption(option =>
option
.setName("name")
.setDescription("The name of the role")
.setRequired(true)
)
...
like this?
d.js docs
d.js docs2mo ago
:guide: Creating Your Bot: Registering slash commands - Resulting code read more
P H O E T A N I X
P H O E T A N I XOP2mo ago
sorry im relative new to js tysm none of the commands use the toJSON
P H O E T A N I X
P H O E T A N I XOP2mo ago
i changed to this still doesnt work OH THAT WAS IT im sorry to annoy you
for (const file of commandFiles) {
const command = require(`./src/cmds/${file}`);
commands.push(command.data.toJSON());
}
for (const file of commandFiles) {
const command = require(`./src/cmds/${file}`);
commands.push(command.data.toJSON());
}
i changed to this but I still get errors thats the error i had before
commands.push(command.data.toJSON());
^

TypeError: Cannot read properties of undefined (reading 'toJSON')
commands.push(command.data.toJSON());
^

TypeError: Cannot read properties of undefined (reading 'toJSON')
ah all of does have data except
module.exports = {
name: "ping",
description: "Replies with Pong!",
async execute(interaction) {
await interaction.reply("Pong!");
}
};
module.exports = {
name: "ping",
description: "Replies with Pong!",
async execute(interaction) {
await interaction.reply("Pong!");
}
};
do I have to add something here as well? bc this works with prefix and slash command well ok now i dont really understand
require("dotenv").config();
const { REST, Routes } = require("discord.js");
const fs = require('node:fs');
const path = require('node:path');

const commands = [];
const foldersPath = path.join(__dirname, 'src/cmds/slash');
const commandFolders = fs.readdirSync(foldersPath);

for (const folder of commandFolders) {
// Grab all the command files from the commands directory you created earlier
const commandsPath = path.join(foldersPath, folder);
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
// Grab the SlashCommandBuilder#toJSON() output of each command's data for deployment
for (const file of commandFiles) {
const filePath = path.join(commandsPath, file);
const command = require(filePath);
if ('data' in command && 'execute' in command) {
commands.push(command.data.toJSON());
} else {
console.log(`[WARNING] The command at ${filePath} is missing a required "data" or "execute" property.`);
}
}
}

const rest = new REST().setToken(process.env.DISCORD_TOKEN);

// and deploy your commands!
(async () => {
try {
console.log(`Started refreshing ${commands.length} application (/) commands.`);

// The put method is used to fully refresh all commands in the guild with the current set
const data = await rest.put(
Routes.applicationCommands(process.env.APP_ID),
{ body: commands },
);

console.log(`Successfully reloaded ${data.length} application (/) commands.`);
} catch (error) {
// And of course, make sure you catch and log any errors!
console.error(error);
}
})();
require("dotenv").config();
const { REST, Routes } = require("discord.js");
const fs = require('node:fs');
const path = require('node:path');

const commands = [];
const foldersPath = path.join(__dirname, 'src/cmds/slash');
const commandFolders = fs.readdirSync(foldersPath);

for (const folder of commandFolders) {
// Grab all the command files from the commands directory you created earlier
const commandsPath = path.join(foldersPath, folder);
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
// Grab the SlashCommandBuilder#toJSON() output of each command's data for deployment
for (const file of commandFiles) {
const filePath = path.join(commandsPath, file);
const command = require(filePath);
if ('data' in command && 'execute' in command) {
commands.push(command.data.toJSON());
} else {
console.log(`[WARNING] The command at ${filePath} is missing a required "data" or "execute" property.`);
}
}
}

const rest = new REST().setToken(process.env.DISCORD_TOKEN);

// and deploy your commands!
(async () => {
try {
console.log(`Started refreshing ${commands.length} application (/) commands.`);

// The put method is used to fully refresh all commands in the guild with the current set
const data = await rest.put(
Routes.applicationCommands(process.env.APP_ID),
{ body: commands },
);

console.log(`Successfully reloaded ${data.length} application (/) commands.`);
} catch (error) {
// And of course, make sure you catch and log any errors!
console.error(error);
}
})();
my new deploy code error:
const result = binding.readdir(
^

Error: ENOTDIR: not a directory, scandir '[local]\Sakura\src\cmds\slash\cr[M].js'
at Object.readdirSync (node:fs:1508:26)
at Object.<anonymous> (C:\OwnFiles\Discord Bot\00_CLONED\Sakura\deploy-commands.js:13:26)
at Module._compile (node:internal/modules/cjs/loader:1369:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1427:10)
at Module.load (node:internal/modules/cjs/loader:1206:32)
at Module._load (node:internal/modules/cjs/loader:1022:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:135:12)
at node:internal/main/run_main_module:28:49 {
errno: -4052,
code: 'ENOTDIR',
syscall: 'scandir',
path: '[local]\\Sakura\\src\\cmds\\slash\\cr[M].js'
}
const result = binding.readdir(
^

Error: ENOTDIR: not a directory, scandir '[local]\Sakura\src\cmds\slash\cr[M].js'
at Object.readdirSync (node:fs:1508:26)
at Object.<anonymous> (C:\OwnFiles\Discord Bot\00_CLONED\Sakura\deploy-commands.js:13:26)
at Module._compile (node:internal/modules/cjs/loader:1369:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1427:10)
at Module.load (node:internal/modules/cjs/loader:1206:32)
at Module._load (node:internal/modules/cjs/loader:1022:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:135:12)
at node:internal/main/run_main_module:28:49 {
errno: -4052,
code: 'ENOTDIR',
syscall: 'scandir',
path: '[local]\\Sakura\\src\\cmds\\slash\\cr[M].js'
}
structure:
- src:
- cmds
- slash
+ cr[M].js
+ dr[M].js
- prefix
+ deploy-commands.js
+ main.js
structure:
- src:
- cmds
- slash
+ cr[M].js
+ dr[M].js
- prefix
+ deploy-commands.js
+ main.js
ok nvm now it works but the bot wont respond
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
P H O E T A N I X
P H O E T A N I XOP2mo ago
I do have its in the main.js
/**
* SLASH COMMAND HANDLER
*/
client.on("interactionCreate", async (interaction) => {
if (!interaction.isCommand()) return;

const command = client.commands.get(interaction.commandName);
if (!command) return;

try {
await command.execute(interaction);
} catch (error) {
console.error(error);
await interaction.reply({ content: "There was an error executing this command.", ephemeral: true });
}
});
/**
* SLASH COMMAND HANDLER
*/
client.on("interactionCreate", async (interaction) => {
if (!interaction.isCommand()) return;

const command = client.commands.get(interaction.commandName);
if (!command) return;

try {
await command.execute(interaction);
} catch (error) {
console.error(error);
await interaction.reply({ content: "There was an error executing this command.", ephemeral: true });
}
});
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
P H O E T A N I X
P H O E T A N I XOP2mo ago
I get the application did not respond error the slash command works normally and the bot is running
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
P H O E T A N I X
P H O E T A N I XOP2mo ago
IM SORRY
P H O E T A N I X
P H O E T A N I XOP2mo ago
this is the command
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
P H O E T A N I X
P H O E T A N I XOP2mo ago
ignore the message above
No description
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
P H O E T A N I X
P H O E T A N I XOP2mo ago
nope the roles didnt created no errors in the console no new role defer the response?
d.js docs
d.js docs2mo ago
If you aren't getting any errors, try to place console.log checkpoints throughout your code to find out where execution stops. - Once you do, log relevant values and if-conditions - More sophisticated debugging methods are breakpoints and runtime inspections: learn more :guide: Slash Commands: Command response methods - Deferred responses read more
P H O E T A N I X
P H O E T A N I XOP2mo ago
o ok i will try thank you
client.on("interactionCreate", async (interaction) => {
console.log("1");
if (!interaction.isCommand()) return;
console.log("2");
const command = client.commands.get(interaction.commandName);
console.log("3");
if (!command) return console.log("4");
console.log("5");
...
client.on("interactionCreate", async (interaction) => {
console.log("1");
if (!interaction.isCommand()) return;
console.log("2");
const command = client.commands.get(interaction.commandName);
console.log("3");
if (!command) return console.log("4");
console.log("5");
...
it seems that the error is at : if (!command) return;
Amgelo
Amgelo2mo ago
the command isn't in your client.commands collection then
P H O E T A N I X
P H O E T A N I XOP2mo ago
hm lemme check
Amgelo
Amgelo2mo ago
there's either a bug with how you're filling that collection, or the command file isn't at the right place and it isn't being detected
P H O E T A N I X
P H O E T A N I XOP2mo ago
there we go, command is undefined
Amgelo
Amgelo2mo ago
yeah, because...
P H O E T A N I X
P H O E T A N I XOP2mo ago
yes I just saw that i changed the structure without refactor it still doesnt work after I change to this:
const commandFiles = fs.readdirSync(path.join(__dirname, "./src/cmds/slash")).filter(file => file.endsWith(".js"));
for (const file of commandFiles) {
const command = require(`./src/cmds/slash/${file}`);
client.commands.set(command.name, command);
}
const commandFiles = fs.readdirSync(path.join(__dirname, "./src/cmds/slash")).filter(file => file.endsWith(".js"));
for (const file of commandFiles) {
const command = require(`./src/cmds/slash/${file}`);
client.commands.set(command.name, command);
}
heres my structure ok I fixed by replace it with
const foldersPath = path.join(__dirname, 'commands');
const commandFolders = fs.readdirSync(foldersPath);

for (const folder of commandFolders) {
const commandsPath = path.join(foldersPath, folder);
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const filePath = path.join(commandsPath, file);
const command = require(filePath);
if ('data' in command && 'execute' in command) {
client.commands.set(command.data.name, command);
} else {
console.log(`[WARNING] The command at ${filePath} is missing a required "data" or "execute" property.`);
}
}
}
const foldersPath = path.join(__dirname, 'commands');
const commandFolders = fs.readdirSync(foldersPath);

for (const folder of commandFolders) {
const commandsPath = path.join(foldersPath, folder);
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const filePath = path.join(commandsPath, file);
const command = require(filePath);
if ('data' in command && 'execute' in command) {
client.commands.set(command.data.name, command);
} else {
console.log(`[WARNING] The command at ${filePath} is missing a required "data" or "execute" property.`);
}
}
}
thanks you all who helped

Did you find this page helpful?