├── .deepsource.toml ├── .gitignore ├── AmeliaRobot ├── __init__.py ├── __main__.py ├── conf.py ├── config.py ├── events.py ├── helper_extra │ ├── admin_rights.py │ ├── aichat.py │ └── badmedia.py ├── modules │ ├── AmeliaSpecial.py │ ├── VoiceChatbot.py │ ├── Zombies.py │ ├── __aifunctions.py.txt │ ├── __aimultilanguage.py │ ├── __core.py │ ├── __encrypt.py │ ├── __forcesubs.py │ ├── __google.py │ ├── __gps.py │ ├── __heroku.py │ ├── __imdb.py │ ├── __init__.py │ ├── __musicals.py │ ├── __nightmode.py │ ├── __shield.py │ ├── __songs.py │ ├── __speachtotext.py │ ├── __texttospeech.py │ ├── __tools.py │ ├── __weather.py │ ├── __zip.py │ ├── _pyrogithub.py │ ├── admin.py │ ├── afk.py │ ├── anime.py │ ├── antiflood.py │ ├── approve.py │ ├── backups.py │ ├── bans.py │ ├── blacklist.py │ ├── blacklist_stickers.py │ ├── blacklistusers.py │ ├── chatbot.py │ ├── cleaner.py │ ├── connection.py │ ├── cricketscore.py │ ├── currency_converter.py │ ├── cust_filters.py │ ├── dbcleanup.py │ ├── debug.py │ ├── dev.py │ ├── disable.py │ ├── disasters.py │ ├── error_handler.py │ ├── eval.py │ ├── feds.py │ ├── fun.py │ ├── fun_strings.py │ ├── get_common_chats.py │ ├── gettime.py │ ├── global_bans.py │ ├── gtranslator.py │ ├── helper_funcs │ │ ├── __init__.py │ │ ├── alternate.py │ │ ├── chat_status.py │ │ ├── extraction.py │ │ ├── filters.py │ │ ├── handlers.py │ │ ├── misc.py │ │ ├── msg_types.py │ │ ├── regex_helper.py │ │ ├── string_handling.py │ │ └── telethn │ │ │ ├── __init__.py │ │ │ └── chatstatus.py │ ├── karma.py │ ├── locks.py │ ├── log_channel.py │ ├── logomaker.py │ ├── math.py │ ├── misc.py │ ├── modules.py │ ├── music.py │ ├── muting.py │ ├── nightmodebtn.py │ ├── notes.py │ ├── paste.py │ ├── ping.py │ ├── pokedex.py │ ├── purge.py │ ├── reactions.py │ ├── remote_cmds.py │ ├── reporting.py │ ├── rules.py │ ├── sed.py │ ├── shell.py │ ├── shippering.py │ ├── speed_test.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 │ │ ├── cleaner_sql.py │ │ ├── connection_sql.py │ │ ├── cust_filters_sql.py │ │ ├── disable_sql.py │ │ ├── feds_sql.py │ │ ├── global_bans_sql.py │ │ ├── locks_sql.py │ │ ├── log_channel_sql.py │ │ ├── notes_sql.py │ │ ├── reporting_sql.py │ │ ├── rss_sql.py │ │ ├── rules_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 │ ├── ud.py │ ├── userinfo.py │ ├── users.py │ ├── wallpaper.py │ ├── warns.py │ ├── welcome.py │ └── wiki.py ├── mongo.py ├── pyrogramee │ ├── dark.py │ ├── errors.py │ ├── pluginshelper.py │ └── telethonbasics.py ├── resources │ ├── Chopsic.otf │ ├── Maghrib.ttf │ ├── Russo.ttf │ ├── blackbg.jpg │ └── images.jpeg ├── sample_config.py ├── services │ ├── events.py │ └── mongo.py └── utils │ ├── dbfunc.py │ ├── errors.py │ ├── filter_groups.py │ └── logger.py ├── Dockerfile ├── Git_Pull.bat ├── Git_Push.bat ├── LICENSE ├── Procfile ├── README.md ├── Setup_venv.bat ├── _config.yml ├── app.json ├── arqlink.py ├── crowdin.yml ├── exp.sh ├── heroku.yml ├── profanity_wordlist.txt ├── requirements.txt ├── restart.bat ├── runtime.txt ├── start.bat └── start_service.bat /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/.gitignore -------------------------------------------------------------------------------- /AmeliaRobot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/__init__.py -------------------------------------------------------------------------------- /AmeliaRobot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/__main__.py -------------------------------------------------------------------------------- /AmeliaRobot/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/conf.py -------------------------------------------------------------------------------- /AmeliaRobot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/config.py -------------------------------------------------------------------------------- /AmeliaRobot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/events.py -------------------------------------------------------------------------------- /AmeliaRobot/helper_extra/admin_rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/helper_extra/admin_rights.py -------------------------------------------------------------------------------- /AmeliaRobot/helper_extra/aichat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/helper_extra/aichat.py -------------------------------------------------------------------------------- /AmeliaRobot/helper_extra/badmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/helper_extra/badmedia.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/AmeliaSpecial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/AmeliaSpecial.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/VoiceChatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/VoiceChatbot.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/Zombies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/Zombies.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__aifunctions.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__aifunctions.py.txt -------------------------------------------------------------------------------- /AmeliaRobot/modules/__aimultilanguage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__aimultilanguage.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__core.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__encrypt.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__forcesubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__forcesubs.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__google.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__gps.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__heroku.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__imdb.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__init__.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__musicals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__musicals.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__nightmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__nightmode.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__shield.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__songs.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__speachtotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__speachtotext.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__texttospeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__texttospeech.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__tools.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__weather.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/__zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/__zip.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/_pyrogithub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/_pyrogithub.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/admin.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/afk.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/anime.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/antiflood.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/approve.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/backups.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/bans.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/blacklist.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/blacklist_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/blacklist_stickers.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/blacklistusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/blacklistusers.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/chatbot.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/cleaner.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/connection.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/cricketscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/cricketscore.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/currency_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/currency_converter.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/cust_filters.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/dbcleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/dbcleanup.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/debug.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/dev.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/disable.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/disasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/disasters.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/error_handler.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/eval.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/feds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/feds.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/fun.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/fun_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/fun_strings.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/get_common_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/get_common_chats.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/gettime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/gettime.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/global_bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/global_bans.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/gtranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/gtranslator.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | """Helpers, also known as Utilities.""" 2 | -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/alternate.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/regex_helper.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/telethn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/telethn/__init__.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/helper_funcs/telethn/chatstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/helper_funcs/telethn/chatstatus.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/karma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/karma.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/locks.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/log_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/log_channel.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/logomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/logomaker.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/math.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/misc.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/modules.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/music.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/muting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/muting.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/nightmodebtn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/nightmodebtn.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/notes.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/paste.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/ping.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/pokedex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/pokedex.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/purge.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/reactions.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/remote_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/remote_cmds.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/reporting.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/rules.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sed.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/shell.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/shippering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/shippering.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/speed_test.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/__init__.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/aihelp_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/aihelp_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/approve_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/approve_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/blacklistusers_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/blacklistusers_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/blsticker_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/blsticker_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/chatbot_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/chatbot_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/cleaner_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/cleaner_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/feds_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/feds_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/rss_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/rss_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/users_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql_extended/forceSubscribe_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql_extended/forceSubscribe_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql_extended/night_mode_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql_extended/night_mode_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/sql_extended/nsfw_watch_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/sql_extended/nsfw_watch_sql.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/stickers.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/tagall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/tagall.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/ud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/ud.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/userinfo.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/users.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/wallpaper.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/warns.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/welcome.py -------------------------------------------------------------------------------- /AmeliaRobot/modules/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/modules/wiki.py -------------------------------------------------------------------------------- /AmeliaRobot/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/mongo.py -------------------------------------------------------------------------------- /AmeliaRobot/pyrogramee/dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/pyrogramee/dark.py -------------------------------------------------------------------------------- /AmeliaRobot/pyrogramee/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/pyrogramee/errors.py -------------------------------------------------------------------------------- /AmeliaRobot/pyrogramee/pluginshelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/pyrogramee/pluginshelper.py -------------------------------------------------------------------------------- /AmeliaRobot/pyrogramee/telethonbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/pyrogramee/telethonbasics.py -------------------------------------------------------------------------------- /AmeliaRobot/resources/Chopsic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/resources/Chopsic.otf -------------------------------------------------------------------------------- /AmeliaRobot/resources/Maghrib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/resources/Maghrib.ttf -------------------------------------------------------------------------------- /AmeliaRobot/resources/Russo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/resources/Russo.ttf -------------------------------------------------------------------------------- /AmeliaRobot/resources/blackbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/resources/blackbg.jpg -------------------------------------------------------------------------------- /AmeliaRobot/resources/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/resources/images.jpeg -------------------------------------------------------------------------------- /AmeliaRobot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/sample_config.py -------------------------------------------------------------------------------- /AmeliaRobot/services/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/services/events.py -------------------------------------------------------------------------------- /AmeliaRobot/services/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/services/mongo.py -------------------------------------------------------------------------------- /AmeliaRobot/utils/dbfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/utils/dbfunc.py -------------------------------------------------------------------------------- /AmeliaRobot/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/utils/errors.py -------------------------------------------------------------------------------- /AmeliaRobot/utils/filter_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/utils/filter_groups.py -------------------------------------------------------------------------------- /AmeliaRobot/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/AmeliaRobot/utils/logger.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Git_Pull.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/Git_Pull.bat -------------------------------------------------------------------------------- /Git_Push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/Git_Push.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/README.md -------------------------------------------------------------------------------- /Setup_venv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/Setup_venv.bat -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/_config.yml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/app.json -------------------------------------------------------------------------------- /arqlink.py: -------------------------------------------------------------------------------- 1 | ARQ_API_BASE_URL = "https://thearq.tech" 2 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/crowdin.yml -------------------------------------------------------------------------------- /exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/exp.sh -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/heroku.yml -------------------------------------------------------------------------------- /profanity_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/profanity_wordlist.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/requirements.txt -------------------------------------------------------------------------------- /restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/restart.bat -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/start.bat -------------------------------------------------------------------------------- /start_service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xAbhish3k/AmeliaRobot/HEAD/start_service.bat --------------------------------------------------------------------------------