SudhanPlayz / Discord-MusicBot

An advanced discord music bot, supports Spotify, Soundcloud, YouTube with Shuffling, Volume Control and Web Dashboard with Slash Commands support!
https://musicbot.darrenofficial.com
Other
2.99k stars 2.9k forks source link

Make bot leave after X time not playing anything #477

Closed rartigues closed 3 years ago

rartigues commented 3 years ago

I'm hosting the bot locally but I'm wondering if is it possible to make the bot leave after a certain time after finishing playing. I know about the 24/7 option but I want the bot after a minute or two after completing the last song in the queue.

AryanTah2005 commented 3 years ago

Set a simple timeout then before destroying the queue, and these are suggestions, please post them in discussions, not in issues. Here is an instance of how u can do it



          setTimeout(() => {
  if (player.paused || player.playing ||  player.queue.length > 0) return;

            player.destroy();
          },60*1000//time in milliseconds ;-; so this is like 1 minute

);```
rartigues commented 3 years ago

Sorry for placing this in the issues. Last thing, where can I edit this code in?

SudhanPlayz commented 3 years ago

structures/DiscordMusicBot.js