AutoChannel Ban Tool

Fetches IDs from /dbdlist.json — not meant for public use.

Download
Script Preview:
import requests
import pyperclip

def main():
    response = requests.get("https://issacos.online/dbdlist.json")
    ids = response.json()

    command = "/autochannel ban ban_targets: " + " ".join(str(i) for i in ids)
    pyperclip.copy(command)

if __name__ == "__main__":
    main()