This project provides a voice command interface for Discord, allowing users to interact with the Discord server through various commands. Key features include:
- Voice Commands: Send voice commands to perform actions within the Discord server.
- Auto Send Messages: Automatically send predefined messages at specified intervals.
- Auto Wakeup: Wake up and respond to specific triggers or commands.
To clone this repository, run the following command:
git clone https://github.com/getoit/Voice-Discord-Multiple
To install the project, run:
npm install
To use the project, execute:
node index.js
Here is the configuration object from setup/config.js that you can customize:
const config = {
prefix: "-", // Command prefix
AutoWakeupJockie: false, // Enable or disable auto wakeup functionality
allowedUsers: [
"ownerID_1", // Your Discord user ID
"ownerID_99" // Additional user IDs
],
VC: {
channelId: "channelId", // ID of the voice channel
selfMute: false, // Mute the bot in the voice channel
selfDeaf: false, // Deaf the bot in the voice channel
stream: false // Stream audio from the voice channel
},
levelingRole: {
levelingspamSet: false, // Enable or disable leveling spam
spamchannelId: "channelId", // ID of the spam channel
spamContent: "_ _", // Content for spam messages
spamInterval: 50000, // Interval for sending spam messages (in milliseconds)
autoDeleteSpam: false, // Enable or disable auto deletion of spam messages
deleteInterval: 100 // Interval for deleting spam messages (in milliseconds)
}
};
module.exports = config;This project is licensed under the MIT License - see the LICENSE file for details.
Please be aware that disabling your account is done at your own risk. This project is shared solely for educational purposes, and I do not take responsibility for any consequences that may arise from its use.