├── .github └── workflows │ ├── alibabacloud.yml │ ├── aws.yml │ ├── azure.yml │ ├── docker-publish.yml │ └── google.yml ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── Setup venv.bat ├── _config.yml ├── app.json ├── bob.jpg ├── exp.sh ├── heroku.yml ├── hitler.jpg ├── kim.jpg ├── mrjoker.png ├── mrjoker.session-journal ├── mrjoker ├── __init__.py ├── __main__.py ├── conf.py ├── elevated_users.json ├── events.py ├── function │ ├── carbonfunc.py │ ├── dbfun.py │ └── progress.py ├── hextra │ ├── admin_rights.py │ ├── aichat.py │ └── badmedia.py ├── imgedit │ ├── edit_1.py │ ├── edit_2.py │ ├── edit_3.py │ ├── edit_4.py │ └── edit_5.py ├── modules │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── animation.py │ ├── anime.py │ ├── animequotes.py │ ├── animequotesstring.py │ ├── anti_spam.py │ ├── antiflood.py │ ├── approve.py │ ├── backup.py │ ├── bans.py │ ├── barcode.py │ ├── base.py │ ├── blacklist.py │ ├── blacklist_stickers.py │ ├── blacklistusers.py │ ├── callback.py │ ├── camscanner.py │ ├── carbon.py │ ├── chatbots.py │ ├── cleaner.py │ ├── connection.py │ ├── covid.py │ ├── cricketscore.py │ ├── currency_converter.py │ ├── cust_filters.py │ ├── dbcleanup.py │ ├── debug.py │ ├── dev.py │ ├── disable.py │ ├── disasters.py │ ├── encrypt.py │ ├── error_handler.py │ ├── eval.py │ ├── fbdl.py │ ├── feds.py │ ├── force_subscribe.py │ ├── funs.py │ ├── game.py │ ├── get_common_chats.py │ ├── gettime.py │ ├── google.py │ ├── gps.py │ ├── grammer.py │ ├── grouptool.py │ ├── gsearch.py │ ├── gtranslator.py │ ├── helper_funcs │ │ ├── __init__.py │ │ ├── alternate.py │ │ ├── chat_status.py │ │ ├── ct2.py │ │ ├── extraction.py │ │ ├── filters.py │ │ ├── fun_strings.py │ │ ├── handlers.py │ │ ├── misc.py │ │ ├── msg_types.py │ │ ├── regex_helper.py │ │ ├── string_handling.py │ │ ├── string_store.py │ │ └── telethn │ │ │ ├── __init__.py │ │ │ └── chatstatus.py │ ├── heroku.py │ ├── imdb.py │ ├── imgeditor.py │ ├── inline.py │ ├── json.py │ ├── karma.py │ ├── kukiai.py │ ├── lock.py │ ├── logchannel.py │ ├── logomaker.py │ ├── luna_ai.py │ ├── math.py │ ├── media.py │ ├── meme.py │ ├── memes.py │ ├── mih.py │ ├── mjplayer.py │ ├── modules.py │ ├── moretool.py │ ├── nightmode.py │ ├── note.py │ ├── phone.py │ ├── pin.py │ ├── ping.py │ ├── plet.py │ ├── poll.py │ ├── purge.py │ ├── qoutly.py │ ├── reporting.py │ ├── reverseimage.py │ ├── rules.py │ ├── sed.py │ ├── send.py │ ├── shell.py │ ├── shield.py │ ├── shippering.py │ ├── shout.py │ ├── snipe.py │ ├── speachtotext.py │ ├── speedtest.py │ ├── sql │ │ ├── __init__.py │ │ ├── afk_sql.py │ │ ├── aihelp_sql.py │ │ ├── antiflood_sql.py │ │ ├── approve_sql.py │ │ ├── blacklist_sql.py │ │ ├── blacklistusers_sql.py │ │ ├── blsticker_sql.py │ │ ├── chatbot_sql.py │ │ ├── chats_sql.py │ │ ├── cleaner_sql.py │ │ ├── connection_sql.py │ │ ├── cust_filters_sql.py │ │ ├── disable_sql.py │ │ ├── elevated_sql.py │ │ ├── feds_sql.py │ │ ├── global_bans_sql.py │ │ ├── kukiai_sql.py │ │ ├── last_fm_sql.py │ │ ├── locks_sql.py │ │ ├── log_channel_sql.py │ │ ├── notes_sql.py │ │ ├── nsfw_sql.py │ │ ├── pin_sql.py │ │ ├── reporting_sql.py │ │ ├── rss_sql.py │ │ ├── rules_sql.py │ │ ├── setbio_sql.py │ │ ├── urlblacklist_sql.py │ │ ├── userinfo_sql.py │ │ ├── users_sql.py │ │ ├── warns_sql.py │ │ └── welcome_sql.py │ ├── sql_extended │ │ ├── forceSubscribe_sql.py │ │ ├── night_mode_sql.py │ │ └── nsfw_watch_sql.py │ ├── stickers.py │ ├── tagall.py │ ├── telegraph.py │ ├── telethnfun.py │ ├── texttospeech.py │ ├── thonkify_dict.py │ ├── truth_and_dare.py │ ├── truth_and_dare_string.py │ ├── tts.py │ ├── ud.py │ ├── urlblacklist.py │ ├── urlupload.py │ ├── user.py │ ├── userinfo.py │ ├── vs.py │ ├── wallpaper.py │ ├── warns.py │ ├── welcome.py │ ├── whatanime.py │ ├── whois.py │ ├── wiki.py │ ├── ytdl.py │ ├── zipper.py │ └── zombie.py ├── mongo.py ├── mwt.py ├── pack │ ├── 2.jpg │ ├── Another Danger - Demo.otf │ ├── Another Danger Slanted - Demo.otf │ ├── CloisterBlack.ttf │ ├── Deadly Advance Italic.otf │ ├── Deadly Advance Italic.ttf │ ├── Deadly Advance.otf │ ├── Deadly Advance.ttf │ ├── Gothic-Joker.ttf │ ├── Knife.otf │ ├── Maghrib.ttf │ ├── No Surrender Italic.otf │ ├── No Surrender Italic.ttf │ ├── No Surrender.otf │ ├── No Surrender.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ ├── Stranger back in the Night.ttf │ ├── True Lies.ttf │ ├── Vampire Wars Italic.otf │ ├── Vampire Wars Italic.ttf │ ├── Vampire Wars.otf │ ├── Vampire Wars.ttf │ ├── blackimg.jpg │ ├── default.ttf │ ├── f │ ├── fjoker.jpg │ ├── go3v2.ttf │ └── ii ├── pyro │ ├── dark.py │ ├── errors.py │ ├── pluginshelper.py │ └── telethonbasics.py ├── repo ├── sample_config.py ├── services │ └── dk.py └── utils │ ├── __init__.py │ ├── dbfunc.py │ ├── errors.py │ ├── exceptions.py │ ├── filter_groups.py │ ├── inlinehelper.py │ ├── plh.py │ ├── progress.py │ ├── tools.py │ └── ut.py ├── mwt.py ├── profanity_wordlist.txt ├── requirements.txt ├── restart.bat ├── runtime.txt ├── sample_config.py ├── start.bat └── start_service.bat /.github/workflows/alibabacloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/.github/workflows/alibabacloud.yml -------------------------------------------------------------------------------- /.github/workflows/aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/.github/workflows/aws.yml -------------------------------------------------------------------------------- /.github/workflows/azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/.github/workflows/azure.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/google.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/.github/workflows/google.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/README.md -------------------------------------------------------------------------------- /Setup venv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/Setup venv.bat -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/_config.yml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/app.json -------------------------------------------------------------------------------- /bob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/bob.jpg -------------------------------------------------------------------------------- /exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/exp.sh -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/heroku.yml -------------------------------------------------------------------------------- /hitler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/hitler.jpg -------------------------------------------------------------------------------- /kim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/kim.jpg -------------------------------------------------------------------------------- /mrjoker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker.png -------------------------------------------------------------------------------- /mrjoker.session-journal: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mrjoker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/__init__.py -------------------------------------------------------------------------------- /mrjoker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/__main__.py -------------------------------------------------------------------------------- /mrjoker/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/conf.py -------------------------------------------------------------------------------- /mrjoker/elevated_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/elevated_users.json -------------------------------------------------------------------------------- /mrjoker/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/events.py -------------------------------------------------------------------------------- /mrjoker/function/carbonfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/function/carbonfunc.py -------------------------------------------------------------------------------- /mrjoker/function/dbfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/function/dbfun.py -------------------------------------------------------------------------------- /mrjoker/function/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/function/progress.py -------------------------------------------------------------------------------- /mrjoker/hextra/admin_rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/hextra/admin_rights.py -------------------------------------------------------------------------------- /mrjoker/hextra/aichat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/hextra/aichat.py -------------------------------------------------------------------------------- /mrjoker/hextra/badmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/hextra/badmedia.py -------------------------------------------------------------------------------- /mrjoker/imgedit/edit_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/imgedit/edit_1.py -------------------------------------------------------------------------------- /mrjoker/imgedit/edit_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/imgedit/edit_2.py -------------------------------------------------------------------------------- /mrjoker/imgedit/edit_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/imgedit/edit_3.py -------------------------------------------------------------------------------- /mrjoker/imgedit/edit_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/imgedit/edit_4.py -------------------------------------------------------------------------------- /mrjoker/imgedit/edit_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/imgedit/edit_5.py -------------------------------------------------------------------------------- /mrjoker/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/__init__.py -------------------------------------------------------------------------------- /mrjoker/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/admin.py -------------------------------------------------------------------------------- /mrjoker/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/afk.py -------------------------------------------------------------------------------- /mrjoker/modules/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/animation.py -------------------------------------------------------------------------------- /mrjoker/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/anime.py -------------------------------------------------------------------------------- /mrjoker/modules/animequotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/animequotes.py -------------------------------------------------------------------------------- /mrjoker/modules/animequotesstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/animequotesstring.py -------------------------------------------------------------------------------- /mrjoker/modules/anti_spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/anti_spam.py -------------------------------------------------------------------------------- /mrjoker/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/antiflood.py -------------------------------------------------------------------------------- /mrjoker/modules/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/approve.py -------------------------------------------------------------------------------- /mrjoker/modules/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/backup.py -------------------------------------------------------------------------------- /mrjoker/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/bans.py -------------------------------------------------------------------------------- /mrjoker/modules/barcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/barcode.py -------------------------------------------------------------------------------- /mrjoker/modules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/base.py -------------------------------------------------------------------------------- /mrjoker/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/blacklist.py -------------------------------------------------------------------------------- /mrjoker/modules/blacklist_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/blacklist_stickers.py -------------------------------------------------------------------------------- /mrjoker/modules/blacklistusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/blacklistusers.py -------------------------------------------------------------------------------- /mrjoker/modules/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/callback.py -------------------------------------------------------------------------------- /mrjoker/modules/camscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/camscanner.py -------------------------------------------------------------------------------- /mrjoker/modules/carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/carbon.py -------------------------------------------------------------------------------- /mrjoker/modules/chatbots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/chatbots.py -------------------------------------------------------------------------------- /mrjoker/modules/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/cleaner.py -------------------------------------------------------------------------------- /mrjoker/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/connection.py -------------------------------------------------------------------------------- /mrjoker/modules/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/covid.py -------------------------------------------------------------------------------- /mrjoker/modules/cricketscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/cricketscore.py -------------------------------------------------------------------------------- /mrjoker/modules/currency_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/currency_converter.py -------------------------------------------------------------------------------- /mrjoker/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/cust_filters.py -------------------------------------------------------------------------------- /mrjoker/modules/dbcleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/dbcleanup.py -------------------------------------------------------------------------------- /mrjoker/modules/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/debug.py -------------------------------------------------------------------------------- /mrjoker/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/dev.py -------------------------------------------------------------------------------- /mrjoker/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/disable.py -------------------------------------------------------------------------------- /mrjoker/modules/disasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/disasters.py -------------------------------------------------------------------------------- /mrjoker/modules/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/encrypt.py -------------------------------------------------------------------------------- /mrjoker/modules/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/error_handler.py -------------------------------------------------------------------------------- /mrjoker/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/eval.py -------------------------------------------------------------------------------- /mrjoker/modules/fbdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/fbdl.py -------------------------------------------------------------------------------- /mrjoker/modules/feds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/feds.py -------------------------------------------------------------------------------- /mrjoker/modules/force_subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/force_subscribe.py -------------------------------------------------------------------------------- /mrjoker/modules/funs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/funs.py -------------------------------------------------------------------------------- /mrjoker/modules/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/game.py -------------------------------------------------------------------------------- /mrjoker/modules/get_common_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/get_common_chats.py -------------------------------------------------------------------------------- /mrjoker/modules/gettime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/gettime.py -------------------------------------------------------------------------------- /mrjoker/modules/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/google.py -------------------------------------------------------------------------------- /mrjoker/modules/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/gps.py -------------------------------------------------------------------------------- /mrjoker/modules/grammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/grammer.py -------------------------------------------------------------------------------- /mrjoker/modules/grouptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/grouptool.py -------------------------------------------------------------------------------- /mrjoker/modules/gsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/gsearch.py -------------------------------------------------------------------------------- /mrjoker/modules/gtranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/gtranslator.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/__init__.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/alternate.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/ct2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/ct2.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/fun_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/fun_strings.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/regex_helper.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/string_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/string_store.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/telethn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/telethn/__init__.py -------------------------------------------------------------------------------- /mrjoker/modules/helper_funcs/telethn/chatstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/helper_funcs/telethn/chatstatus.py -------------------------------------------------------------------------------- /mrjoker/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/heroku.py -------------------------------------------------------------------------------- /mrjoker/modules/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/imdb.py -------------------------------------------------------------------------------- /mrjoker/modules/imgeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/imgeditor.py -------------------------------------------------------------------------------- /mrjoker/modules/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/inline.py -------------------------------------------------------------------------------- /mrjoker/modules/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/json.py -------------------------------------------------------------------------------- /mrjoker/modules/karma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/karma.py -------------------------------------------------------------------------------- /mrjoker/modules/kukiai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/kukiai.py -------------------------------------------------------------------------------- /mrjoker/modules/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/lock.py -------------------------------------------------------------------------------- /mrjoker/modules/logchannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/logchannel.py -------------------------------------------------------------------------------- /mrjoker/modules/logomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/logomaker.py -------------------------------------------------------------------------------- /mrjoker/modules/luna_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/luna_ai.py -------------------------------------------------------------------------------- /mrjoker/modules/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/math.py -------------------------------------------------------------------------------- /mrjoker/modules/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/media.py -------------------------------------------------------------------------------- /mrjoker/modules/meme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/meme.py -------------------------------------------------------------------------------- /mrjoker/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/memes.py -------------------------------------------------------------------------------- /mrjoker/modules/mih.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/mih.py -------------------------------------------------------------------------------- /mrjoker/modules/mjplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/mjplayer.py -------------------------------------------------------------------------------- /mrjoker/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/modules.py -------------------------------------------------------------------------------- /mrjoker/modules/moretool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/moretool.py -------------------------------------------------------------------------------- /mrjoker/modules/nightmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/nightmode.py -------------------------------------------------------------------------------- /mrjoker/modules/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/note.py -------------------------------------------------------------------------------- /mrjoker/modules/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/phone.py -------------------------------------------------------------------------------- /mrjoker/modules/pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/pin.py -------------------------------------------------------------------------------- /mrjoker/modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/ping.py -------------------------------------------------------------------------------- /mrjoker/modules/plet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/plet.py -------------------------------------------------------------------------------- /mrjoker/modules/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/poll.py -------------------------------------------------------------------------------- /mrjoker/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/purge.py -------------------------------------------------------------------------------- /mrjoker/modules/qoutly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/qoutly.py -------------------------------------------------------------------------------- /mrjoker/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/reporting.py -------------------------------------------------------------------------------- /mrjoker/modules/reverseimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/reverseimage.py -------------------------------------------------------------------------------- /mrjoker/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/rules.py -------------------------------------------------------------------------------- /mrjoker/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sed.py -------------------------------------------------------------------------------- /mrjoker/modules/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/send.py -------------------------------------------------------------------------------- /mrjoker/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/shell.py -------------------------------------------------------------------------------- /mrjoker/modules/shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/shield.py -------------------------------------------------------------------------------- /mrjoker/modules/shippering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/shippering.py -------------------------------------------------------------------------------- /mrjoker/modules/shout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/shout.py -------------------------------------------------------------------------------- /mrjoker/modules/snipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/snipe.py -------------------------------------------------------------------------------- /mrjoker/modules/speachtotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/speachtotext.py -------------------------------------------------------------------------------- /mrjoker/modules/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/speedtest.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/__init__.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/aihelp_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/aihelp_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/approve_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/approve_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/blacklistusers_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/blacklistusers_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/blsticker_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/blsticker_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/chatbot_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/chatbot_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/chats_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/chats_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/cleaner_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/cleaner_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/elevated_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/elevated_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/feds_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/feds_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/kukiai_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/kukiai_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/last_fm_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/last_fm_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/nsfw_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/nsfw_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/pin_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/pin_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/rss_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/rss_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/setbio_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/setbio_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/urlblacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/urlblacklist_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/users_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql_extended/forceSubscribe_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql_extended/forceSubscribe_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql_extended/night_mode_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql_extended/night_mode_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/sql_extended/nsfw_watch_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/sql_extended/nsfw_watch_sql.py -------------------------------------------------------------------------------- /mrjoker/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/stickers.py -------------------------------------------------------------------------------- /mrjoker/modules/tagall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/tagall.py -------------------------------------------------------------------------------- /mrjoker/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/telegraph.py -------------------------------------------------------------------------------- /mrjoker/modules/telethnfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/telethnfun.py -------------------------------------------------------------------------------- /mrjoker/modules/texttospeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/texttospeech.py -------------------------------------------------------------------------------- /mrjoker/modules/thonkify_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/thonkify_dict.py -------------------------------------------------------------------------------- /mrjoker/modules/truth_and_dare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/truth_and_dare.py -------------------------------------------------------------------------------- /mrjoker/modules/truth_and_dare_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/truth_and_dare_string.py -------------------------------------------------------------------------------- /mrjoker/modules/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/tts.py -------------------------------------------------------------------------------- /mrjoker/modules/ud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/ud.py -------------------------------------------------------------------------------- /mrjoker/modules/urlblacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/urlblacklist.py -------------------------------------------------------------------------------- /mrjoker/modules/urlupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/urlupload.py -------------------------------------------------------------------------------- /mrjoker/modules/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/user.py -------------------------------------------------------------------------------- /mrjoker/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/userinfo.py -------------------------------------------------------------------------------- /mrjoker/modules/vs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/vs.py -------------------------------------------------------------------------------- /mrjoker/modules/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/wallpaper.py -------------------------------------------------------------------------------- /mrjoker/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/warns.py -------------------------------------------------------------------------------- /mrjoker/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/welcome.py -------------------------------------------------------------------------------- /mrjoker/modules/whatanime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/whatanime.py -------------------------------------------------------------------------------- /mrjoker/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/whois.py -------------------------------------------------------------------------------- /mrjoker/modules/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/wiki.py -------------------------------------------------------------------------------- /mrjoker/modules/ytdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/ytdl.py -------------------------------------------------------------------------------- /mrjoker/modules/zipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/zipper.py -------------------------------------------------------------------------------- /mrjoker/modules/zombie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/modules/zombie.py -------------------------------------------------------------------------------- /mrjoker/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/mongo.py -------------------------------------------------------------------------------- /mrjoker/mwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/mwt.py -------------------------------------------------------------------------------- /mrjoker/pack/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/2.jpg -------------------------------------------------------------------------------- /mrjoker/pack/Another Danger - Demo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Another Danger - Demo.otf -------------------------------------------------------------------------------- /mrjoker/pack/Another Danger Slanted - Demo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Another Danger Slanted - Demo.otf -------------------------------------------------------------------------------- /mrjoker/pack/CloisterBlack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/CloisterBlack.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Deadly Advance Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Deadly Advance Italic.otf -------------------------------------------------------------------------------- /mrjoker/pack/Deadly Advance Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Deadly Advance Italic.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Deadly Advance.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Deadly Advance.otf -------------------------------------------------------------------------------- /mrjoker/pack/Deadly Advance.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Deadly Advance.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Gothic-Joker.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Gothic-Joker.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Knife.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Knife.otf -------------------------------------------------------------------------------- /mrjoker/pack/Maghrib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Maghrib.ttf -------------------------------------------------------------------------------- /mrjoker/pack/No Surrender Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/No Surrender Italic.otf -------------------------------------------------------------------------------- /mrjoker/pack/No Surrender Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/No Surrender Italic.ttf -------------------------------------------------------------------------------- /mrjoker/pack/No Surrender.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/No Surrender.otf -------------------------------------------------------------------------------- /mrjoker/pack/No Surrender.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/No Surrender.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Roboto-Medium.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Roboto-Regular.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Stranger back in the Night.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Stranger back in the Night.ttf -------------------------------------------------------------------------------- /mrjoker/pack/True Lies.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/True Lies.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Vampire Wars Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Vampire Wars Italic.otf -------------------------------------------------------------------------------- /mrjoker/pack/Vampire Wars Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Vampire Wars Italic.ttf -------------------------------------------------------------------------------- /mrjoker/pack/Vampire Wars.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Vampire Wars.otf -------------------------------------------------------------------------------- /mrjoker/pack/Vampire Wars.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/Vampire Wars.ttf -------------------------------------------------------------------------------- /mrjoker/pack/blackimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/blackimg.jpg -------------------------------------------------------------------------------- /mrjoker/pack/default.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/default.ttf -------------------------------------------------------------------------------- /mrjoker/pack/f: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /mrjoker/pack/fjoker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/fjoker.jpg -------------------------------------------------------------------------------- /mrjoker/pack/go3v2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pack/go3v2.ttf -------------------------------------------------------------------------------- /mrjoker/pack/ii: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mrjoker/pyro/dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pyro/dark.py -------------------------------------------------------------------------------- /mrjoker/pyro/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pyro/errors.py -------------------------------------------------------------------------------- /mrjoker/pyro/pluginshelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pyro/pluginshelper.py -------------------------------------------------------------------------------- /mrjoker/pyro/telethonbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/pyro/telethonbasics.py -------------------------------------------------------------------------------- /mrjoker/repo: -------------------------------------------------------------------------------- 1 | repo : https://github.com/kjeymax/MR-JOKER_BOT 2 | -------------------------------------------------------------------------------- /mrjoker/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/sample_config.py -------------------------------------------------------------------------------- /mrjoker/services/dk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/services/dk.py -------------------------------------------------------------------------------- /mrjoker/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/__init__.py -------------------------------------------------------------------------------- /mrjoker/utils/dbfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/dbfunc.py -------------------------------------------------------------------------------- /mrjoker/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/errors.py -------------------------------------------------------------------------------- /mrjoker/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/exceptions.py -------------------------------------------------------------------------------- /mrjoker/utils/filter_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/filter_groups.py -------------------------------------------------------------------------------- /mrjoker/utils/inlinehelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/inlinehelper.py -------------------------------------------------------------------------------- /mrjoker/utils/plh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/plh.py -------------------------------------------------------------------------------- /mrjoker/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/progress.py -------------------------------------------------------------------------------- /mrjoker/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/tools.py -------------------------------------------------------------------------------- /mrjoker/utils/ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mrjoker/utils/ut.py -------------------------------------------------------------------------------- /mwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/mwt.py -------------------------------------------------------------------------------- /profanity_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/profanity_wordlist.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/restart.bat -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.7 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/sample_config.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/start.bat -------------------------------------------------------------------------------- /start_service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjeymax/MR-JOKER_BOT/HEAD/start_service.bat --------------------------------------------------------------------------------