Skip to content
This repository has been archived by the owner on Jun 16, 2023. It is now read-only.

A Discord bot that dynamically creates and deletes voice channels as needed.

License

Notifications You must be signed in to change notification settings

peterthehan/discord-dynamic-voice-channels-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord Dynamic Voice Channels Bot

Discord Twitter Follow

A Discord bot that dynamically creates and deletes voice channels as needed.

demo

Setup

  1. Follow the instructions in create-discord-bot.

    Don't forget to give your bot the Manage Channels and Move Members permissions!

  2. Download this bot and move the src-discord-dynamic-voice-channels-bot folder into the /src/bots folder from step 1.

  3. Open config.json to configure your own settings:

    [
      {
        "guildId": "258167954913361930",
        "mainVoiceChannelIds": ["618571553591787554", "266523094015934465"],
        "newVoiceChannelSuffix": "🤖",
        "maxVoiceChannelCount": 5
      }
    ]

    Add as many rules as you want to configure for other servers.

    • guildId is the server id.
    • mainVoiceChannelIds are the voice channel ids the bot watches for users when creating cloned voice channels.
    • newVoiceChannelSuffix is the string appended to the name of the cloned voice channel. Make sure this string is unique among your voice channels, the bot matches against this string when determining which voice channels to delete when they're no longer in use!
    • maxVoiceChannelCount is the max number of cloned voice channels the bot will create.
  4. npm start to run the bot.

Visit for more help or information!