This commit is contained in:
parent
811937a4ab
commit
ec561101cc
@ -1,4 +1,6 @@
|
|||||||
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
const { SlashCommandBuilder, EmbedBuilder, Manager } = require("discord.js");
|
||||||
|
const { Manager } = require("erela.js")
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
@ -20,7 +22,40 @@ module.exports = {
|
|||||||
|
|
||||||
interaction.reply({embeds: [embed]})
|
interaction.reply({embeds: [embed]})
|
||||||
|
|
||||||
functionWhoAbort()
|
|
||||||
|
|
||||||
|
let player = client.manager.players.get(interaction.guild.id)
|
||||||
|
|
||||||
|
if(!player) {
|
||||||
|
|
||||||
|
player.destroy()
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const nodes = [
|
||||||
|
{
|
||||||
|
host: "lavalink.devamop.in",
|
||||||
|
password: "DevamOP",
|
||||||
|
port: 443,
|
||||||
|
secure: true
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
client.manager = new Manager({
|
||||||
|
// The nodes to connect to, optional if using default lavalink options
|
||||||
|
nodes,
|
||||||
|
// Method to send voice data to Discord
|
||||||
|
send: (id, payload) => {
|
||||||
|
const guild = client.guilds.cache.get(id);
|
||||||
|
// NOTE: FOR ERIS YOU NEED JSON.stringify() THE PAYLOAD
|
||||||
|
if (guild) guild.shard.send(payload);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ if ("ENV" in process.env) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function startApp() {
|
function startApp() {
|
||||||
@ -83,6 +83,12 @@ client.once("ready", () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
client.on("voiceStateUpdate", (oldMember, newMember) => {
|
||||||
|
|
||||||
|
console.log(oldMember, newMember)
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
client.on("interactionCreate", (interaction) => {
|
client.on("interactionCreate", (interaction) => {
|
||||||
|
|
||||||
if(!interaction.isCommand()) return;
|
if(!interaction.isCommand()) return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user