{"id":107617,"date":"2026-06-06T08:16:42","date_gmt":"2026-06-06T05:16:42","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/"},"modified":"2026-06-06T08:16:42","modified_gmt":"2026-06-06T05:16:42","slug":"multiverse-dimensions","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/","title":{"rendered":"Multiverse"},"content":{"rendered":"<p><\/p>\n<div align=\"center\">\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/raw.githubusercontent.com\/senseiwells\/Multiverse\/refs\/heads\/1.21.8\/src\/main\/resources\/assets\/multiverse\/icon.png\" alt=\"Logo\" width=\"80\" height=\"80\"><\/p>\n<h3 align=\"center\">Multiverse<\/h3>\n<p align=\"center\">\nA fabric mod for Minecraft that allows creating custom dimensions at runtime with commands!\n<\/p>\n<\/div>\n<p>## About The Project<\/p>\n<p>This is a server-side fabric mod that provides a few simple commands for creating custom dimensions at runtime.<\/p>\n<p>The motivation for this when building in creative, whether working on decorative builds or working with redstone it can be beneficial to work in a separate dimension.<\/p>\n<p>## Usage<\/p>\n<p>After installing the mod the `\/multiverse` command should become available to operators.<br \/>\nThe permissions for the command can also be modified using a permissions mod, [see the<br \/>\npermissions section](#permissions).<\/p>\n<p>The command is quite simple, with only a few subcommands.<br \/>\nLet&#8217;s first discuss how to create a custom dimension.<\/p>\n<p>### Creating Custom Dimensions<\/p>\n<p>To create a custom dimension we will use the `create` subcommand.<br \/>\nThere are 2 branches from the `create` subcommand:<br \/>\n&#8220;`mcfunction<br \/>\n\/multiverse create from <dimension-type> <dimension-id> <seed?> <has-custom-gamerules?> <has-custom-tickrate?><br \/>\n\/multiverse create vanilla <overworld> <nether> <end> <seed?><br \/>\n&#8220;`<br \/>\nIn the first, `from`, we can specify a pre-defined dimension type, give our dimension a<br \/>\nnamespaced identifier, optionally specify a seed (otherwise random), and also specify<br \/>\nwhether the dimension should have its own gamerules or whether it should inherit<br \/>\nits gamerules.<br \/>\nFinally, you can also specify whether the `\/tick` command will work independently for<br \/>\nthat specific dimension.<br \/>\nIf set to `true` any `\/tick` commands run inside that dimension will affect *only* that<br \/>\nspecific dimension, `\/tick` run in any dimension that doesn&#8217;t have a custom tickrate<br \/>\nwill also only affect dimensions that also don&#8217;t have a custom tickrate.<\/p>\n<p>Dimension types define how the terrain is generated as well as some behaviors<br \/>\nwhich you can find listed on the Minecraft wiki.<br \/>\nBy default, vanilla has 3 types: `minecraft:overworld`, `minecraft:the_nether`, and<br \/>\n`minecraft:the_end`.<\/p>\n<p>Multiverse adds 2 types: `multiverse:void` and `multiverse:white_glass`, generating a<br \/>\nvoid world and a flat world with one layer of white glass respectively.<\/p>\n<p>You can also define your own dimension types for more control, see [the defining<br \/>\ncustom dimension types section](#defining-custom-dimension-types).<\/p>\n<p>The specified dimension id can be any namespaced id as long as no existing dimension has<br \/>\nthat id, for example you cannot use `minecraft:overworld` because vanilla uses that id.<\/p>\n<p>Here&#8217;s an example command to create a dimension called `example:my_dimension` that is<br \/>\na glass superflat world with a random seed with its own gamerules:<br \/>\n&#8220;`mcfunction<br \/>\n\/multiverse create from multiverse:white_glass example:my_dimension random true<br \/>\n&#8220;`<\/p>\n<p>The second `vanilla` allows you to create a set of 3 dimensions that mirror the behavior<br \/>\nof vanilla&#8217;s 3 dimensions.<\/p>\n<p>Here&#8217;s an example command:<br \/>\n&#8220;`mcfunction<br \/>\n\/multiverse create vanilla example:my_overworld example:my_nether example:my_end<br \/>\n&#8220;`<br \/>\nThis will create 3 dimensions, `example:my_overworld`, `example:my_nether`, and<br \/>\n`example:my_end` with overworld, nether, and end generation respectively.<br \/>\n`example:my_overworld` and `example:my_nether` can be linked with nether portals<br \/>\nand will behave just like `minecraft:overworld` and `minecraft:the_nether` would.<br \/>\nThe same is true for the end portal.<br \/>\nIt is worth noting that returning back through the end portal will put the player<br \/>\nat their spawn, or at global spawn (which may still be in `minecraft:overworld`).<\/p>\n<p>Additionally, the generated end dimension *will* spawn the ender dragon.<\/p>\n<p>### Teleporting to Custom Dimensions<\/p>\n<p>Multiverse provides a command to teleport to different dimensions:<br \/>\n&#8220;`mcfunction<br \/>\n\/multiverse teleport <dimension> <position?> <rotation?><br \/>\n&#8220;`<\/p>\n<p>### Deleting Custom Dimensions<\/p>\n<p>Deleting custom dimensions is very simple:<br \/>\n&#8220;`mcfunction<br \/>\n\/multiverse delete <dimension><br \/>\n&#8220;`<br \/>\nRunning this command won&#8217;t immediately delete your dimension, instead it will ask you<br \/>\nto confirm whether you truly want to delete the dimension as this action is destructive<br \/>\nand cannot be undone.<\/p>\n<p>Running `\/multiverse delete <dimension> force` will bypass this prompt.<\/p>\n<p>### Cloning Dimensions<\/p>\n<p>Multiverse allows you to clone any dimension, this may be useful when iterating<br \/>\non a build or for when you need to test the behavior of a redstone contraption.<\/p>\n<p>You will likely want to run `\/save-all` prior to cloning a dimension to ensure that<br \/>\nit&#8217;s cloned in its most up-to-date state.<\/p>\n<p>The command is as follows:<br \/>\n&#8220;`mcfunction<br \/>\n\/multiverse clone <from-dimension> <to-dimension> <has-custom-tickrate?> <region-from?> <region-to?><br \/>\n&#8220;`<br \/>\nWhere `<from-dimension>` is the existing dimension you want to clone from,<br \/>\nand `<to-dimension>` is the namespaced id you want to create as a clone.<\/p>\n<p>You can also specify whether the cloned dimension will have its own custom<br \/>\ntickrate manager, for more details read [the creating custom dimensions<br \/>\nsection](#creating-custom-dimensions).<\/p>\n<p>Finally, you can also specify a region area<br \/>\nto clone, you may also only specify one region in which case only that region will be cloned,<br \/>\nif unspecified the *entire* dimension will be copied.<br \/>\nThis is not recommended as dimensions which take up a lot of storage as it copies<br \/>\n*all* region files, and it also may hang your server.<\/p>\n<p>### Dimension Files<\/p>\n<p>Multiverse&#8217;s dimensions are located in your `world\/dimensions\/<namespace>\/<path>` directory,<br \/>\nfor example, if you create a dimension called `example:world` then your dimension files will be<br \/>\nin `world\/dimensions\/example\/world`.<br \/>\nFrom here the structure of worlds is the same as the overworld\/nether\/end.<\/p>\n<p>### Defining Custom Dimension Types<\/p>\n<p>Multiverse allows you to define your own custom dimension types in a datapack!<\/p>\n<p>Here&#8217;s a guide on how to create a datapack on the Minecraft wiki.<\/p>\n<p>The format is exactly the same as if you were to define a custom dimension for<br \/>\nvanilla to load but just in a different directory.<br \/>\nYou can follow this tutorial on the Minecraft wiki<br \/>\non how to create a new dimension but instead of putting your dimension files in<br \/>\n`data\/<namespace>\/dimension\/<path>.json` you should put your dimension files in<br \/>\n`data\/<namespace>\/multiverse\/dimension\/<path>.json`.<\/p>\n<p>Custom dimension types should still be registered at<br \/>\n`data\/<namespace>\/dimension_type\/<path>.json`.<\/p>\n<p>There is an example datapack in this repository which you can download as a template<br \/>\nhere,<br \/>\nor you can view it here.<\/p>\n<p>### Permissions<\/p>\n<p>You can further customize access of the commands through the use of a permissions mod<br \/>\nsuch as LuckPerms.<br \/>\nThe permission `&#8221;multiverse.commands.multiverse&#8221;` grants the `\/multiverse` command with<br \/>\nfurther more specific permissions for the subcommands:<br \/>\n&#8211; `&#8221;multiverse.commands.multiverse.create&#8221;`<br \/>\n&#8211; `&#8221;multiverse.commands.multiverse.clone&#8221;`<br \/>\n&#8211; `&#8221;multiverse.commands.multiverse.delete&#8221;`<br \/>\n&#8211; `&#8221;multiverse.commands.multiverse.teleport&#8221;`<\/p>\n<p>## License<\/p>\n<p>Distributed under the MIT License. See MIT License for more information.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create custom dimensions at runtime with commands!<\/p>\n","protected":false},"featured_media":107618,"template":"","meta":{"_minecraft_slug":"multiverse-dimensions","_minecraft_project_id":"xQSUV47Y","_minecraft_author":"senseiwells","_minecraft_license":"MIT","_minecraft_downloads":2209,"_minecraft_follows":16,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"multiverse-dimensions.zip","_minecraft_size_bytes":17588173,"_minecraft_version_count":15,"_minecraft_updated_at":"2026-05-15T22:35:09.382768Z","_minecraft_date_created":"2025-09-11T01:40:35.729345Z","_minecraft_date_modified":"2026-05-13T16:53:24.576972Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/multiverse-dimensions","_minecraft_icon_attachment_id":107618,"_minecraft_imported_at":"2026-06-06T05:16:50+00:00","_minecraft_import_hash":"bf03316ac39ae7f22894ff7b94674ea5","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,126,92,159],"mod_loader":[99],"minecraft_version":[40,41,81,82,83,167,163],"class_list":["post-107617","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-management","mod_category-utility","mod_category-worldgen","mod_loader-fabric","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Multiverse - 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\/multiverse-dimensions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Multiverse - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Create custom dimensions at runtime with commands!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta property=\"og:image\" content=\"https:\/\/raw.githubusercontent.com\/senseiwells\/Multiverse\/refs\/heads\/1.21.8\/src\/main\/resources\/assets\/multiverse\/icon.png\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/\",\"name\":\"Multiverse - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/multiverse-dimensions-icon-6eb952ca09a08071873ccba70d3626167d3eaabb.png\",\"datePublished\":\"2026-06-06T05:16:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/multiverse-dimensions-icon-6eb952ca09a08071873ccba70d3626167d3eaabb.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/multiverse-dimensions-icon-6eb952ca09a08071873ccba70d3626167d3eaabb.png\",\"width\":64,\"height\":64},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/multiverse-dimensions\\\/#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\":\"Multiverse\"}]},{\"@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":"Multiverse - 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\/multiverse-dimensions\/","og_locale":"en_US","og_type":"article","og_title":"Multiverse - Minecraft","og_description":"Create custom dimensions at runtime with commands!","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/","og_site_name":"Minecraft","og_image":[{"url":"https:\/\/raw.githubusercontent.com\/senseiwells\/Multiverse\/refs\/heads\/1.21.8\/src\/main\/resources\/assets\/multiverse\/icon.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/","name":"Multiverse - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/multiverse-dimensions-icon-6eb952ca09a08071873ccba70d3626167d3eaabb.png","datePublished":"2026-06-06T05:16:42+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/multiverse-dimensions-icon-6eb952ca09a08071873ccba70d3626167d3eaabb.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/multiverse-dimensions-icon-6eb952ca09a08071873ccba70d3626167d3eaabb.png","width":64,"height":64},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/multiverse-dimensions\/#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":"Multiverse"}]},{"@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\/107617","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\/107618"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=107617"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=107617"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=107617"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=107617"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}