Discord.js Slash Commands
bot.api.applications(bot.user.id).commands.post({
data: {
name: "commandname",
description: "Command Description",
},
});
YodaForce157
bot.api.applications(bot.user.id).commands.post({
data: {
name: "commandname",
description: "Command Description",
},
});
const Discord = require('discord.js');
const client = new Discord.Client();
const { Slash } = require('discord-slash-commands');
const slash = new Slash(client);
client.on("ready", () => {
console.log("Ready");
slash.command({
guildOnly: false, /*guildOnly : true لو تبغاها بسير فر واحد*/
/*guildID: "GUILD_ID", وهنا تحط ايدي السيرفر*/
data: {
name: "ping", /*هنا اسم الامر*/
description: "Show the bot latency", /*هنا وصف الامر*/
type: 4,
content: `Pong! \`${client.ws.ping}ms\`` /*وهنا الي راح يرسلو البوت */
}
})
})
/*لازم تستدعي البوت من رابط زي كدا
https://discord.com/api/oauth2/authorize?client_id=ايدي البوت هنا&permissions=0&scope=bot%20applications.commands
*/
client.login("توكن هنا");
/*تأكد تعطي صلاحيات للبوت عشان ماتواجه مشاكل */
const Discord = require('discord.js');
const client = new Discord.Client();
const { Slash } = require('discord-slash-commands');
const slash = new Slash(client);
client.on("ready", () => {
console.log("Ready");
slash.command({
guildOnly: false, /*guildOnly : true لو تبغاها بسير فر واحد*/
/*guildID: "GUILD_ID", وهنا تحط ايدي السيرفر*/
data: {
name: "ping", /*هنا اسم الامر*/
description: "Show the bot latency", /*هنا وصف الامر*/
type: 4,
content: `Pong! \`${client.ws.ping}ms\`` /*وهنا الي راح يرسلو البوت */
}
})
})
/*لازم تستدعي البوت من رابط زي كدا
https://discord.com/api/oauth2/authorize?client_id=ايدي البوت هنا&permissions=0&scope=bot%20applications.commands
*/
client.login("توكن هنا");
/*تأكد تعطي صلاحيات للبوت عشان ماتواجه مشاكل */