Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Latest commit

 

History

History
13 lines (11 loc) · 340 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 340 Bytes

mc-vc-bot

A Discord bot for the Microsoft Community server that purges text channels after voice channel inactivity.

Requires a SQLite database in (./db/channels.db) Schema:

CREATE TABLE channels (
    voice_id STRING PRIMARY KEY,
    text_id STRING NOT NULL,
    set_to_purge INTEGER NOT NULL
);