ruxiit
ruxiit
DIAdiscord.js - Imagine an app
Created by ruxiit on 7/3/2023 in #djs-voice
Issue with Running Multiple Music Bots in Discord.js 13
I'm facing an issue with running multiple music bots in Discord.js 13. When I try to play music with one bot in a specific voice channel and then switch to another bot in a different voice channel, the first bot ends up joining the second bot's voice channel. It's causing inconvenience in managing the bots. Any help would be appreciated.
2 replies
DIAdiscord.js - Imagine an app
Created by ruxiit on 4/1/2023 in #djs-questions
i have a problem with guildMemberAdd event , is repeated twice .. how i can fix that ?
i use console.log() to check it the code :
const Discord = require("discord.js");
module.exports = async (client) => {
console.log("testing")
client.on("guildMemberAdd" , async (member) => {
console.log("events send")
});
};
const Discord = require("discord.js");
module.exports = async (client) => {
console.log("testing")
client.on("guildMemberAdd" , async (member) => {
console.log("events send")
});
};
he send this once
console.log("testing")
console.log("testing")
but send this twice
console.log("events send")
console.log("events send")
14 replies
DIAdiscord.js - Imagine an app
Created by ruxiit on 8/1/2022 in #djs-questions
How to make a multi bots in one project like a premium system
..
19 replies