├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── AMP.py ├── AMP_Console.py ├── AMP_Handler.py ├── BANNER.md ├── COMMANDS.md ├── COPYING ├── DB.py ├── DB_Update.py ├── LICENSE ├── PERMISSIONS.md ├── README.md ├── REGEX.md ├── WHITELIST.md ├── amp_permissions.py ├── bot_perms.json ├── changelog.md ├── cogs ├── AMP_server_cog.py ├── AMP_tasks_cog.py ├── DB_server_cog.py ├── DB_user_cog.py ├── Permissions_cog.py ├── banner_cog.py ├── regex_cog.py └── whitelist_cog.py ├── discordBot.py ├── loader.py ├── logger.py ├── modules ├── Counter-Strike_Go │ ├── amp_csgo.py │ └── cog_csgo.py ├── Factorio │ ├── amp_factorio.py │ └── cog_factorio.py ├── Generic │ ├── amp_generic.py │ └── generic.py ├── Minecraft │ ├── amp_minecraft.py │ └── cog_minecraft.py ├── ProjectZomboid │ ├── amp_projectzomboid.py │ └── cog_projectzomboid.py ├── SevenDaystoDie │ ├── amp_sevendays.py │ └── cog_sevendays.py ├── StarBound │ ├── amp_starbound.py │ └── cog_starbound.py ├── Terraria │ ├── amp_terraria.py │ └── cog_terraria.py ├── Valheim │ ├── amp_valheim.py │ └── cog_valheim.py └── banner_creator.py ├── pyproject.toml ├── requirements.txt ├── resources ├── Bot Permissions.png ├── Gatekeeperv2_Banner.jpg ├── avatars │ ├── 7days_avatar.png │ ├── amp_avatar.jpg │ ├── csgo_avatar.png │ ├── factorio_avatar.png │ ├── mc_avatar.jpg │ ├── project_zomboid_avatar.png │ ├── starbound_avatar.png │ ├── terraria_avatar.jpg │ └── valheim_avatar.png ├── banners │ ├── 7Days_Banner_1.jpg │ ├── 7Days_Banner_2.jpg │ ├── 7Days_Banner_3.jpg │ ├── AMP_Banner.jpg │ ├── CS_Go_Banner_1.png │ ├── CS_Go_Banner_2.png │ ├── CS_Go_Banner_3.png │ ├── Factorio_Banner.jpg │ ├── Minecraft_banner.png │ ├── Minecraft_banner2.jpg │ ├── Project_Zomboid_Banner.jpg │ ├── Project_Zomboid_banner_1.jpg │ ├── Starbound_banner.jpg │ ├── Terraria_Banner.png │ └── Valheim_Banner.png ├── fonts │ ├── ReemKufiFun-Regular.ttf │ └── Reem_Kufi_Fun.zip ├── intents.jpg ├── templates │ ├── amp_template.py │ └── cog_template.py └── wiki │ ├── banner │ ├── banner_description_location.png │ ├── banner_editor_example.png │ ├── custom_banner_everything_on_example.png │ ├── custom_banner_example.png │ ├── description_example.png │ ├── embed_example.png │ ├── header_example.png │ ├── host_example.png │ ├── status_example.png │ └── whitelist_donator_example.png │ └── regex │ ├── regex_blacklist_comparison.png │ ├── regex_blacklist_example.png │ ├── regex_list_example.png │ ├── regex_whitelist_console_1.png │ └── regex_whitelist_example.png ├── start.py ├── tokenstemplate.py ├── utils.py ├── utils_dev ├── __init__.py └── banner_editor │ ├── edited_banner.py │ └── ui │ ├── button.py │ ├── copy_to_select.py │ ├── modal.py │ ├── select.py │ ├── textinput.py │ ├── view.py │ └── view2.py ├── utils_embeds.py └── utils_ui.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/.gitignore -------------------------------------------------------------------------------- /AMP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/AMP.py -------------------------------------------------------------------------------- /AMP_Console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/AMP_Console.py -------------------------------------------------------------------------------- /AMP_Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/AMP_Handler.py -------------------------------------------------------------------------------- /BANNER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/BANNER.md -------------------------------------------------------------------------------- /COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/COMMANDS.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/COPYING -------------------------------------------------------------------------------- /DB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/DB.py -------------------------------------------------------------------------------- /DB_Update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/DB_Update.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/LICENSE -------------------------------------------------------------------------------- /PERMISSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/PERMISSIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/README.md -------------------------------------------------------------------------------- /REGEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/REGEX.md -------------------------------------------------------------------------------- /WHITELIST.md: -------------------------------------------------------------------------------- 1 | # Whitelist 2 | Place holder till its created. -------------------------------------------------------------------------------- /amp_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/amp_permissions.py -------------------------------------------------------------------------------- /bot_perms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/bot_perms.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/changelog.md -------------------------------------------------------------------------------- /cogs/AMP_server_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/AMP_server_cog.py -------------------------------------------------------------------------------- /cogs/AMP_tasks_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/AMP_tasks_cog.py -------------------------------------------------------------------------------- /cogs/DB_server_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/DB_server_cog.py -------------------------------------------------------------------------------- /cogs/DB_user_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/DB_user_cog.py -------------------------------------------------------------------------------- /cogs/Permissions_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/Permissions_cog.py -------------------------------------------------------------------------------- /cogs/banner_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/banner_cog.py -------------------------------------------------------------------------------- /cogs/regex_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/regex_cog.py -------------------------------------------------------------------------------- /cogs/whitelist_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/cogs/whitelist_cog.py -------------------------------------------------------------------------------- /discordBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/discordBot.py -------------------------------------------------------------------------------- /loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/loader.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/logger.py -------------------------------------------------------------------------------- /modules/Counter-Strike_Go/amp_csgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Counter-Strike_Go/amp_csgo.py -------------------------------------------------------------------------------- /modules/Counter-Strike_Go/cog_csgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Counter-Strike_Go/cog_csgo.py -------------------------------------------------------------------------------- /modules/Factorio/amp_factorio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Factorio/amp_factorio.py -------------------------------------------------------------------------------- /modules/Factorio/cog_factorio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Factorio/cog_factorio.py -------------------------------------------------------------------------------- /modules/Generic/amp_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Generic/amp_generic.py -------------------------------------------------------------------------------- /modules/Generic/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Generic/generic.py -------------------------------------------------------------------------------- /modules/Minecraft/amp_minecraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Minecraft/amp_minecraft.py -------------------------------------------------------------------------------- /modules/Minecraft/cog_minecraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Minecraft/cog_minecraft.py -------------------------------------------------------------------------------- /modules/ProjectZomboid/amp_projectzomboid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/ProjectZomboid/amp_projectzomboid.py -------------------------------------------------------------------------------- /modules/ProjectZomboid/cog_projectzomboid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/ProjectZomboid/cog_projectzomboid.py -------------------------------------------------------------------------------- /modules/SevenDaystoDie/amp_sevendays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/SevenDaystoDie/amp_sevendays.py -------------------------------------------------------------------------------- /modules/SevenDaystoDie/cog_sevendays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/SevenDaystoDie/cog_sevendays.py -------------------------------------------------------------------------------- /modules/StarBound/amp_starbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/StarBound/amp_starbound.py -------------------------------------------------------------------------------- /modules/StarBound/cog_starbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/StarBound/cog_starbound.py -------------------------------------------------------------------------------- /modules/Terraria/amp_terraria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Terraria/amp_terraria.py -------------------------------------------------------------------------------- /modules/Terraria/cog_terraria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Terraria/cog_terraria.py -------------------------------------------------------------------------------- /modules/Valheim/amp_valheim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Valheim/amp_valheim.py -------------------------------------------------------------------------------- /modules/Valheim/cog_valheim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/Valheim/cog_valheim.py -------------------------------------------------------------------------------- /modules/banner_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/modules/banner_creator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/Bot Permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/Bot Permissions.png -------------------------------------------------------------------------------- /resources/Gatekeeperv2_Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/Gatekeeperv2_Banner.jpg -------------------------------------------------------------------------------- /resources/avatars/7days_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/7days_avatar.png -------------------------------------------------------------------------------- /resources/avatars/amp_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/amp_avatar.jpg -------------------------------------------------------------------------------- /resources/avatars/csgo_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/csgo_avatar.png -------------------------------------------------------------------------------- /resources/avatars/factorio_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/factorio_avatar.png -------------------------------------------------------------------------------- /resources/avatars/mc_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/mc_avatar.jpg -------------------------------------------------------------------------------- /resources/avatars/project_zomboid_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/project_zomboid_avatar.png -------------------------------------------------------------------------------- /resources/avatars/starbound_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/starbound_avatar.png -------------------------------------------------------------------------------- /resources/avatars/terraria_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/terraria_avatar.jpg -------------------------------------------------------------------------------- /resources/avatars/valheim_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/avatars/valheim_avatar.png -------------------------------------------------------------------------------- /resources/banners/7Days_Banner_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/7Days_Banner_1.jpg -------------------------------------------------------------------------------- /resources/banners/7Days_Banner_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/7Days_Banner_2.jpg -------------------------------------------------------------------------------- /resources/banners/7Days_Banner_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/7Days_Banner_3.jpg -------------------------------------------------------------------------------- /resources/banners/AMP_Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/AMP_Banner.jpg -------------------------------------------------------------------------------- /resources/banners/CS_Go_Banner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/CS_Go_Banner_1.png -------------------------------------------------------------------------------- /resources/banners/CS_Go_Banner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/CS_Go_Banner_2.png -------------------------------------------------------------------------------- /resources/banners/CS_Go_Banner_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/CS_Go_Banner_3.png -------------------------------------------------------------------------------- /resources/banners/Factorio_Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Factorio_Banner.jpg -------------------------------------------------------------------------------- /resources/banners/Minecraft_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Minecraft_banner.png -------------------------------------------------------------------------------- /resources/banners/Minecraft_banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Minecraft_banner2.jpg -------------------------------------------------------------------------------- /resources/banners/Project_Zomboid_Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Project_Zomboid_Banner.jpg -------------------------------------------------------------------------------- /resources/banners/Project_Zomboid_banner_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Project_Zomboid_banner_1.jpg -------------------------------------------------------------------------------- /resources/banners/Starbound_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Starbound_banner.jpg -------------------------------------------------------------------------------- /resources/banners/Terraria_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Terraria_Banner.png -------------------------------------------------------------------------------- /resources/banners/Valheim_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/banners/Valheim_Banner.png -------------------------------------------------------------------------------- /resources/fonts/ReemKufiFun-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/fonts/ReemKufiFun-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Reem_Kufi_Fun.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/fonts/Reem_Kufi_Fun.zip -------------------------------------------------------------------------------- /resources/intents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/intents.jpg -------------------------------------------------------------------------------- /resources/templates/amp_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/templates/amp_template.py -------------------------------------------------------------------------------- /resources/templates/cog_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/templates/cog_template.py -------------------------------------------------------------------------------- /resources/wiki/banner/banner_description_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/banner_description_location.png -------------------------------------------------------------------------------- /resources/wiki/banner/banner_editor_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/banner_editor_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/custom_banner_everything_on_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/custom_banner_everything_on_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/custom_banner_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/custom_banner_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/description_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/description_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/embed_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/embed_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/header_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/header_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/host_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/host_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/status_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/status_example.png -------------------------------------------------------------------------------- /resources/wiki/banner/whitelist_donator_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/banner/whitelist_donator_example.png -------------------------------------------------------------------------------- /resources/wiki/regex/regex_blacklist_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/regex/regex_blacklist_comparison.png -------------------------------------------------------------------------------- /resources/wiki/regex/regex_blacklist_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/regex/regex_blacklist_example.png -------------------------------------------------------------------------------- /resources/wiki/regex/regex_list_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/regex/regex_list_example.png -------------------------------------------------------------------------------- /resources/wiki/regex/regex_whitelist_console_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/regex/regex_whitelist_console_1.png -------------------------------------------------------------------------------- /resources/wiki/regex/regex_whitelist_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/resources/wiki/regex/regex_whitelist_example.png -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/start.py -------------------------------------------------------------------------------- /tokenstemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/tokenstemplate.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils.py -------------------------------------------------------------------------------- /utils_dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils_dev/banner_editor/edited_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/edited_banner.py -------------------------------------------------------------------------------- /utils_dev/banner_editor/ui/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/ui/button.py -------------------------------------------------------------------------------- /utils_dev/banner_editor/ui/copy_to_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/ui/copy_to_select.py -------------------------------------------------------------------------------- /utils_dev/banner_editor/ui/modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/ui/modal.py -------------------------------------------------------------------------------- /utils_dev/banner_editor/ui/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/ui/select.py -------------------------------------------------------------------------------- /utils_dev/banner_editor/ui/textinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/ui/textinput.py -------------------------------------------------------------------------------- /utils_dev/banner_editor/ui/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/ui/view.py -------------------------------------------------------------------------------- /utils_dev/banner_editor/ui/view2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_dev/banner_editor/ui/view2.py -------------------------------------------------------------------------------- /utils_embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_embeds.py -------------------------------------------------------------------------------- /utils_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8thekat/GatekeeperV2/HEAD/utils_ui.py --------------------------------------------------------------------------------