├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── SaberUB ├── __init__.py ├── __main__.py ├── database │ ├── __init__.py │ ├── afkdb.py │ ├── filtersdb.py │ ├── gmutedb.py │ ├── notesdb.py │ ├── pmpermitdb.py │ └── welcomedb.py ├── helpers │ ├── adminhelpers.py │ ├── pyrohelper.py │ └── utils.py └── modules │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── alive.py │ ├── dev.py │ ├── filters.py │ ├── help.py │ ├── kang.py │ ├── misc.py │ ├── notes.py │ ├── paste.py │ ├── pmpermit.py │ ├── purge.py │ ├── translate.py │ ├── updater.py │ ├── vidioplayer.py │ ├── welcome.py │ └── whois.py ├── app.json ├── config.py ├── makesession.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m SaberUB 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/README.md -------------------------------------------------------------------------------- /SaberUB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/__init__.py -------------------------------------------------------------------------------- /SaberUB/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/__main__.py -------------------------------------------------------------------------------- /SaberUB/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/database/__init__.py -------------------------------------------------------------------------------- /SaberUB/database/afkdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/database/afkdb.py -------------------------------------------------------------------------------- /SaberUB/database/filtersdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/database/filtersdb.py -------------------------------------------------------------------------------- /SaberUB/database/gmutedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/database/gmutedb.py -------------------------------------------------------------------------------- /SaberUB/database/notesdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/database/notesdb.py -------------------------------------------------------------------------------- /SaberUB/database/pmpermitdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/database/pmpermitdb.py -------------------------------------------------------------------------------- /SaberUB/database/welcomedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/database/welcomedb.py -------------------------------------------------------------------------------- /SaberUB/helpers/adminhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/helpers/adminhelpers.py -------------------------------------------------------------------------------- /SaberUB/helpers/pyrohelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/helpers/pyrohelper.py -------------------------------------------------------------------------------- /SaberUB/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/helpers/utils.py -------------------------------------------------------------------------------- /SaberUB/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/__init__.py -------------------------------------------------------------------------------- /SaberUB/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/admin.py -------------------------------------------------------------------------------- /SaberUB/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/afk.py -------------------------------------------------------------------------------- /SaberUB/modules/alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/alive.py -------------------------------------------------------------------------------- /SaberUB/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/dev.py -------------------------------------------------------------------------------- /SaberUB/modules/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/filters.py -------------------------------------------------------------------------------- /SaberUB/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/help.py -------------------------------------------------------------------------------- /SaberUB/modules/kang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/kang.py -------------------------------------------------------------------------------- /SaberUB/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/misc.py -------------------------------------------------------------------------------- /SaberUB/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/notes.py -------------------------------------------------------------------------------- /SaberUB/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/paste.py -------------------------------------------------------------------------------- /SaberUB/modules/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/pmpermit.py -------------------------------------------------------------------------------- /SaberUB/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/purge.py -------------------------------------------------------------------------------- /SaberUB/modules/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/translate.py -------------------------------------------------------------------------------- /SaberUB/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/updater.py -------------------------------------------------------------------------------- /SaberUB/modules/vidioplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/vidioplayer.py -------------------------------------------------------------------------------- /SaberUB/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/welcome.py -------------------------------------------------------------------------------- /SaberUB/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/SaberUB/modules/whois.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/config.py -------------------------------------------------------------------------------- /makesession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/makesession.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Achu2234/SaberUserBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | --------------------------------------------------------------------------------