├── .github └── workflows │ ├── pylint.yml │ └── pythonapp.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── cmrudl.py ├── megadirect └── megadown ├── exampleconfig.py ├── requirements.txt ├── sample_config.py ├── stringsetup.py └── userbot ├── Config ├── Readme.md ├── __init__.py └── catub_config.py ├── __init__.py ├── __main__.py ├── assistant ├── __init__.py ├── bot_pms.py ├── botcontrols.py ├── botmanagers.py ├── hide.py ├── iytdl.py ├── nsfw.py ├── secret.py └── troll.py ├── cache └── readme.md ├── core ├── __init__.py ├── client.py ├── cmdinfo.py ├── data.py ├── decorators.py ├── events.py ├── fasttelethon.py ├── helpers.py ├── inlinebot.py ├── logger.py ├── managers.py ├── pluginManager.py ├── pool.py └── session.py ├── helpers ├── Readme.md ├── __init__.py ├── aiohttp_helper.py ├── chatbot.py ├── emojify.py ├── fonts.py ├── functions │ ├── __init__.py │ ├── findquote.py │ ├── functions.py │ ├── ialivetext.py │ ├── imgtools.py │ ├── jikan.py │ ├── nekos.py │ ├── utils.py │ ├── utube.py │ └── vidtools.py ├── google_image_download.py ├── memeifyhelpers.py ├── memeshelper.py ├── nsfw.py ├── progress.py ├── qhelper.py ├── resources │ ├── alice.txt │ └── states.py ├── styles │ ├── ProductSans-BoldItalic.ttf │ ├── ProductSans-Light.ttf │ ├── RoadRage-Regular.ttf │ ├── digital.ttf │ └── impact.ttf ├── tools.py └── utils │ ├── __init__.py │ ├── events.py │ ├── extdl.py │ ├── format.py │ ├── paste.py │ ├── tools.py │ └── utils.py ├── plugins ├── README.md ├── __init__.py ├── admin.py ├── afk.py ├── alive.py ├── amongus.py ├── android.py ├── anilist.py ├── animation1.py ├── animation2.py ├── animation3.py ├── animation4.py ├── animation5.py ├── animation6.py ├── antiflood.py ├── antispambot.py ├── app.py ├── archive.py ├── art.py ├── art_img.py ├── artsay.py ├── autoprofile.py ├── azan.py ├── badart.py ├── blacklistchats.py ├── blacklistwords.py ├── broadcast.py ├── button.py ├── calc.py ├── carbon.py ├── chain.py ├── channel_download.py ├── chatbot.py ├── climate.py ├── clone.py ├── collage.py ├── corecmds.py ├── covid.py ├── create.py ├── cricket.py ├── custom.py ├── dictionary.py ├── direct_links.py ├── download.py ├── echo.py ├── emojify.py ├── emojigames.py ├── evaluators.py ├── execmod.py ├── externalplugins.py ├── fake.py ├── fedutils.py ├── ffmpeg.py ├── figlet.py ├── fileconverts.py ├── filemanager.py ├── filesummary.py ├── filext.py ├── filters.py ├── fonts.py ├── forward.py ├── fryer.py ├── funarts.py ├── funnyfonts.py ├── funtxts.py ├── gadmin.py ├── gali.py ├── games.py ├── gdrive.py ├── getid.py ├── git.py ├── glitch.py ├── google.py ├── gps.py ├── greetings.py ├── groupactions.py ├── groupdata.py ├── hack.py ├── hash.py ├── help.py ├── heroku.py ├── images.py ├── imgfun.py ├── imgmemes.py ├── invite.py ├── json.py ├── kakashi ├── lastfm.py ├── letmesearch.py ├── linkpreview.py ├── locks.py ├── logchats.py ├── logo.py ├── lyrics.py ├── markdown.py ├── mask.py ├── mediainfo.py ├── mega.py ├── meme.py ├── memes.py ├── memestext.py ├── memify.py ├── mention.py ├── mess.py ├── nekos.py ├── nsfw.py ├── nsfwdetect.py ├── ocr.py ├── pastebin.py ├── ping.py ├── pmpermit.py ├── poll.py ├── poto.py ├── powertools.py ├── privatewelcome.py ├── profile.py ├── punban.py ├── purge.py ├── quotes.py ├── quotly.py ├── randomsticker.py ├── randomtext.py ├── recognize.py ├── reddit.py ├── removebg.py ├── rename.py ├── sangmata.py ├── schedule.py ├── scrapers.py ├── screenshot.py ├── sed.py ├── selfdestruct.py ├── snip.py ├── songs.py ├── spam.py ├── speedtest.py ├── stats.py ├── status.py ├── stickerfun.py ├── stickergen.py ├── stickers.py ├── stt.py ├── sudo.py ├── sysdetails.py ├── tadmin.py ├── telegraph.py ├── textformat.py ├── thumbnail.py ├── time.py ├── tools.py ├── transfer_channel.py ├── translate.py ├── troll.py ├── trolls.py ├── tts.py ├── updater.py ├── upload.py ├── urltools.py ├── wall.py ├── warns.py ├── watch.py ├── webupload.py ├── welcome.py ├── whois.py ├── xiaomi.py └── ytdl.py ├── sql_helper ├── DS_Store ├── __init__.py ├── antiflood_sql.py ├── blacklist_sql.py ├── bot_blacklists.py ├── bot_pms_sql.py ├── bot_starters.py ├── broadcast_sql.py ├── chatbot_sql.py ├── echo_sql.py ├── filter_sql.py ├── gban_sql_helper.py ├── gdrive_sql.py ├── global_collection.py ├── global_collectionjson.py ├── global_list.py ├── globals.py ├── gmute_sql.py ├── google_drive_sql.py ├── locks_sql.py ├── mute_sql.py ├── no_log_pms_sql.py ├── pmpermit_sql.py ├── snip_sql.py ├── warns_sql.py ├── welcome_sql.py └── welcomesql.py └── utils ├── __init__.py ├── checks.py ├── decorators.py ├── pluginmanager.py ├── startup.py └── tools.py /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/README.md -------------------------------------------------------------------------------- /bin/cmrudl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/bin/cmrudl.py -------------------------------------------------------------------------------- /bin/megadirect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/bin/megadirect -------------------------------------------------------------------------------- /bin/megadown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/bin/megadown -------------------------------------------------------------------------------- /exampleconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/exampleconfig.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/sample_config.py -------------------------------------------------------------------------------- /stringsetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/stringsetup.py -------------------------------------------------------------------------------- /userbot/Config/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/Config/Readme.md -------------------------------------------------------------------------------- /userbot/Config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/Config/__init__.py -------------------------------------------------------------------------------- /userbot/Config/catub_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/Config/catub_config.py -------------------------------------------------------------------------------- /userbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/__init__.py -------------------------------------------------------------------------------- /userbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/__main__.py -------------------------------------------------------------------------------- /userbot/assistant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/__init__.py -------------------------------------------------------------------------------- /userbot/assistant/bot_pms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/bot_pms.py -------------------------------------------------------------------------------- /userbot/assistant/botcontrols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/botcontrols.py -------------------------------------------------------------------------------- /userbot/assistant/botmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/botmanagers.py -------------------------------------------------------------------------------- /userbot/assistant/hide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/hide.py -------------------------------------------------------------------------------- /userbot/assistant/iytdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/iytdl.py -------------------------------------------------------------------------------- /userbot/assistant/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/nsfw.py -------------------------------------------------------------------------------- /userbot/assistant/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/secret.py -------------------------------------------------------------------------------- /userbot/assistant/troll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/assistant/troll.py -------------------------------------------------------------------------------- /userbot/cache/readme.md: -------------------------------------------------------------------------------- 1 | To store cache file of CatUserbot 2 | -------------------------------------------------------------------------------- /userbot/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/__init__.py -------------------------------------------------------------------------------- /userbot/core/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/client.py -------------------------------------------------------------------------------- /userbot/core/cmdinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/cmdinfo.py -------------------------------------------------------------------------------- /userbot/core/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/data.py -------------------------------------------------------------------------------- /userbot/core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/decorators.py -------------------------------------------------------------------------------- /userbot/core/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/events.py -------------------------------------------------------------------------------- /userbot/core/fasttelethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/fasttelethon.py -------------------------------------------------------------------------------- /userbot/core/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/helpers.py -------------------------------------------------------------------------------- /userbot/core/inlinebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/inlinebot.py -------------------------------------------------------------------------------- /userbot/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/logger.py -------------------------------------------------------------------------------- /userbot/core/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/managers.py -------------------------------------------------------------------------------- /userbot/core/pluginManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/pluginManager.py -------------------------------------------------------------------------------- /userbot/core/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/pool.py -------------------------------------------------------------------------------- /userbot/core/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/core/session.py -------------------------------------------------------------------------------- /userbot/helpers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/Readme.md -------------------------------------------------------------------------------- /userbot/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/__init__.py -------------------------------------------------------------------------------- /userbot/helpers/aiohttp_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/aiohttp_helper.py -------------------------------------------------------------------------------- /userbot/helpers/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/chatbot.py -------------------------------------------------------------------------------- /userbot/helpers/emojify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/emojify.py -------------------------------------------------------------------------------- /userbot/helpers/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/fonts.py -------------------------------------------------------------------------------- /userbot/helpers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/__init__.py -------------------------------------------------------------------------------- /userbot/helpers/functions/findquote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/findquote.py -------------------------------------------------------------------------------- /userbot/helpers/functions/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/functions.py -------------------------------------------------------------------------------- /userbot/helpers/functions/ialivetext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/ialivetext.py -------------------------------------------------------------------------------- /userbot/helpers/functions/imgtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/imgtools.py -------------------------------------------------------------------------------- /userbot/helpers/functions/jikan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/jikan.py -------------------------------------------------------------------------------- /userbot/helpers/functions/nekos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/nekos.py -------------------------------------------------------------------------------- /userbot/helpers/functions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/utils.py -------------------------------------------------------------------------------- /userbot/helpers/functions/utube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/utube.py -------------------------------------------------------------------------------- /userbot/helpers/functions/vidtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/functions/vidtools.py -------------------------------------------------------------------------------- /userbot/helpers/google_image_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/google_image_download.py -------------------------------------------------------------------------------- /userbot/helpers/memeifyhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/memeifyhelpers.py -------------------------------------------------------------------------------- /userbot/helpers/memeshelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/memeshelper.py -------------------------------------------------------------------------------- /userbot/helpers/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/nsfw.py -------------------------------------------------------------------------------- /userbot/helpers/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/progress.py -------------------------------------------------------------------------------- /userbot/helpers/qhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/qhelper.py -------------------------------------------------------------------------------- /userbot/helpers/resources/alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/resources/alice.txt -------------------------------------------------------------------------------- /userbot/helpers/resources/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/resources/states.py -------------------------------------------------------------------------------- /userbot/helpers/styles/ProductSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/styles/ProductSans-BoldItalic.ttf -------------------------------------------------------------------------------- /userbot/helpers/styles/ProductSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/styles/ProductSans-Light.ttf -------------------------------------------------------------------------------- /userbot/helpers/styles/RoadRage-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/styles/RoadRage-Regular.ttf -------------------------------------------------------------------------------- /userbot/helpers/styles/digital.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/styles/digital.ttf -------------------------------------------------------------------------------- /userbot/helpers/styles/impact.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/styles/impact.ttf -------------------------------------------------------------------------------- /userbot/helpers/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/tools.py -------------------------------------------------------------------------------- /userbot/helpers/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/utils/__init__.py -------------------------------------------------------------------------------- /userbot/helpers/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/utils/events.py -------------------------------------------------------------------------------- /userbot/helpers/utils/extdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/utils/extdl.py -------------------------------------------------------------------------------- /userbot/helpers/utils/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/utils/format.py -------------------------------------------------------------------------------- /userbot/helpers/utils/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/utils/paste.py -------------------------------------------------------------------------------- /userbot/helpers/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/utils/tools.py -------------------------------------------------------------------------------- /userbot/helpers/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/helpers/utils/utils.py -------------------------------------------------------------------------------- /userbot/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/README.md -------------------------------------------------------------------------------- /userbot/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/__init__.py -------------------------------------------------------------------------------- /userbot/plugins/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/admin.py -------------------------------------------------------------------------------- /userbot/plugins/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/afk.py -------------------------------------------------------------------------------- /userbot/plugins/alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/alive.py -------------------------------------------------------------------------------- /userbot/plugins/amongus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/amongus.py -------------------------------------------------------------------------------- /userbot/plugins/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/android.py -------------------------------------------------------------------------------- /userbot/plugins/anilist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/anilist.py -------------------------------------------------------------------------------- /userbot/plugins/animation1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/animation1.py -------------------------------------------------------------------------------- /userbot/plugins/animation2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/animation2.py -------------------------------------------------------------------------------- /userbot/plugins/animation3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/animation3.py -------------------------------------------------------------------------------- /userbot/plugins/animation4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/animation4.py -------------------------------------------------------------------------------- /userbot/plugins/animation5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/animation5.py -------------------------------------------------------------------------------- /userbot/plugins/animation6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/animation6.py -------------------------------------------------------------------------------- /userbot/plugins/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/antiflood.py -------------------------------------------------------------------------------- /userbot/plugins/antispambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/antispambot.py -------------------------------------------------------------------------------- /userbot/plugins/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/app.py -------------------------------------------------------------------------------- /userbot/plugins/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/archive.py -------------------------------------------------------------------------------- /userbot/plugins/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/art.py -------------------------------------------------------------------------------- /userbot/plugins/art_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/art_img.py -------------------------------------------------------------------------------- /userbot/plugins/artsay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/artsay.py -------------------------------------------------------------------------------- /userbot/plugins/autoprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/autoprofile.py -------------------------------------------------------------------------------- /userbot/plugins/azan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/azan.py -------------------------------------------------------------------------------- /userbot/plugins/badart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/badart.py -------------------------------------------------------------------------------- /userbot/plugins/blacklistchats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/blacklistchats.py -------------------------------------------------------------------------------- /userbot/plugins/blacklistwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/blacklistwords.py -------------------------------------------------------------------------------- /userbot/plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/broadcast.py -------------------------------------------------------------------------------- /userbot/plugins/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/button.py -------------------------------------------------------------------------------- /userbot/plugins/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/calc.py -------------------------------------------------------------------------------- /userbot/plugins/carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/carbon.py -------------------------------------------------------------------------------- /userbot/plugins/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/chain.py -------------------------------------------------------------------------------- /userbot/plugins/channel_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/channel_download.py -------------------------------------------------------------------------------- /userbot/plugins/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/chatbot.py -------------------------------------------------------------------------------- /userbot/plugins/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/climate.py -------------------------------------------------------------------------------- /userbot/plugins/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/clone.py -------------------------------------------------------------------------------- /userbot/plugins/collage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/collage.py -------------------------------------------------------------------------------- /userbot/plugins/corecmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/corecmds.py -------------------------------------------------------------------------------- /userbot/plugins/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/covid.py -------------------------------------------------------------------------------- /userbot/plugins/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/create.py -------------------------------------------------------------------------------- /userbot/plugins/cricket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/cricket.py -------------------------------------------------------------------------------- /userbot/plugins/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/custom.py -------------------------------------------------------------------------------- /userbot/plugins/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/dictionary.py -------------------------------------------------------------------------------- /userbot/plugins/direct_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/direct_links.py -------------------------------------------------------------------------------- /userbot/plugins/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/download.py -------------------------------------------------------------------------------- /userbot/plugins/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/echo.py -------------------------------------------------------------------------------- /userbot/plugins/emojify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/emojify.py -------------------------------------------------------------------------------- /userbot/plugins/emojigames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/emojigames.py -------------------------------------------------------------------------------- /userbot/plugins/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/evaluators.py -------------------------------------------------------------------------------- /userbot/plugins/execmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/execmod.py -------------------------------------------------------------------------------- /userbot/plugins/externalplugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/externalplugins.py -------------------------------------------------------------------------------- /userbot/plugins/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/fake.py -------------------------------------------------------------------------------- /userbot/plugins/fedutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/fedutils.py -------------------------------------------------------------------------------- /userbot/plugins/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/ffmpeg.py -------------------------------------------------------------------------------- /userbot/plugins/figlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/figlet.py -------------------------------------------------------------------------------- /userbot/plugins/fileconverts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/fileconverts.py -------------------------------------------------------------------------------- /userbot/plugins/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/filemanager.py -------------------------------------------------------------------------------- /userbot/plugins/filesummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/filesummary.py -------------------------------------------------------------------------------- /userbot/plugins/filext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/filext.py -------------------------------------------------------------------------------- /userbot/plugins/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/filters.py -------------------------------------------------------------------------------- /userbot/plugins/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/fonts.py -------------------------------------------------------------------------------- /userbot/plugins/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/forward.py -------------------------------------------------------------------------------- /userbot/plugins/fryer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/fryer.py -------------------------------------------------------------------------------- /userbot/plugins/funarts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/funarts.py -------------------------------------------------------------------------------- /userbot/plugins/funnyfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/funnyfonts.py -------------------------------------------------------------------------------- /userbot/plugins/funtxts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/funtxts.py -------------------------------------------------------------------------------- /userbot/plugins/gadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/gadmin.py -------------------------------------------------------------------------------- /userbot/plugins/gali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/gali.py -------------------------------------------------------------------------------- /userbot/plugins/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/games.py -------------------------------------------------------------------------------- /userbot/plugins/gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/gdrive.py -------------------------------------------------------------------------------- /userbot/plugins/getid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/getid.py -------------------------------------------------------------------------------- /userbot/plugins/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/git.py -------------------------------------------------------------------------------- /userbot/plugins/glitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/glitch.py -------------------------------------------------------------------------------- /userbot/plugins/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/google.py -------------------------------------------------------------------------------- /userbot/plugins/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/gps.py -------------------------------------------------------------------------------- /userbot/plugins/greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/greetings.py -------------------------------------------------------------------------------- /userbot/plugins/groupactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/groupactions.py -------------------------------------------------------------------------------- /userbot/plugins/groupdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/groupdata.py -------------------------------------------------------------------------------- /userbot/plugins/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/hack.py -------------------------------------------------------------------------------- /userbot/plugins/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/hash.py -------------------------------------------------------------------------------- /userbot/plugins/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/help.py -------------------------------------------------------------------------------- /userbot/plugins/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/heroku.py -------------------------------------------------------------------------------- /userbot/plugins/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/images.py -------------------------------------------------------------------------------- /userbot/plugins/imgfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/imgfun.py -------------------------------------------------------------------------------- /userbot/plugins/imgmemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/imgmemes.py -------------------------------------------------------------------------------- /userbot/plugins/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/invite.py -------------------------------------------------------------------------------- /userbot/plugins/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/json.py -------------------------------------------------------------------------------- /userbot/plugins/kakashi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/kakashi -------------------------------------------------------------------------------- /userbot/plugins/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/lastfm.py -------------------------------------------------------------------------------- /userbot/plugins/letmesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/letmesearch.py -------------------------------------------------------------------------------- /userbot/plugins/linkpreview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/linkpreview.py -------------------------------------------------------------------------------- /userbot/plugins/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/locks.py -------------------------------------------------------------------------------- /userbot/plugins/logchats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/logchats.py -------------------------------------------------------------------------------- /userbot/plugins/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/logo.py -------------------------------------------------------------------------------- /userbot/plugins/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/lyrics.py -------------------------------------------------------------------------------- /userbot/plugins/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/markdown.py -------------------------------------------------------------------------------- /userbot/plugins/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/mask.py -------------------------------------------------------------------------------- /userbot/plugins/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/mediainfo.py -------------------------------------------------------------------------------- /userbot/plugins/mega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/mega.py -------------------------------------------------------------------------------- /userbot/plugins/meme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/meme.py -------------------------------------------------------------------------------- /userbot/plugins/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/memes.py -------------------------------------------------------------------------------- /userbot/plugins/memestext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/memestext.py -------------------------------------------------------------------------------- /userbot/plugins/memify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/memify.py -------------------------------------------------------------------------------- /userbot/plugins/mention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/mention.py -------------------------------------------------------------------------------- /userbot/plugins/mess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/mess.py -------------------------------------------------------------------------------- /userbot/plugins/nekos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/nekos.py -------------------------------------------------------------------------------- /userbot/plugins/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/nsfw.py -------------------------------------------------------------------------------- /userbot/plugins/nsfwdetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/nsfwdetect.py -------------------------------------------------------------------------------- /userbot/plugins/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/ocr.py -------------------------------------------------------------------------------- /userbot/plugins/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/pastebin.py -------------------------------------------------------------------------------- /userbot/plugins/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/ping.py -------------------------------------------------------------------------------- /userbot/plugins/pmpermit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/pmpermit.py -------------------------------------------------------------------------------- /userbot/plugins/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/poll.py -------------------------------------------------------------------------------- /userbot/plugins/poto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/poto.py -------------------------------------------------------------------------------- /userbot/plugins/powertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/powertools.py -------------------------------------------------------------------------------- /userbot/plugins/privatewelcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/privatewelcome.py -------------------------------------------------------------------------------- /userbot/plugins/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/profile.py -------------------------------------------------------------------------------- /userbot/plugins/punban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/punban.py -------------------------------------------------------------------------------- /userbot/plugins/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/purge.py -------------------------------------------------------------------------------- /userbot/plugins/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/quotes.py -------------------------------------------------------------------------------- /userbot/plugins/quotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/quotly.py -------------------------------------------------------------------------------- /userbot/plugins/randomsticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/randomsticker.py -------------------------------------------------------------------------------- /userbot/plugins/randomtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/randomtext.py -------------------------------------------------------------------------------- /userbot/plugins/recognize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/recognize.py -------------------------------------------------------------------------------- /userbot/plugins/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/reddit.py -------------------------------------------------------------------------------- /userbot/plugins/removebg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/removebg.py -------------------------------------------------------------------------------- /userbot/plugins/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/rename.py -------------------------------------------------------------------------------- /userbot/plugins/sangmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/sangmata.py -------------------------------------------------------------------------------- /userbot/plugins/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/schedule.py -------------------------------------------------------------------------------- /userbot/plugins/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/scrapers.py -------------------------------------------------------------------------------- /userbot/plugins/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/screenshot.py -------------------------------------------------------------------------------- /userbot/plugins/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/sed.py -------------------------------------------------------------------------------- /userbot/plugins/selfdestruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/selfdestruct.py -------------------------------------------------------------------------------- /userbot/plugins/snip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/snip.py -------------------------------------------------------------------------------- /userbot/plugins/songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/songs.py -------------------------------------------------------------------------------- /userbot/plugins/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/spam.py -------------------------------------------------------------------------------- /userbot/plugins/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/speedtest.py -------------------------------------------------------------------------------- /userbot/plugins/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/stats.py -------------------------------------------------------------------------------- /userbot/plugins/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/status.py -------------------------------------------------------------------------------- /userbot/plugins/stickerfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/stickerfun.py -------------------------------------------------------------------------------- /userbot/plugins/stickergen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/stickergen.py -------------------------------------------------------------------------------- /userbot/plugins/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/stickers.py -------------------------------------------------------------------------------- /userbot/plugins/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/stt.py -------------------------------------------------------------------------------- /userbot/plugins/sudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/sudo.py -------------------------------------------------------------------------------- /userbot/plugins/sysdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/sysdetails.py -------------------------------------------------------------------------------- /userbot/plugins/tadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/tadmin.py -------------------------------------------------------------------------------- /userbot/plugins/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/telegraph.py -------------------------------------------------------------------------------- /userbot/plugins/textformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/textformat.py -------------------------------------------------------------------------------- /userbot/plugins/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/thumbnail.py -------------------------------------------------------------------------------- /userbot/plugins/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/time.py -------------------------------------------------------------------------------- /userbot/plugins/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/tools.py -------------------------------------------------------------------------------- /userbot/plugins/transfer_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/transfer_channel.py -------------------------------------------------------------------------------- /userbot/plugins/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/translate.py -------------------------------------------------------------------------------- /userbot/plugins/troll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/troll.py -------------------------------------------------------------------------------- /userbot/plugins/trolls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/trolls.py -------------------------------------------------------------------------------- /userbot/plugins/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/tts.py -------------------------------------------------------------------------------- /userbot/plugins/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/updater.py -------------------------------------------------------------------------------- /userbot/plugins/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/upload.py -------------------------------------------------------------------------------- /userbot/plugins/urltools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/urltools.py -------------------------------------------------------------------------------- /userbot/plugins/wall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/wall.py -------------------------------------------------------------------------------- /userbot/plugins/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/warns.py -------------------------------------------------------------------------------- /userbot/plugins/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/watch.py -------------------------------------------------------------------------------- /userbot/plugins/webupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/webupload.py -------------------------------------------------------------------------------- /userbot/plugins/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/welcome.py -------------------------------------------------------------------------------- /userbot/plugins/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/whois.py -------------------------------------------------------------------------------- /userbot/plugins/xiaomi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/xiaomi.py -------------------------------------------------------------------------------- /userbot/plugins/ytdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/plugins/ytdl.py -------------------------------------------------------------------------------- /userbot/sql_helper/DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/DS_Store -------------------------------------------------------------------------------- /userbot/sql_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/__init__.py -------------------------------------------------------------------------------- /userbot/sql_helper/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/antiflood_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/blacklist_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/bot_blacklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/bot_blacklists.py -------------------------------------------------------------------------------- /userbot/sql_helper/bot_pms_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/bot_pms_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/bot_starters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/bot_starters.py -------------------------------------------------------------------------------- /userbot/sql_helper/broadcast_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/broadcast_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/chatbot_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/chatbot_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/echo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/echo_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/filter_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/filter_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/gban_sql_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/gban_sql_helper.py -------------------------------------------------------------------------------- /userbot/sql_helper/gdrive_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/gdrive_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/global_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/global_collection.py -------------------------------------------------------------------------------- /userbot/sql_helper/global_collectionjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/global_collectionjson.py -------------------------------------------------------------------------------- /userbot/sql_helper/global_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/global_list.py -------------------------------------------------------------------------------- /userbot/sql_helper/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/globals.py -------------------------------------------------------------------------------- /userbot/sql_helper/gmute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/gmute_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/google_drive_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/google_drive_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/locks_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/mute_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/mute_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/no_log_pms_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/no_log_pms_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/pmpermit_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/pmpermit_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/snip_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/snip_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/warns_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/welcome_sql.py -------------------------------------------------------------------------------- /userbot/sql_helper/welcomesql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/sql_helper/welcomesql.py -------------------------------------------------------------------------------- /userbot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/utils/__init__.py -------------------------------------------------------------------------------- /userbot/utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/utils/checks.py -------------------------------------------------------------------------------- /userbot/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/utils/decorators.py -------------------------------------------------------------------------------- /userbot/utils/pluginmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/utils/pluginmanager.py -------------------------------------------------------------------------------- /userbot/utils/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/utils/startup.py -------------------------------------------------------------------------------- /userbot/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jisan09/BadCat/HEAD/userbot/utils/tools.py --------------------------------------------------------------------------------