Izzibaby
Izzibaby
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
Time to ignore most of what I spent the last 6 hours reading over and learning 😂 Time to figure this all out now.
19 replies
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
Regarding slash commands.
19 replies
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
Alright. I know it did look confusing seeing the difference between
// Simple test command
const TEST_COMMAND = {
name: 'testing',
description: 'Basic command to Test Stuff',
type: 1,
integration_types: [0, 1],
contexts: [0, 1, 2],
};
// Simple test command
const TEST_COMMAND = {
name: 'testing',
description: 'Basic command to Test Stuff',
type: 1,
integration_types: [0, 1],
contexts: [0, 1, 2],
};
and
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
},
};
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
},
};
19 replies
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
So it'll be easier for me to do that, versus the core method?
19 replies
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
Alrighty 😅
19 replies
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
I followed the Discord Developer Getting Started, and was building off the example app it had.
19 replies
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
I'm familar with discord.js, I'm unsure what /core is. So I'm assuming the latter.
19 replies
DIAdiscord.js - Imagine a boo! 👻
Created by Izzibaby on 10/17/2024 in #djs-questions
DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE
19 replies