1bot.api.applications(bot.user.id).commands.post({
2 data: {
3 name: "commandname",
4 description: "Command Description",
5 },
6});
1const Discord = require('discord.js');
2const client = new Discord.Client();
3
4const { Slash } = require('discord-slash-commands');
5const slash = new Slash(client);
6
7client.on("ready", () => {
8 console.log("Ready");
9 slash.command({
10 guildOnly: false, /*guildOnly : true لو تبغاها بسير فر واحد*/
11 /*guildID: "GUILD_ID", وهنا تحط ايدي السيرفر*/
12 data: {
13 name: "ping", /*هنا اسم الامر*/
14 description: "Show the bot latency", /*هنا وصف الامر*/
15 type: 4,
16 content: `Pong! \`${client.ws.ping}ms\`` /*وهنا الي راح يرسلو البوت */
17 }
18 })
19})
20/*لازم تستدعي البوت من رابط زي كدا
21
22https://discord.com/api/oauth2/authorize?client_id=ايدي البوت هنا&permissions=0&scope=bot%20applications.commands
23*/
24client.login("توكن هنا");
25 /*تأكد تعطي صلاحيات للبوت عشان ماتواجه مشاكل */
26
1const Discord = require('discord.js');
2const client = new Discord.Client();
3
4const { Slash } = require('discord-slash-commands');
5const slash = new Slash(client);
6
7client.on("ready", () => {
8 console.log("Ready");
9 slash.command({
10 guildOnly: false, /*guildOnly : true لو تبغاها بسير فر واحد*/
11 /*guildID: "GUILD_ID", وهنا تحط ايدي السيرفر*/
12 data: {
13 name: "ping", /*هنا اسم الامر*/
14 description: "Show the bot latency", /*هنا وصف الامر*/
15 type: 4,
16 content: `Pong! \`${client.ws.ping}ms\`` /*وهنا الي راح يرسلو البوت */
17 }
18 })
19})
20/*لازم تستدعي البوت من رابط زي كدا
21
22https://discord.com/api/oauth2/authorize?client_id=ايدي البوت هنا&permissions=0&scope=bot%20applications.commands
23*/
24client.login("توكن هنا");
25 /*تأكد تعطي صلاحيات للبوت عشان ماتواجه مشاكل */