-
Notifications
You must be signed in to change notification settings - Fork 0
/
deply-commands.js
24 lines (21 loc) · 2.08 KB
/
deply-commands.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const { SlashCommandBuilder } = require('@discordjs/builders');
const { REST } = require('@discordjs/rest');
const { Routes } = require('discord-api-types/v9');
const { clientId, token } = require('./config.json');
const commands = [
new SlashCommandBuilder().setName('play').setDescription('Воспроизвести Youtube видео/Песню из Spotify/найти песню(в параметре url пиши поисковый запрос)') .addStringOption(option => option.setName('url').setDescription('Ссылка на видео')),
new SlashCommandBuilder().setName('playvk').setDescription('Воспроизвести музыку из VK (Введите имя трека)').addStringOption(option => option.setName('url').setDescription('Ссылка на видео')),
new SlashCommandBuilder().setName('lolz').setDescription('✅ LOLZTeam радио, работаем ✅'),
new SlashCommandBuilder().setName('stream').setDescription('Воспроизвести любой аудио-стрим').addStringOption(option => option.setName('stream').setDescription('Аудио-стрим')),
new SlashCommandBuilder().setName('stop').setDescription('Остановить воспроизведение'),
new SlashCommandBuilder().setName('pause').setDescription('Приостановить воспроизведение'),
new SlashCommandBuilder().setName('resume').setDescription('Возобновить воспроизведение'),
new SlashCommandBuilder().setName('showpenis').setDescription('Негайно покажи пенис'),
new SlashCommandBuilder().setName('setvol').setDescription('Установить громкость проигрывателя').addIntegerOption(option => option.setName('volume').setDescription('Громкость')),
new SlashCommandBuilder().setName('ping').setDescription('Pong')
]
.map(command => command.toJSON());
const rest = new REST({ version: '9' }).setToken(token);
rest.put(Routes.applicationCommands(clientId), { body: commands })
.then(() => console.log('Successfully registered application commands.'))
.catch(console.error);