{"id":74885,"date":"2026-06-04T11:17:39","date_gmt":"2026-06-04T08:17:39","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/"},"modified":"2026-06-04T11:17:39","modified_gmt":"2026-06-04T08:17:39","slug":"gate-keep","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/","title":{"rendered":"Gate Keep"},"content":{"rendered":"<p>![The End restricted message](https:\/\/cdn.modrinth.com\/data\/MRyILNIs\/images\/be9b810dd88da10caf4e19e3dc2080e747389d48.png)<\/p>\n<p># Gate Keep<\/p>\n<p>Allows server admins to control access to dimensions. With GateKeep, you can completely restrict dimensions or set up time-based restrictions that automatically unlock at specific dates and times.<\/p>\n<p>## Features<\/p>\n<p>&#8211; **Dimension Restriction**: Completely block access to any dimension<br \/>\n&#8211; **Time-Based Restrictions**: Schedule dimensions to unlock at specific dates and times<br \/>\n&#8211; **Customizable Messages**: Configure the messages players receive when attempting to access restricted dimensions<br \/>\n&#8211; **Automated Announcements**: Server-wide announcements when time-restricted dimensions become available<\/p>\n<p>## Configuration<\/p>\n<p>GateKeep uses a JSON configuration file located at `config\/gatekeep.json`. The config file is created automatically when the mod is first loaded (in-case of a crash or mis-behavior re-check the config and deleting it and generating a fresh one)<\/p>\n<p>### Configuration Options<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;disabledDimensions&#8221;: [<br \/>\n    &#8220;minecraft:the_end&#8221;<br \/>\n  ],<br \/>\n  &#8220;announce&#8221;: true,<br \/>\n  &#8220;restrictedDimensionMessage&#8221;: &#8220;&#038;c%dimension% dimension is restricted&#8221;,<br \/>\n  &#8220;timedDimensionRestrictedMessage&#8221;: &#8220;&#038;eRestricted till &#038;6%time%&#8221;,<br \/>\n  &#8220;unrestrictedAnnouncementMessage&#8221;: &#8220;&#038;a%dimension% dimension is now open!&#8221;,<br \/>\n  &#8220;timeRestrictions&#8221;: {<br \/>\n    &#8220;minecraft:the_end&#8221;: {<br \/>\n      &#8220;enabled&#8221;: true,<br \/>\n      &#8220;timeZone&#8221;: &#8220;UTC&#8221;,<br \/>\n      &#8220;unlockDateTime&#8221;: &#8220;2024-12-31T23:59:59&#8221;<br \/>\n    }<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Configuration Explanation<\/p>\n<p>&#8211; **disabledDimensions**: List of dimensions that are completely disabled<br \/>\n&#8211; **announce**: Whether to announce when time-restricted dimensions unlock<br \/>\n&#8211; **restrictedDimensionMessage**: Message displayed when a player tries to access a disabled dimension<br \/>\n&#8211; **timedDimensionRestrictedMessage**: Message displayed when a player tries to access a time-restricted dimension<br \/>\n&#8211; **unrestrictedAnnouncementMessage**: Message announced when a time-restricted dimension becomes available<br \/>\n&#8211; **timeRestrictions**: List of dimensions with time-based restrictions<br \/>\n  &#8211; **enabled**: Whether the time restriction is active<br \/>\n  &#8211; **timeZone**: Time zone for the unlock time (uses standard time zone IDs)<br \/>\n  &#8211; **unlockDateTime**: Date and time when the dimension will unlock (ISO format)<\/p>\n<p>### Message Formatting<\/p>\n<p>Messages support Minecraft color codes using the `&#038;` character:<br \/>\n&#8211; `&#038;0` to `&#038;9`, `&#038;a` to `&#038;f`: Colors<br \/>\n&#8211; `&#038;k`: Obfuscated<br \/>\n&#8211; `&#038;l`: Bold<br \/>\n&#8211; `&#038;m`: Strikethrough<br \/>\n&#8211; `&#038;n`: Underline<br \/>\n&#8211; `&#038;o`: Italic<br \/>\n&#8211; `&#038;r`: Reset<\/p>\n<p>In the configuration messages, you can use the following variables:<br \/>\n&#8211; `%dimension%`: Will be replaced with the formatted dimension name<br \/>\n&#8211; `%time%`: Will be replaced with the formatted unlock time (for time-restricted dimensions)<\/p>\n<p>## Examples<\/p>\n<p>### Basic Setup: Disable The End<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;disabledDimensions&#8221;: [&#8220;minecraft:the_end&#8221;],<br \/>\n  &#8220;announce&#8221;: true,<br \/>\n  &#8220;timeRestrictions&#8221;: {}<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Time-Restricted Nether<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;disabledDimensions&#8221;: [],<br \/>\n  &#8220;announce&#8221;: true,<br \/>\n  &#8220;timeRestrictions&#8221;: {<br \/>\n    &#8220;minecraft:the_nether&#8221;: {<br \/>\n      &#8220;enabled&#8221;: true,<br \/>\n      &#8220;timeZone&#8221;: &#8220;America\/New_York&#8221;,<br \/>\n      &#8220;unlockDateTime&#8221;: &#8220;2024-06-01T12:00:00&#8221;<br \/>\n    }<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Multiple Restrictions<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;disabledDimensions&#8221;: [&#8220;minecraft:the_end&#8221;],<br \/>\n  &#8220;announce&#8221;: true,<br \/>\n  &#8220;timeRestrictions&#8221;: {<br \/>\n    &#8220;minecraft:the_nether&#8221;: {<br \/>\n      &#8220;enabled&#8221;: true,<br \/>\n      &#8220;timeZone&#8221;: &#8220;UTC&#8221;,<br \/>\n      &#8220;unlockDateTime&#8221;: &#8220;2024-05-15T18:00:00&#8221;<br \/>\n    },<br \/>\n    &#8220;twilightforest:twilight_forest&#8221;: {<br \/>\n      &#8220;enabled&#8221;: true,<br \/>\n      &#8220;timeZone&#8221;: &#8220;UTC&#8221;,<br \/>\n      &#8220;unlockDateTime&#8221;: &#8220;2024-07-22T15:06:20&#8221;<br \/>\n    }<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>## How It Works<\/p>\n<p>&#8211; When a player or entity attempts to change dimensions including through commands or other means that use minecrafts internal code to travel through dimensions, the mod checks if the destination dimension is restricted<br \/>\n&#8211; If the dimension is in the `disabledDimensions` list, access is denied<br \/>\n&#8211; If the dimension has a time restriction that hasn&#8217;t passed its unlock time, access is denied<br \/>\n&#8211; Players with permission level 4 (operators) can bypass all restrictions when in creative mode<br \/>\n&#8211; The mod regularly checks if time-restricted dimensions have reached their unlock time, these checks run on a background thread to minimize performance impact<br \/>\n&#8211; When a time-restricted dimension becomes available, an announcement is sent to all online players (if enabled)<\/p>\n<p>## Compatibility<\/p>\n<p>GateKeep should be compatible with most modded dimensions and forms of dimensional travel.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Allows restricting and scheduling dimension access based on date\/time.<\/p>\n","protected":false},"featured_media":74886,"template":"","meta":{"_minecraft_slug":"gate-keep","_minecraft_project_id":"MRyILNIs","_minecraft_author":"frikinjay","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":920,"_minecraft_follows":10,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"gate-keep.zip","_minecraft_size_bytes":36883,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-17T01:44:22.885145Z","_minecraft_date_created":"2025-05-03T06:25:05.129819Z","_minecraft_date_modified":"2025-04-26T03:28:23.795519Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/gate-keep","_minecraft_icon_attachment_id":74886,"_minecraft_imported_at":"2026-06-04T08:17:40+00:00","_minecraft_import_hash":"695196363526bd51b36b8bc946e67843","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,126,158,98,869,92],"mod_loader":[160],"minecraft_version":[37,40,73,74,38,78,79,80,81,82,772,773,774,775],"class_list":["post-74885","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-management","mod_category-neoforge","mod_category-quilt","mod_category-transportation","mod_category-utility","mod_loader-neoforge","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-25w14craftmine","minecraft_version-25w15a","minecraft_version-25w16a","minecraft_version-25w17a"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Gate Keep - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gate Keep - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Allows restricting and scheduling dimension access based on date\/time.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/\",\"name\":\"Gate Keep - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/gate-keep-icon-653e378f154f14960a097046498217c8bbf334e6.png\",\"datePublished\":\"2026-06-04T08:17:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/gate-keep-icon-653e378f154f14960a097046498217c8bbf334e6.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/gate-keep-icon-653e378f154f14960a097046498217c8bbf334e6.png\",\"width\":400,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/gate-keep\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Gate Keep\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Gate Keep - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/","og_locale":"en_US","og_type":"article","og_title":"Gate Keep - Minecraft","og_description":"Allows restricting and scheduling dimension access based on date\/time.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/","name":"Gate Keep - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/gate-keep-icon-653e378f154f14960a097046498217c8bbf334e6.png","datePublished":"2026-06-04T08:17:39+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/gate-keep-icon-653e378f154f14960a097046498217c8bbf334e6.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/gate-keep-icon-653e378f154f14960a097046498217c8bbf334e6.png","width":400,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/gate-keep\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Gate Keep"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/74885","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/74886"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=74885"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=74885"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=74885"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=74885"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}