“Discord.js Slash Commend” Kode Jawaban

Perintah Slash Discord.js

bot.api.applications(bot.user.id).commands.post({
  data: {
    name: "commandname",
    description: "Command Description",
  },
});
YodaForce157

Discord.js Slash Commend

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("توكن هنا");
 /*تأكد تعطي صلاحيات للبوت عشان ماتواجه مشاكل */
Envious Elk

Discord.js Slash Commend

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("توكن هنا");
 /*تأكد تعطي صلاحيات للبوت عشان ماتواجه مشاكل */
EXATUBE™

Jawaban yang mirip dengan “Discord.js Slash Commend”

Pertanyaan yang mirip dengan “Discord.js Slash Commend”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya