├── .deepsource.toml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── Procfile ├── README.md ├── Stella ├── StellaGban.py ├── __init__.py ├── __main__.py ├── database │ ├── antiflood_mongo.py │ ├── blocklists_mongo.py │ ├── chats_settings_mongo.py │ ├── connection_mongo.py │ ├── disable_mongo.py │ ├── federation_mongo.py │ ├── filters_mongo.py │ ├── locks_mongo.py │ ├── log_channels_mongo.py │ ├── notes_mongo.py │ ├── pin_mongo.py │ ├── report_mongo.py │ ├── rules_mongo.py │ ├── users_mongo.py │ ├── warnings_mongo.py │ └── welcome_mongo.py ├── helper │ ├── anon_admin.py │ ├── button_gen.py │ ├── chat_status.py │ ├── convert.py │ ├── custom_filter.py │ ├── disable.py │ ├── filters_helper │ │ ├── get_filters_message.py │ │ └── send_filter_message.py │ ├── get_data.py │ ├── get_user.py │ ├── note_helper │ │ ├── get_note_message.py │ │ ├── note_fillings.py │ │ ├── note_misc_helper.py │ │ └── note_send_message.py │ ├── pagination_buttons.py │ ├── time_checker.py │ └── welcome_helper │ │ ├── get_welcome_message.py │ │ ├── welcome_fillings.py │ │ └── welcome_send_message.py └── plugins │ ├── __init__.py │ ├── admins │ ├── admin_info.py │ ├── adminlist.py │ ├── anonadmin.py │ ├── demote.py │ └── promote.py │ ├── antiflood │ ├── antiflood_info.py │ ├── flood.py │ ├── flood_watcher.py │ ├── floodmode_action.py │ ├── setflood.py │ └── setfloodmode.py │ ├── bans │ ├── ban │ │ ├── ban.py │ │ ├── tban.py │ │ └── unban.py │ ├── bans_info.py │ ├── kick │ │ ├── kick.py │ │ └── kickme.py │ └── mute │ │ ├── mute.py │ │ ├── tmute.py │ │ └── unmute.py │ ├── blocklists │ ├── addblocklist.py │ ├── blocklist.py │ ├── blocklist_info.py │ ├── blocklist_message_checker.py │ ├── blocklistdelete.py │ ├── blocklistmode.py │ ├── checker.py │ ├── resetblocklistreason.py │ ├── rmblocklist.py │ ├── setblocklistreason.py │ ├── stats.py │ └── unblocklistall.py │ ├── connection │ ├── allow_connection.py │ ├── connect.py │ ├── connection.py │ ├── connection_info.py │ ├── disconnect.py │ ├── reconnect.py │ └── stats.py │ ├── disabling │ ├── disable.py │ ├── disable_info.py │ ├── disableable.py │ ├── disabled.py │ ├── disabledel.py │ ├── enable.py │ └── stats.py │ ├── federation │ ├── checker.py │ ├── federation_admins │ │ ├── fed_ban.py │ │ ├── fed_unban.py │ │ └── federation_admins_info.py │ ├── federation_info.py │ ├── federation_owner │ │ ├── federation_owner_info.py │ │ ├── fedpromote.py │ │ ├── new_fed.py │ │ └── rename_fed.py │ └── federation_users │ │ ├── federation_users_info.py │ │ └── join_fed.py │ ├── filters │ ├── filter.py │ ├── filter_info.py │ ├── filters.py │ ├── get_filter.py │ ├── stop.py │ └── stopall.py │ ├── formatting │ ├── fillings.py │ ├── formatting.py │ └── markdown_formatting.py │ ├── gban │ ├── gban.py │ └── gban_api │ │ ├── generate_api.py │ │ └── promote_apilevel.py │ ├── greeting │ ├── captcha │ │ ├── CaptchaDump │ │ │ └── __inti__.py │ │ ├── button_captcha.py │ │ ├── captcha.py │ │ ├── captcha_info.py │ │ ├── captcha_modes.py │ │ ├── captcharules.py │ │ ├── captcharules_button.py │ │ ├── setcaptchatext.py │ │ ├── text_captcha.py │ │ └── verified_recaptcha.py │ ├── clean_service.py │ ├── clean_welcome.py │ ├── goodbye.py │ ├── goodbye_member.py │ ├── greeting_info.py │ ├── new_member.py │ ├── reset_goodbye.py │ ├── reset_welcome.py │ ├── set_goodbye.py │ ├── set_welcome.py │ ├── stats.py │ ├── utils │ │ ├── actions.py │ │ ├── captcha_text_gen.py │ │ └── random_string_gen.py │ └── welcome.py │ ├── help │ └── help.py │ ├── locks │ ├── allowlist.py │ ├── lock.py │ ├── lock_map.py │ ├── locks.py │ ├── locks_checker.py │ ├── locks_info.py │ ├── locktypes.py │ ├── lockwarns.py │ ├── rmallowlist.py │ ├── rmallowlistall.py │ └── unlock.py │ ├── log _channels │ ├── log_channels_info.py │ ├── logcategories.py │ ├── logchannel.py │ ├── setlog.py │ ├── stats.py │ └── unsetlog.py │ ├── notes │ ├── clear_note.py │ ├── get_note.py │ ├── notes.py │ ├── notes_info.py │ ├── private_notes.py │ ├── save_note.py │ ├── set_private_notes.py │ └── stats.py │ ├── owner │ ├── export.py │ ├── import.py │ └── mongodb_viewer.py │ ├── pin │ ├── antichannelpin.py │ ├── antichannelpin_checker.py │ ├── cleanlinked.py │ ├── cleanlinked_checker.py │ ├── pin.py │ ├── pin_info.py │ ├── pininfo.py │ ├── pinned.py │ ├── unpin.py │ └── unpinall.py │ ├── purge │ ├── del.py │ ├── purge.py │ ├── purge_between.py │ ├── purge_helper.py │ └── purge_info.py │ ├── report │ ├── report.py │ ├── reports.py │ └── reports_info.py │ ├── rules │ ├── private_rules.py │ ├── reset_rules.py │ ├── reset_rules_button.py │ ├── rules.py │ ├── rules_info.py │ ├── set_rules_button.py │ ├── setrules.py │ └── stats.py │ ├── start │ └── startHandler.py │ ├── sudo │ └── stats.py │ ├── urban_dictionary │ ├── get_data.py │ ├── ud_callback.py │ └── urban_dictionary.py │ ├── users │ ├── forcecachechat.py │ ├── forcecacheuser.py │ ├── logging.py │ └── stats.py │ └── warnings │ ├── add_warn.py │ ├── remove_warn_callback.py │ ├── reset_warns.py │ ├── resetallwarns.py │ ├── set_warn_limit.py │ ├── set_warn_mode.py │ ├── stats.py │ ├── warn.py │ ├── warn_checker.py │ ├── warnings.py │ ├── warnings_info.py │ └── warns.py ├── config.example.toml ├── config.py ├── path ├── font_01.TTF ├── font_02.ttf └── font_03.ttf ├── requirements.txt └── runtime.txt /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m Stella 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/README.md -------------------------------------------------------------------------------- /Stella/StellaGban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/StellaGban.py -------------------------------------------------------------------------------- /Stella/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/__init__.py -------------------------------------------------------------------------------- /Stella/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/__main__.py -------------------------------------------------------------------------------- /Stella/database/antiflood_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/antiflood_mongo.py -------------------------------------------------------------------------------- /Stella/database/blocklists_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/blocklists_mongo.py -------------------------------------------------------------------------------- /Stella/database/chats_settings_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/chats_settings_mongo.py -------------------------------------------------------------------------------- /Stella/database/connection_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/connection_mongo.py -------------------------------------------------------------------------------- /Stella/database/disable_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/disable_mongo.py -------------------------------------------------------------------------------- /Stella/database/federation_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/federation_mongo.py -------------------------------------------------------------------------------- /Stella/database/filters_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/filters_mongo.py -------------------------------------------------------------------------------- /Stella/database/locks_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/locks_mongo.py -------------------------------------------------------------------------------- /Stella/database/log_channels_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/log_channels_mongo.py -------------------------------------------------------------------------------- /Stella/database/notes_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/notes_mongo.py -------------------------------------------------------------------------------- /Stella/database/pin_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/pin_mongo.py -------------------------------------------------------------------------------- /Stella/database/report_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/report_mongo.py -------------------------------------------------------------------------------- /Stella/database/rules_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/rules_mongo.py -------------------------------------------------------------------------------- /Stella/database/users_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/users_mongo.py -------------------------------------------------------------------------------- /Stella/database/warnings_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/warnings_mongo.py -------------------------------------------------------------------------------- /Stella/database/welcome_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/database/welcome_mongo.py -------------------------------------------------------------------------------- /Stella/helper/anon_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/anon_admin.py -------------------------------------------------------------------------------- /Stella/helper/button_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/button_gen.py -------------------------------------------------------------------------------- /Stella/helper/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/chat_status.py -------------------------------------------------------------------------------- /Stella/helper/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/convert.py -------------------------------------------------------------------------------- /Stella/helper/custom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/custom_filter.py -------------------------------------------------------------------------------- /Stella/helper/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/disable.py -------------------------------------------------------------------------------- /Stella/helper/filters_helper/get_filters_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/filters_helper/get_filters_message.py -------------------------------------------------------------------------------- /Stella/helper/filters_helper/send_filter_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/filters_helper/send_filter_message.py -------------------------------------------------------------------------------- /Stella/helper/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/get_data.py -------------------------------------------------------------------------------- /Stella/helper/get_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/get_user.py -------------------------------------------------------------------------------- /Stella/helper/note_helper/get_note_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/note_helper/get_note_message.py -------------------------------------------------------------------------------- /Stella/helper/note_helper/note_fillings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/note_helper/note_fillings.py -------------------------------------------------------------------------------- /Stella/helper/note_helper/note_misc_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/note_helper/note_misc_helper.py -------------------------------------------------------------------------------- /Stella/helper/note_helper/note_send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/note_helper/note_send_message.py -------------------------------------------------------------------------------- /Stella/helper/pagination_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/pagination_buttons.py -------------------------------------------------------------------------------- /Stella/helper/time_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/time_checker.py -------------------------------------------------------------------------------- /Stella/helper/welcome_helper/get_welcome_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/welcome_helper/get_welcome_message.py -------------------------------------------------------------------------------- /Stella/helper/welcome_helper/welcome_fillings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/welcome_helper/welcome_fillings.py -------------------------------------------------------------------------------- /Stella/helper/welcome_helper/welcome_send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/helper/welcome_helper/welcome_send_message.py -------------------------------------------------------------------------------- /Stella/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/__init__.py -------------------------------------------------------------------------------- /Stella/plugins/admins/admin_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/admins/admin_info.py -------------------------------------------------------------------------------- /Stella/plugins/admins/adminlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/admins/adminlist.py -------------------------------------------------------------------------------- /Stella/plugins/admins/anonadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/admins/anonadmin.py -------------------------------------------------------------------------------- /Stella/plugins/admins/demote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/admins/demote.py -------------------------------------------------------------------------------- /Stella/plugins/admins/promote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/admins/promote.py -------------------------------------------------------------------------------- /Stella/plugins/antiflood/antiflood_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/antiflood/antiflood_info.py -------------------------------------------------------------------------------- /Stella/plugins/antiflood/flood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/antiflood/flood.py -------------------------------------------------------------------------------- /Stella/plugins/antiflood/flood_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/antiflood/flood_watcher.py -------------------------------------------------------------------------------- /Stella/plugins/antiflood/floodmode_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/antiflood/floodmode_action.py -------------------------------------------------------------------------------- /Stella/plugins/antiflood/setflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/antiflood/setflood.py -------------------------------------------------------------------------------- /Stella/plugins/antiflood/setfloodmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/antiflood/setfloodmode.py -------------------------------------------------------------------------------- /Stella/plugins/bans/ban/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/ban/ban.py -------------------------------------------------------------------------------- /Stella/plugins/bans/ban/tban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/ban/tban.py -------------------------------------------------------------------------------- /Stella/plugins/bans/ban/unban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/ban/unban.py -------------------------------------------------------------------------------- /Stella/plugins/bans/bans_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/bans_info.py -------------------------------------------------------------------------------- /Stella/plugins/bans/kick/kick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/kick/kick.py -------------------------------------------------------------------------------- /Stella/plugins/bans/kick/kickme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/kick/kickme.py -------------------------------------------------------------------------------- /Stella/plugins/bans/mute/mute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/mute/mute.py -------------------------------------------------------------------------------- /Stella/plugins/bans/mute/tmute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/mute/tmute.py -------------------------------------------------------------------------------- /Stella/plugins/bans/mute/unmute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/bans/mute/unmute.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/addblocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/addblocklist.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/blocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/blocklist.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/blocklist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/blocklist_info.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/blocklist_message_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/blocklist_message_checker.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/blocklistdelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/blocklistdelete.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/blocklistmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/blocklistmode.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/checker.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/resetblocklistreason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/resetblocklistreason.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/rmblocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/rmblocklist.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/setblocklistreason.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/setblocklistreason.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/stats.py -------------------------------------------------------------------------------- /Stella/plugins/blocklists/unblocklistall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/blocklists/unblocklistall.py -------------------------------------------------------------------------------- /Stella/plugins/connection/allow_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/connection/allow_connection.py -------------------------------------------------------------------------------- /Stella/plugins/connection/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/connection/connect.py -------------------------------------------------------------------------------- /Stella/plugins/connection/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/connection/connection.py -------------------------------------------------------------------------------- /Stella/plugins/connection/connection_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/connection/connection_info.py -------------------------------------------------------------------------------- /Stella/plugins/connection/disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/connection/disconnect.py -------------------------------------------------------------------------------- /Stella/plugins/connection/reconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/connection/reconnect.py -------------------------------------------------------------------------------- /Stella/plugins/connection/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/connection/stats.py -------------------------------------------------------------------------------- /Stella/plugins/disabling/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/disabling/disable.py -------------------------------------------------------------------------------- /Stella/plugins/disabling/disable_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/disabling/disable_info.py -------------------------------------------------------------------------------- /Stella/plugins/disabling/disableable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/disabling/disableable.py -------------------------------------------------------------------------------- /Stella/plugins/disabling/disabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/disabling/disabled.py -------------------------------------------------------------------------------- /Stella/plugins/disabling/disabledel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/disabling/disabledel.py -------------------------------------------------------------------------------- /Stella/plugins/disabling/enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/disabling/enable.py -------------------------------------------------------------------------------- /Stella/plugins/disabling/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/disabling/stats.py -------------------------------------------------------------------------------- /Stella/plugins/federation/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/checker.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_admins/fed_ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_admins/fed_ban.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_admins/fed_unban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_admins/fed_unban.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_admins/federation_admins_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_admins/federation_admins_info.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_info.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_owner/federation_owner_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_owner/federation_owner_info.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_owner/fedpromote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_owner/fedpromote.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_owner/new_fed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_owner/new_fed.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_owner/rename_fed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_owner/rename_fed.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_users/federation_users_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_users/federation_users_info.py -------------------------------------------------------------------------------- /Stella/plugins/federation/federation_users/join_fed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/federation/federation_users/join_fed.py -------------------------------------------------------------------------------- /Stella/plugins/filters/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/filters/filter.py -------------------------------------------------------------------------------- /Stella/plugins/filters/filter_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/filters/filter_info.py -------------------------------------------------------------------------------- /Stella/plugins/filters/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/filters/filters.py -------------------------------------------------------------------------------- /Stella/plugins/filters/get_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/filters/get_filter.py -------------------------------------------------------------------------------- /Stella/plugins/filters/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/filters/stop.py -------------------------------------------------------------------------------- /Stella/plugins/filters/stopall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/filters/stopall.py -------------------------------------------------------------------------------- /Stella/plugins/formatting/fillings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/formatting/fillings.py -------------------------------------------------------------------------------- /Stella/plugins/formatting/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/formatting/formatting.py -------------------------------------------------------------------------------- /Stella/plugins/formatting/markdown_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/formatting/markdown_formatting.py -------------------------------------------------------------------------------- /Stella/plugins/gban/gban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/gban/gban.py -------------------------------------------------------------------------------- /Stella/plugins/gban/gban_api/generate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/gban/gban_api/generate_api.py -------------------------------------------------------------------------------- /Stella/plugins/gban/gban_api/promote_apilevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/gban/gban_api/promote_apilevel.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/CaptchaDump/__inti__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/CaptchaDump/__inti__.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/button_captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/button_captcha.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/captcha.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/captcha_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/captcha_info.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/captcha_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/captcha_modes.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/captcharules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/captcharules.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/captcharules_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/captcharules_button.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/setcaptchatext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/setcaptchatext.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/text_captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/text_captcha.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/captcha/verified_recaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/captcha/verified_recaptcha.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/clean_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/clean_service.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/clean_welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/clean_welcome.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/goodbye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/goodbye.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/goodbye_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/goodbye_member.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/greeting_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/greeting_info.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/new_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/new_member.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/reset_goodbye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/reset_goodbye.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/reset_welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/reset_welcome.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/set_goodbye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/set_goodbye.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/set_welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/set_welcome.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/stats.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/utils/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/utils/actions.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/utils/captcha_text_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/utils/captcha_text_gen.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/utils/random_string_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/utils/random_string_gen.py -------------------------------------------------------------------------------- /Stella/plugins/greeting/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/greeting/welcome.py -------------------------------------------------------------------------------- /Stella/plugins/help/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/help/help.py -------------------------------------------------------------------------------- /Stella/plugins/locks/allowlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/allowlist.py -------------------------------------------------------------------------------- /Stella/plugins/locks/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/lock.py -------------------------------------------------------------------------------- /Stella/plugins/locks/lock_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/lock_map.py -------------------------------------------------------------------------------- /Stella/plugins/locks/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/locks.py -------------------------------------------------------------------------------- /Stella/plugins/locks/locks_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/locks_checker.py -------------------------------------------------------------------------------- /Stella/plugins/locks/locks_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/locks_info.py -------------------------------------------------------------------------------- /Stella/plugins/locks/locktypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/locktypes.py -------------------------------------------------------------------------------- /Stella/plugins/locks/lockwarns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/lockwarns.py -------------------------------------------------------------------------------- /Stella/plugins/locks/rmallowlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/rmallowlist.py -------------------------------------------------------------------------------- /Stella/plugins/locks/rmallowlistall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/rmallowlistall.py -------------------------------------------------------------------------------- /Stella/plugins/locks/unlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/locks/unlock.py -------------------------------------------------------------------------------- /Stella/plugins/log _channels/log_channels_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/log _channels/log_channels_info.py -------------------------------------------------------------------------------- /Stella/plugins/log _channels/logcategories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/log _channels/logcategories.py -------------------------------------------------------------------------------- /Stella/plugins/log _channels/logchannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/log _channels/logchannel.py -------------------------------------------------------------------------------- /Stella/plugins/log _channels/setlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/log _channels/setlog.py -------------------------------------------------------------------------------- /Stella/plugins/log _channels/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/log _channels/stats.py -------------------------------------------------------------------------------- /Stella/plugins/log _channels/unsetlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/log _channels/unsetlog.py -------------------------------------------------------------------------------- /Stella/plugins/notes/clear_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/clear_note.py -------------------------------------------------------------------------------- /Stella/plugins/notes/get_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/get_note.py -------------------------------------------------------------------------------- /Stella/plugins/notes/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/notes.py -------------------------------------------------------------------------------- /Stella/plugins/notes/notes_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/notes_info.py -------------------------------------------------------------------------------- /Stella/plugins/notes/private_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/private_notes.py -------------------------------------------------------------------------------- /Stella/plugins/notes/save_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/save_note.py -------------------------------------------------------------------------------- /Stella/plugins/notes/set_private_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/set_private_notes.py -------------------------------------------------------------------------------- /Stella/plugins/notes/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/notes/stats.py -------------------------------------------------------------------------------- /Stella/plugins/owner/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/owner/export.py -------------------------------------------------------------------------------- /Stella/plugins/owner/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/owner/import.py -------------------------------------------------------------------------------- /Stella/plugins/owner/mongodb_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/owner/mongodb_viewer.py -------------------------------------------------------------------------------- /Stella/plugins/pin/antichannelpin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/antichannelpin.py -------------------------------------------------------------------------------- /Stella/plugins/pin/antichannelpin_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/antichannelpin_checker.py -------------------------------------------------------------------------------- /Stella/plugins/pin/cleanlinked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/cleanlinked.py -------------------------------------------------------------------------------- /Stella/plugins/pin/cleanlinked_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/cleanlinked_checker.py -------------------------------------------------------------------------------- /Stella/plugins/pin/pin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/pin.py -------------------------------------------------------------------------------- /Stella/plugins/pin/pin_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/pin_info.py -------------------------------------------------------------------------------- /Stella/plugins/pin/pininfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/pininfo.py -------------------------------------------------------------------------------- /Stella/plugins/pin/pinned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/pinned.py -------------------------------------------------------------------------------- /Stella/plugins/pin/unpin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/unpin.py -------------------------------------------------------------------------------- /Stella/plugins/pin/unpinall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/pin/unpinall.py -------------------------------------------------------------------------------- /Stella/plugins/purge/del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/purge/del.py -------------------------------------------------------------------------------- /Stella/plugins/purge/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/purge/purge.py -------------------------------------------------------------------------------- /Stella/plugins/purge/purge_between.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/purge/purge_between.py -------------------------------------------------------------------------------- /Stella/plugins/purge/purge_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/purge/purge_helper.py -------------------------------------------------------------------------------- /Stella/plugins/purge/purge_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/purge/purge_info.py -------------------------------------------------------------------------------- /Stella/plugins/report/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/report/report.py -------------------------------------------------------------------------------- /Stella/plugins/report/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/report/reports.py -------------------------------------------------------------------------------- /Stella/plugins/report/reports_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/report/reports_info.py -------------------------------------------------------------------------------- /Stella/plugins/rules/private_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/private_rules.py -------------------------------------------------------------------------------- /Stella/plugins/rules/reset_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/reset_rules.py -------------------------------------------------------------------------------- /Stella/plugins/rules/reset_rules_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/reset_rules_button.py -------------------------------------------------------------------------------- /Stella/plugins/rules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/rules.py -------------------------------------------------------------------------------- /Stella/plugins/rules/rules_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/rules_info.py -------------------------------------------------------------------------------- /Stella/plugins/rules/set_rules_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/set_rules_button.py -------------------------------------------------------------------------------- /Stella/plugins/rules/setrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/setrules.py -------------------------------------------------------------------------------- /Stella/plugins/rules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/rules/stats.py -------------------------------------------------------------------------------- /Stella/plugins/start/startHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/start/startHandler.py -------------------------------------------------------------------------------- /Stella/plugins/sudo/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/sudo/stats.py -------------------------------------------------------------------------------- /Stella/plugins/urban_dictionary/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/urban_dictionary/get_data.py -------------------------------------------------------------------------------- /Stella/plugins/urban_dictionary/ud_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/urban_dictionary/ud_callback.py -------------------------------------------------------------------------------- /Stella/plugins/urban_dictionary/urban_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/urban_dictionary/urban_dictionary.py -------------------------------------------------------------------------------- /Stella/plugins/users/forcecachechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/users/forcecachechat.py -------------------------------------------------------------------------------- /Stella/plugins/users/forcecacheuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/users/forcecacheuser.py -------------------------------------------------------------------------------- /Stella/plugins/users/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/users/logging.py -------------------------------------------------------------------------------- /Stella/plugins/users/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/users/stats.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/add_warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/add_warn.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/remove_warn_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/remove_warn_callback.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/reset_warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/reset_warns.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/resetallwarns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/resetallwarns.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/set_warn_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/set_warn_limit.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/set_warn_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/set_warn_mode.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/stats.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/warn.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/warn_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/warn_checker.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/warnings.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/warnings_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/warnings_info.py -------------------------------------------------------------------------------- /Stella/plugins/warnings/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/Stella/plugins/warnings/warns.py -------------------------------------------------------------------------------- /config.example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/config.example.toml -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/config.py -------------------------------------------------------------------------------- /path/font_01.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/path/font_01.TTF -------------------------------------------------------------------------------- /path/font_02.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/path/font_02.ttf -------------------------------------------------------------------------------- /path/font_03.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/path/font_03.ttf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpookyGang/Stella/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.1 2 | --------------------------------------------------------------------------------