Szarvasi SZV-623 Cafe Brill
Szarvasi SZV-623 Cafe Brill
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
Thanks for the help
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
Hmm alrighty
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
It works with interaction.client though so thank you both
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
How come? I have my client defined as bot,
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
bot.on(Events.InteractionCreate, interaction => {
if (!interaction.isChatInputCommand()) return;
const command = interaction.bot.commands.get(interaction.commandName);
command.execute(interaction);
});
bot.on(Events.InteractionCreate, interaction => {
if (!interaction.isChatInputCommand()) return;
const command = interaction.bot.commands.get(interaction.commandName);
command.execute(interaction);
});
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
Here's how my code looks like now
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
When trying to execute a command
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
I modified my code accordingly but I get a Cannot read properties of undefined (reading 'commands') error now
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
Thanks!
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
I don't think I have one. Didn't see the docs referring to one. I might be just blind tho 😄
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
Also, no errors in the console. Just the application didn't respond.
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
I tried defering it, but no luck.
22 replies
DIdiscord.js - Imagine ❄
Created by Szarvasi SZV-623 Cafe Brill on 12/23/2024 in #djs-questions
Application did not respond
const { SlashCommandBuilder } = require('discord.js');

module.exports = {
data: new SlashCommandBuilder()
.setName('sziabazdmeg')
.setDescription('Dögöljön meg a js ott ahol van.'),
async execute(interaction) {
await interaction.deferReply();
await interaction.editReply('stroke');
},
};
const { SlashCommandBuilder } = require('discord.js');

module.exports = {
data: new SlashCommandBuilder()
.setName('sziabazdmeg')
.setDescription('Dögöljön meg a js ott ahol van.'),
async execute(interaction) {
await interaction.deferReply();
await interaction.editReply('stroke');
},
};
22 replies