MrHanBrolo
MrHanBrolo
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Thank you sensei
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Prayge
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
alright, will try
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
that'll do
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Hm, although... whats the site people use to paste code
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
So I need to add an event handler for that
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Ah, okay
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Like uh...
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
yeah
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
or, wait thats basically the same
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
I thought autocomplete was a slash command, no? I also don't see what you mean about the isChatInputCommand
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
I'm assuming you mean this?
client.on('interactionCreate', async interaction => {
if (!interaction.isCommand()) return;

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

if (!command) return;

try {
await command.execute(interaction, gamesCache);
} catch (error) {
console.error(error);
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
}
});
client.on('interactionCreate', async interaction => {
if (!interaction.isCommand()) return;

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

if (!command) return;

try {
await command.execute(interaction, gamesCache);
} catch (error) {
console.error(error);
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
}
});
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Even using the example with fixed options that has the guide command, it doesn't load anything
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Yeah I'm kinda stumped right now
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
Oh I know, I'm just super tired and might take a break until tomorrow and reply here haha. But, if anything updates before then I'll post progress
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
let me take another look at the guide
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
I'm not gonna lie the one thing that confuses me a lot is autocomplete
40 replies
DIAdiscord.js - Imagine a bot
Created by MrHanBrolo on 6/23/2023 in #djs-questions
Autocomplete failing to load choices
no
40 replies