├── .github └── ISSUE_TEMPLATE │ └── new-issue.md ├── .gitignore ├── LICENSE ├── README.md ├── auto-voice-channels.py ├── backup.py ├── backup.sh ├── backup_cron.txt ├── cfg.py ├── commands ├── __init__.py ├── admin_commands.py ├── alias.py ├── aliases.py ├── allyourbase.py ├── asip.py ├── base.py ├── bitrate.py ├── channelinfo.py ├── create.py ├── dcnf.py ├── defaultlimit.py ├── disable.py ├── ecnf.py ├── enable.py ├── general.py ├── help_cmd.py ├── inheritpermissions.py ├── invite.py ├── kick.py ├── limit.py ├── listroles.py ├── logging.py ├── name.py ├── nick.py ├── patreon.py ├── ping.py ├── power_overwhelming.py ├── prefix.py ├── private.py ├── public.py ├── removealias.py ├── rename.py ├── restrict.py ├── restrictions.py ├── servercheck.py ├── showtextchannelsto.py ├── source.py ├── template.py ├── textchannelname.py ├── textchannels.py ├── toggleposition.py ├── transfer.py ├── uniquenames.py └── unlimit.py ├── default_settings.json ├── docs.md ├── functions.py ├── guilds └── Guild settings are stored here.txt ├── requirements.txt ├── translate.py └── utils.py /.github/ISSUE_TEMPLATE/new-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/.github/ISSUE_TEMPLATE/new-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/README.md -------------------------------------------------------------------------------- /auto-voice-channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/auto-voice-channels.py -------------------------------------------------------------------------------- /backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/backup.py -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/backup.sh -------------------------------------------------------------------------------- /backup_cron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/backup_cron.txt -------------------------------------------------------------------------------- /cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/cfg.py -------------------------------------------------------------------------------- /commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/__init__.py -------------------------------------------------------------------------------- /commands/admin_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/admin_commands.py -------------------------------------------------------------------------------- /commands/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/alias.py -------------------------------------------------------------------------------- /commands/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/aliases.py -------------------------------------------------------------------------------- /commands/allyourbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/allyourbase.py -------------------------------------------------------------------------------- /commands/asip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/asip.py -------------------------------------------------------------------------------- /commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/base.py -------------------------------------------------------------------------------- /commands/bitrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/bitrate.py -------------------------------------------------------------------------------- /commands/channelinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/channelinfo.py -------------------------------------------------------------------------------- /commands/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/create.py -------------------------------------------------------------------------------- /commands/dcnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/dcnf.py -------------------------------------------------------------------------------- /commands/defaultlimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/defaultlimit.py -------------------------------------------------------------------------------- /commands/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/disable.py -------------------------------------------------------------------------------- /commands/ecnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/ecnf.py -------------------------------------------------------------------------------- /commands/enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/enable.py -------------------------------------------------------------------------------- /commands/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/general.py -------------------------------------------------------------------------------- /commands/help_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/help_cmd.py -------------------------------------------------------------------------------- /commands/inheritpermissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/inheritpermissions.py -------------------------------------------------------------------------------- /commands/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/invite.py -------------------------------------------------------------------------------- /commands/kick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/kick.py -------------------------------------------------------------------------------- /commands/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/limit.py -------------------------------------------------------------------------------- /commands/listroles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/listroles.py -------------------------------------------------------------------------------- /commands/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/logging.py -------------------------------------------------------------------------------- /commands/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/name.py -------------------------------------------------------------------------------- /commands/nick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/nick.py -------------------------------------------------------------------------------- /commands/patreon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/patreon.py -------------------------------------------------------------------------------- /commands/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/ping.py -------------------------------------------------------------------------------- /commands/power_overwhelming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/power_overwhelming.py -------------------------------------------------------------------------------- /commands/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/prefix.py -------------------------------------------------------------------------------- /commands/private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/private.py -------------------------------------------------------------------------------- /commands/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/public.py -------------------------------------------------------------------------------- /commands/removealias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/removealias.py -------------------------------------------------------------------------------- /commands/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/rename.py -------------------------------------------------------------------------------- /commands/restrict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/restrict.py -------------------------------------------------------------------------------- /commands/restrictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/restrictions.py -------------------------------------------------------------------------------- /commands/servercheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/servercheck.py -------------------------------------------------------------------------------- /commands/showtextchannelsto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/showtextchannelsto.py -------------------------------------------------------------------------------- /commands/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/source.py -------------------------------------------------------------------------------- /commands/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/template.py -------------------------------------------------------------------------------- /commands/textchannelname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/textchannelname.py -------------------------------------------------------------------------------- /commands/textchannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/textchannels.py -------------------------------------------------------------------------------- /commands/toggleposition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/toggleposition.py -------------------------------------------------------------------------------- /commands/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/transfer.py -------------------------------------------------------------------------------- /commands/uniquenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/uniquenames.py -------------------------------------------------------------------------------- /commands/unlimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/commands/unlimit.py -------------------------------------------------------------------------------- /default_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/default_settings.json -------------------------------------------------------------------------------- /docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/docs.md -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/functions.py -------------------------------------------------------------------------------- /guilds/Guild settings are stored here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/guilds/Guild settings are stored here.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/requirements.txt -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/translate.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregzaal/Auto-Voice-Channels/HEAD/utils.py --------------------------------------------------------------------------------