박준서
박준서
DIAdiscord.js - Imagine an app
Created by 박준서 on 6/27/2023 in #djs-questions
I made it look like an image, but I get the error "something went worng!"
I don't understand why they don't interact.
11 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 6/27/2023 in #djs-questions
I made it look like an image, but I get the error "something went worng!"
I don't know how to fix it.
11 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 6/27/2023 in #djs-questions
I made it look like an image, but I get the error "something went worng!"
"Something wrong! Try again!" appears in the modal, and the input value is not reply.
11 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 6/27/2023 in #djs-questions
I made it look like an image, but I get the error "something went worng!"
No errors appear on the console.
11 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 6/27/2023 in #djs-questions
I made it look like an image, but I get the error "something went worng!"
11 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 6/5/2023 in #djs-questions
To invoke a command from another channel
I want to display the commands I ran on the admin channel on the regular channel, but I don't know how.
6 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 4/9/2023 in #djs-questions
How do I make the code?
I don't know how to make the code because I don't understand JavaScript.
5 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 4/2/2023 in #djs-questions
How to use the value of .addChoices
If you select a channel and .addChoses, you want to run a command on that channel.
10 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 4/2/2023 in #djs-questions
How to use the value of .addChoices
module.exports = {
data: new SlashCommandBuilder()
.setName(`game`)
.setDescription("game.")
.addChannelOption(option =>
option.setName('channel')
.setDescription('channel.')
.setRequired(true))
.addStringOption(option =>
option.setName('game')
.setDescription('game')
.setRequired(true)
.addChoices(
{ name: '1', **value**: '1' },
{ name: '2', value: '2' },
{ name: '3', value: '3' },
{ name: '4', value: '4' }
)),
async execute(interaction, client) {
const category = interaction.options.getString('game');

await interaction.reply({

});
},
};
module.exports = {
data: new SlashCommandBuilder()
.setName(`game`)
.setDescription("game.")
.addChannelOption(option =>
option.setName('channel')
.setDescription('channel.')
.setRequired(true))
.addStringOption(option =>
option.setName('game')
.setDescription('game')
.setRequired(true)
.addChoices(
{ name: '1', **value**: '1' },
{ name: '2', value: '2' },
{ name: '3', value: '3' },
{ name: '4', value: '4' }
)),
async execute(interaction, client) {
const category = interaction.options.getString('game');

await interaction.reply({

});
},
};
10 replies
DIAdiscord.js - Imagine an app
Created by 박준서 on 4/2/2023 in #djs-questions
How to use the value of .addChoices
I want to execute the command with a value.
10 replies