├── .gitignore ├── Hellbot ├── __init__.py ├── __main__.py ├── core │ ├── __init__.py │ ├── clients.py │ ├── config.py │ ├── database.py │ ├── initializer.py │ └── logger.py ├── functions │ ├── __init__.py │ ├── admins.py │ ├── convert.py │ ├── driver.py │ ├── formatter.py │ ├── images.py │ ├── media.py │ ├── paste.py │ ├── scraping.py │ ├── sticker.py │ ├── templates.py │ ├── tools.py │ └── utility.py ├── plugins │ ├── __init__.py │ ├── bot │ │ ├── __init__.py │ │ ├── bot.py │ │ ├── callbacks.py │ │ ├── forcesub.py │ │ ├── inline.py │ │ ├── sessions.py │ │ └── users.py │ ├── btnsG.py │ ├── btnsK.py │ ├── decorator.py │ ├── help.py │ └── user │ │ ├── __init__.py │ │ ├── admins.py │ │ ├── afk.py │ │ ├── anime.py │ │ ├── antiflood.py │ │ ├── archiver.py │ │ ├── autopost.py │ │ ├── blacklist.py │ │ ├── bot.py │ │ ├── carbon.py │ │ ├── climate.py │ │ ├── clone.py │ │ ├── convert.py │ │ ├── core.py │ │ ├── downloads.py │ │ ├── echo.py │ │ ├── eval.py │ │ ├── federation.py │ │ ├── filters.py │ │ ├── gatcha.py │ │ ├── gcast.py │ │ ├── google.py │ │ ├── greetings.py │ │ ├── groups.py │ │ ├── images.py │ │ ├── instagram.py │ │ ├── locker.py │ │ ├── logger.py │ │ ├── logo.py │ │ ├── manager.py │ │ ├── massactions.py │ │ ├── media.py │ │ ├── pmpermit.py │ │ ├── power.py │ │ ├── profile.py │ │ ├── purge.py │ │ ├── quote.py │ │ ├── snips.py │ │ ├── songs.py │ │ ├── spam.py │ │ ├── stan.py │ │ ├── statistics.py │ │ ├── sticker.py │ │ ├── superpowers.py │ │ ├── telegraph.py │ │ ├── tools.py │ │ ├── trimmer.py │ │ ├── uploads.py │ │ ├── utilities.py │ │ ├── voicechat.py │ │ └── youtube.py └── resources │ ├── fonts │ └── Montserrat.ttf │ └── images │ ├── hellbot_alive.png │ └── hellbot_logo.png ├── LICENSE ├── README.md ├── example.env ├── requirements.txt └── start.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /Hellbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/__init__.py -------------------------------------------------------------------------------- /Hellbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/__main__.py -------------------------------------------------------------------------------- /Hellbot/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/core/__init__.py -------------------------------------------------------------------------------- /Hellbot/core/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/core/clients.py -------------------------------------------------------------------------------- /Hellbot/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/core/config.py -------------------------------------------------------------------------------- /Hellbot/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/core/database.py -------------------------------------------------------------------------------- /Hellbot/core/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/core/initializer.py -------------------------------------------------------------------------------- /Hellbot/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/core/logger.py -------------------------------------------------------------------------------- /Hellbot/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hellbot/functions/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/admins.py -------------------------------------------------------------------------------- /Hellbot/functions/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/convert.py -------------------------------------------------------------------------------- /Hellbot/functions/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/driver.py -------------------------------------------------------------------------------- /Hellbot/functions/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/formatter.py -------------------------------------------------------------------------------- /Hellbot/functions/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/images.py -------------------------------------------------------------------------------- /Hellbot/functions/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/media.py -------------------------------------------------------------------------------- /Hellbot/functions/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/paste.py -------------------------------------------------------------------------------- /Hellbot/functions/scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/scraping.py -------------------------------------------------------------------------------- /Hellbot/functions/sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/sticker.py -------------------------------------------------------------------------------- /Hellbot/functions/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/templates.py -------------------------------------------------------------------------------- /Hellbot/functions/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/tools.py -------------------------------------------------------------------------------- /Hellbot/functions/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/functions/utility.py -------------------------------------------------------------------------------- /Hellbot/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hellbot/plugins/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/bot/__init__.py -------------------------------------------------------------------------------- /Hellbot/plugins/bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/bot/bot.py -------------------------------------------------------------------------------- /Hellbot/plugins/bot/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/bot/callbacks.py -------------------------------------------------------------------------------- /Hellbot/plugins/bot/forcesub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/bot/forcesub.py -------------------------------------------------------------------------------- /Hellbot/plugins/bot/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/bot/inline.py -------------------------------------------------------------------------------- /Hellbot/plugins/bot/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/bot/sessions.py -------------------------------------------------------------------------------- /Hellbot/plugins/bot/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/bot/users.py -------------------------------------------------------------------------------- /Hellbot/plugins/btnsG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/btnsG.py -------------------------------------------------------------------------------- /Hellbot/plugins/btnsK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/btnsK.py -------------------------------------------------------------------------------- /Hellbot/plugins/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/decorator.py -------------------------------------------------------------------------------- /Hellbot/plugins/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/help.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/__init__.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/admins.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/afk.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/anime.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/antiflood.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/archiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/archiver.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/autopost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/autopost.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/blacklist.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/bot.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/carbon.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/climate.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/clone.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/convert.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/core.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/downloads.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/echo.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/eval.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/federation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/federation.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/filters.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/gatcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/gatcha.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/gcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/gcast.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/google.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/greetings.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/groups.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/images.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/instagram.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/locker.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/logger.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/logo.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/manager.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/massactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/massactions.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/media.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/pmpermit.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/power.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/profile.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/purge.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/quote.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/snips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/snips.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/songs.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/spam.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/stan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/stan.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/statistics.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/sticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/sticker.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/superpowers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/superpowers.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/telegraph.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/tools.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/trimmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/trimmer.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/uploads.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/utilities.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/voicechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/voicechat.py -------------------------------------------------------------------------------- /Hellbot/plugins/user/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/plugins/user/youtube.py -------------------------------------------------------------------------------- /Hellbot/resources/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/resources/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /Hellbot/resources/images/hellbot_alive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/resources/images/hellbot_alive.png -------------------------------------------------------------------------------- /Hellbot/resources/images/hellbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/Hellbot/resources/images/hellbot_logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/README.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/example.env -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-HellBot/Plugins/HEAD/start.sh --------------------------------------------------------------------------------