Just Enough Dimensions

Description

Just Enough Dimensions allows registering new custom dimensions to the game, OR it can also be used to just tweak some properties of existing dimensions.
Examples of such tweaks would be enabling per-dimension World Borders, so that the border in the Nether could be 1/8 of the size of the overworld border and not the same size, or to change the sky and/or fog and/or cloud colors or the cloud render height.

As of version 1.6.0 it's also possible to simply use JED to force certain settings for the world when it's first created, such as the WorldType of generator settings (for example making a superflat world, or a void world [which is also a form of superflat]), or setting some GameRules. (This did work before 1.6.0 as well, but not quite the same way and not as cleanly.)

Note: Due to the way that dimension IDs (and WorldProviders) are handled in vanilla and Forge, and also due to the rendering related customization options, this mod is also required on the client side.

Quick overview

All dimension registrations and configs are done via a simple JSON config file. There is also an in-game 'dimbuilder' command to create/register dimensions or to edit the properties of a previously added dimension, and it can change most of the values that the config file stores, but not quite all of them. Basically more complex things like the light brightness table or biome foliage colors etc. can only be added and configured directly via the dimensions.json config file.

The dimension registration and per-dimension settings are done via the global config/justenoughdimensions/dimensions.json file, or the worlddirectory/justenoughdimensions/dimensions.json file, if it exists. The world one takes precedence, if it exists.

Help with JSON

If you are not familiar with (or not "an expert" in) the JSON format, or you just want to check for any typos/errors in the config when editing it manually, I recommend using one of the many online JSON validators or editors. Some examples are: https://jsonformatter.org/ and http://www.jsoneditoronline.org/ and https://www.cleancss.com/json-editor/ and https://jsonlint.com/ and https://www.freeformatter.com/json-validator.html .

Also using a proper text editor with proper syntax hilighting support helps a lot. Personally I use Sublime Text, but Notepad++ or Atom are also good alternatives.


JED 1.6.0 and later config changes

If you are on the JED 1.6.0 dev versions (which I do highly recommend over the old 1.5.x versions!), then there are a number of important changes in the format and some of the options in the dimension.json config file.
The most important change is that the custom JED options tag was moved and renamed, and also some of the other options were renamed.
The tag used to be called JED and it was inside the worldinfo tag, but in 1.6.0 it's now a lower case jed, and it was moved outside of the worldinfo tag, directly inside the main per-dimension object.

The full list of changes and additions in the 1.6.0-dev version can be found here: https://pastebin.com/raw/28jeWZyv
There are numerous config examples of doing various things on my pastebin here: https://pastebin.com/u/masa-
My main/generic development testing config with lots of different features being used is here: https://pastebin.com/m9xYSHZd


Configuration options, basic custom dimension registration

There are a few config options in the main mod config, to enable certain functionality.
Note: They are all disabled by default just in case!

  • enableForcedGameModes - Enables automatically changing the player's gamemode to the one set for each dimension, if the ForceGameMode option is also set for that dimension
  • enableInitialSpawnDimensionOverride - Enables setting the initial spawn dimension (set in initialSpawnDimensionId).
  • enableLoggingInfo - Enables INFO type logging to the server console. This is disabled by default to reduce spam. If you have any problems with the mod, I'd suggest first enabling this to see what operations succeed and where the problem might be!
  • enableOverrideBiomeProvider - If enabled, then a "biome": "name" key-value pair in the dimension config will enable overriding the BiomeProvider of that dimension with BiomeProviderSingle, using the biome given as the value. The name is the ResourceLocation registry name of a biome, for example "minecraft:plains" (or just "plains" will work too for a vanilla biome)
  • enableReplacingRegisteredDimensions - If enabled, then an "override": true boolean value for the dimension in the dimensions.json config can be used to override an existing dimension. Note: For overriding to work, the dimension can't be loaded when JED tries to register and override it!
  • enableUnregisteringDimensions - If enabled, then an "unregister": true boolean value for the dimension in the dimensions.json config can be used to unregister existing dimension. You could for example disable the Nether or the End using this!
  • enableSeparateWorldBorders - If enabled, adds custom WorldBorder syncing and removes the default linking from other dimensions to the overworld border. Note: To have separate World Borders, you also need to have the "worldinfo" key for the dimension in the config, which enabled a per-dimension WorldInfo object. Even an empty object as a value will work, so for example: "worldinfo": {}
  • enableSeparateWorldInfo - If enabled, all dimensions that exist in dimensions.json and have the "worldinfo" key present will use separate WorldInfo instances (separate time, weather, world border, gamerules etc.) An empty object is enough, see above. This works even if the dimension isn't registered by this mod (because it already exists and isn't set to be overridden).
  • initialSpawnDimensionId - The dimension ID of the dimension that the players will spawn in, when they join the world/server for the first time.

The dimension registration and per-dimension settings are done via the global config/justenoughdimensions/dimensions.json file, or the worlddirectory/justenoughdimensions/dimensions.json file, if it exists. The world one takes precedence, if it exists.

Here is an example of simply registering some custom dimensions, that you should easily be able to adapt:

{
	"dimensions": [
		{
			"dim": 9,
			"dimensiontype":
			{
				"id": 9,
				"name": "Test dim 9",
				"suffix": "_dim9",
				"keeploaded": false,
				"worldprovider": "WorldProviderSurfaceJED"
			}
		},
		{
			"dim": 10,
			"dimensiontype":
			{
				"id": 10,
				"name": "Test dim 10",
				"suffix": "_dim10",
				"keeploaded": false,
				"worldprovider": "WorldProviderHellJED"
			}
		},
		{
			"dim": 11,
			"dimensiontype":
			{
				"id": 11,
				"name": "Test dim 11",
				"suffix": "_dim11",
				"keeploaded": false,
				"worldprovider": "WorldProviderEndJED"
			}
		},
		{
			"dim": 15,
			"dimensiontype":
			{
				"id": 15,
				"name": "Test dim 15",
				"suffix": "_dim15",
				"keeploaded": false,
				"worldprovider": "biomesoplenty.common.world.WorldProviderHellBOP"
			}
		}
	]
}
		

The most important part is the dimension id, given in the dim integer.
The dimensiontype object contains the information that will get passed to the vanilla DimensionType registration:

  • id - The DimensionType ID. This is in vanilla used in some places like the portal/teleportation code, to decide whether a portal can be activated and how the entity gets teleported.
  • vanilladimensiontype - If this value exists, then an existing DimensionType by that name is used instead of creating a new one. The rest of the options (listed here below) are then ignored.
  • name - The value is the name of the world, it is shown in the console for world load/unload messages, and used by some mod teleport related items etc.
  • suffix - The value is mainly used for certain data filenames, so don't use any fancy characters or spaces in it! A good suffix is for example "_dim15".
  • worldprovider - The value can be one of WorldProviderSurface (for normal overworld-type worlds), WorldProviderHell (Nether) or WorldProviderEnd for the vanilla options, or their counterparts from this mod: WorldProviderSurfaceJED, WorldProviderHellJED, WorldProviderEndJED. The value can also be the fully qualified class name of a modded WorldProvider.

Note: Using the JED-variants over the vanilla ones is highly recommended, because they have certain fixes and changes, which are a requirement for some things in this mod to work (like the color customizations).

Other keys/values on the main level of a dimension entry are:

  • "unregister": true - unregister this dimension, if it's currently registered. All other options are meaningless if this option is true.
  • "override": true - override the existing dimension by this id, if any. For this to succeed, it can't be loaded when JED tries to unregister it.
  • "disableteleportingfrom": true - disables all teleportation (that respects the Forge event...) from this dimension.
  • "disableteleportingto": true - disables all teleportation (that respects the Forge event...) to this dimension.
  • "biome": "name" - use a single biome in this dimension, by overriding the BiomeProvider to BiomeProviderSingle using this biome
  • "colors": <object> - Foliage, Grass and/or Water color customization data (see the section after WorldInfo)

Here is an example if you want to disable/unregister a dimension, let's say you want to disable the End:
Note: You will also need to have the enableUnregisteringDimensions config option enabled for this to work!

{
	"dimensions": [
		{
			"dim": 1,
			"unregister": true
		}
	]
}
		


Here is one of my testing configs from my development environment. It has several types of examples for creating different types of customized dimensions:
http://pastebin.com/LpRYUNyi.



Configuration - per-dimension WorldInfo

Thanks to the separate WorldInfo object (essentially per-dimension level.dat files), it is possible to use per-dimension world seed, level-type, generator settings etc.
You can for example create a Biomes O' Plenty dimension, even if your main overworld is vanilla or RTG or whatever.

Note: Without per-dimension WorldInfo, the /tpj <dim> teleport command that takes you to the dimension's spawn point, will often lead to hazardous places. This is because without separate WorldInfo, each dimension will inherit/use the exact same spawn coordinates from the overworld. And those can be anywhere in relation to the custom dimension's terrain, often inside the ground. So enabling the per-dimension WorldInfo is recommended in most cases (especially if you are regularly going to need the teleport command), unless it causes some specific problems for you.

NOTE: For the per-dimension settings, for example gamerules, to work, there are two requirements:

  • You must enable the enableSeparateWorldInfo option in the main justenoughdimensions.cfg config
  • Every dimension that you want to have separate settings, must have at least an empty worldinfo (or worldinfo_onetime) object in the dimensions.json config, see below for an example

Note: For separate World Borders, you also need to have the config option enableSeparateWorldBorders enabled, because they need to use custom syncing!

Note: The RTG (Realistic Terrain Generation) mod is currently hard-coded to only work in dimension 0, ie. the Overworld. Thus, if you want to have an RTG world, that needs to be the regular "main" overworld! You can then create the custom dimensions as regular vanilla or Biomes O' Plenty or whatever world types you want. Even superflat, amplified or the debug world type work just fine in custom dimensions!

Note about RTG: If you want to use RTG in the overworld (dimension 0), and also enable WorldInfo override for the overworld, then you need to use WorldProviderSurfaceJED and also set the "override": true option for dimension 0, and be using JED 1.3.6 or newer! Otherwise RTG decorations won't work, and you'll get no trees/flowers/tall grass etc at all.

Here is an example what the dimensions.json config should contain at minimum, if you just want to enable per-dimension settings for some dimensions, in this example the vanilla Nether and End dimensions.
This essentially separates the Nether and End WorldInfo objects from the Overworld, which allows them to have separate time, gamerules, World Border, seed, etc. Note that you also need to have the appropriate options enabled in the main JED config file (justenoughdimensions.cfg or via the in-game config menu in single player) for whatever you are using the WorldInfo override for!

{
	"dimensions": [
		{
			"dim": -1,
			"worldinfo": {}
		},
		{
			"dim": 1,
			"worldinfo": {}
		}
	]
}
		

Tip: The keys for the world-type/level-type and seed are: generatorName, RandomSeed. These are what they are saved as in the level.dat file.

Here is the full list of supported keys inside the "worldinfo" object:

  • RandomSeed - either the numeric seed or a string, which will get parsed into the numeric seed
  • generatorName - for example default, default_1_1, flat, amplified, largeBiomes, debug_all_block_states, BIOMESOP
  • generatorOptions - this is where your superflat settings string would go, or BoP config json strings etc
  • generatorVersion - certain WorldType may be versioned, in vanilla the 'default' WorldType must use 1 here, otherwise it will use default_1_1 type instead
  • GameType
  • GameRules - A list of string to string key-value pairs for all the gamerules you want to set/override from the default values
  • MapFeatures
  • SpawnX
  • SpawnY
  • SpawnZ
  • Time
  • DayTime
  • LastPlayed
  • LevelName
  • clearWeatherTime
  • rainTime
  • raining
  • thunderTime
  • thundering
  • hardcore
  • allowCommands
  • Difficulty
  • DifficultyLocked
  • BorderCenterX
  • BorderCenterZ
  • BorderSize
  • BorderSizeLerpTime
  • BorderSizeLerpTarget
  • BorderSafeZone
  • BorderDamagePerBlock
  • BorderWarningBlocks
  • BorderWarningTime

NOTE: The keys are case-sensitive! So you MUST use them exactly as given here, or they won't work!

Note: Any values set in the worldinfo object will always override the corresponding values from the per-dimension level.dat file when a dimension gets loaded! So you most likely don't want to set things like the world time there, unless you for some reason would always like it to reset back to a certain value when the dimension loads.

Instead, the vanilla settings should usually be set in the worldinfo_onetime object, instead of the regular worldinfo object (via commands this is done using the "-onetime" variant of the dimbuilder set/remove/list commands). That way they will only be set once when the dimension is first created, instead of getting set/overridden every time the dimension loads. Of course if you actually want to set/override them every time the dimension gets loaded, then you can set them in the regular worldinfo object/section.



Foliage, Grass and Water color customization

Starting from version 1.4.0, it is possible to customize the foliage, grass and water color multipliers per-dimension and per-biome.
This does not require WorldInfo override to be used for those dimensions.
To customize the colors, add the biome registry names and the hex color codes for the things you want to customize, inside a colors object on the main level of the dimension entry, and then an array of objects named FoliageColors, GrassColors and WaterColors inside that colors object. Each of those objects inside the array will then contain a string value named biome for the exact biome registry name, OR you can also target multiple biomes at once using a regular expression, if you use the name biome_regex instead. The other value inside that object is a hex string for the color, called color.

Note: If you use the regular expression to target multiple biomes, then the order of the array is important! The array is iterated in order, and for each entry, be it the exact name (biome) or a regular expression (biome_regex), the color is applied for whatever the biome specification matches at that time. Meaning that anything that comes later in the array, will override a previously set value.

And since an example is likely ten times easier to understand: https://pastebin.com/eWrNcwiS

In this example, dimension 12 is a simple case where only those 4 biomes are affected. In dimension 13 however, the regex causes the foliage color to be changed to a shade of red in ALL vanilla biomes, but then the later 4 entries override that color for those 4 biomes.

Note: You can specify only the types of colors you want to change (foliage or grass or water). The example config is from my testing, so I was setting them all for all the 4 biomes I tested it with.

Note: The water color multiplier event in Forge is not used in 1.10.2, meaning that the water color customization unfortunately won't work in 1.10.2! It has been fixed in Forge in 1.11.2 though, so it does work in 1.11.2.

Note: There is however another issue as well: The foliage color event is not fired for Mesa and Swamp biomes, and the grass color event is not fired for Forest, Mesa and Swamp biomes. So the colors are hard coded in those biomes, and the overrides won't work, unless it gets fixed in Forge at some point.

Tip: To get the biome registry names that you must use for the config, you can use the TellMe mod (the command /tellme dump biomes). What you are looking for, is the Registry name column. Here is a ready made dump of all vanilla biomes as of Minecraft 1.11.2: http://pastebin.com/raw/U5cvkdKz



Light brightness table customization

Starting from version 1.4.0, it is possible to customize the light brightness table for JED-type WorldProviders.
This is done by adding an array called LightBrightness inside the JED object, inside the worldinfo object. The array must have exactly 16 numeric values in it, the values should be 0...1 to indicate the brightness of the light for each block light value 0...15.
Here are a couple of config examples. These are the values used for the two example screenshots on the Images page: https://pastebin.com/nYfSE3Td

The default values for overworld-type worlds are the values in the second example (dimension 11), but in reverse order (thus the name of the test dimension...).



Per-dimension gamerules

You can set per-dimension gamerules, by adding a GameRules object inside the worldinfo_onetime (or worldinfo) object. Inside that GameRules object add all the gamerules you want to set for that dimension.

Here is an example of setting a gamerule for a dimension in the config: https://pastebin.com/GakmHRvm

As of version 1.3.8, the gamerules can also be added or removed using the dimbuilder command, For example:
/jed dimbuilder set-onetime doDaylightCycle false

If you don't need the gamerules to be set automatically during the creation of the dimension, you can also just use the /jed gamerule command while in the dimension, to set the gamerule once. Note that the WorldInfo override does need to be enabled for that dimension, otherwise the dimension will use the overworld gamerules (and changing them would change the overworld/global gamerule!).



JED-specific per-dimension options

Starting from JED version 1.1.0, it is possible to set the sky color, cloud color, fog color and cloud height for each dimension. You can also set the day length and the night length separately. You can also enable "forced gamemode" for each dimension, which means that the players' gamemode will automatically be changed (to the one set for that dimension via the /jed defaultgametype command) when they enter the dimension. When they leave such a dimension and return to a non-forced-gamemode dimension, their original gamemode will be restored.

Starting from JED version 1.3.0, it is possible to disable the sun, moon and stars, individually, if using WorldProviderSurfaceJED.

The available "JED-keys" are:

  • ForceGameMode - true/false; automatically change players' gamemode when they enter a dimension. Set the gamemode in a dimension via the /jed defaultgametype command. Note: you need to also enable the option enableForcedGameModes in the main config!
  • CustomDayCycle - true/false; enables the custom day and night cycle.
  • DayLength - the length of the day in game ticks.
  • NightLength - the length of the night in game ticks.
  • CloudHeight - the height the clouds are rendered at.
  • SkyColor - a hex number (without the leading 0x) in RRGGBB format.
  • FogColor - a hex number (without the leading 0x) in RRGGBB format.
  • CloudColor - a hex number (without the leading 0x) in RRGGBB format.
  • SkyRenderType - selects between Overworld or End type sky. 1 = normal Overworld type sky, 2 = End type sky
  • SkyDisableFlags - a bitmask that allows disabling the sun/moon/stars when using WorldProviderSurfaceJED. 1 = disable sun, 2 = disable moon, 4 = disable stars. Add together the ones you want to disable (for example: 7 = disable all three of them). Note: For these flags to work, you also need to specify "SkyRenderType": 1, ie. be using the JED normal/overworld sky renderer!
  • CanRespawnHere (1.5.0+) - Allows respawning in this dimension. This is by default true in WorldProviderSurfaceJED, and false in the Hell and End providers. Only usable with JED WorldProviders before JED 1.5.1!
  • RespawnDimension (1.5.0+) - If CanRespawnHere is false, then this will indicate the dimension where the player will respawn to. Only usable with JED WorldProviders!

In the dimensions.json config, these go inside a JED object, inside the worldinfo object (and they MUST be inside the worldinfo object, they will NOT work inside the worldinfo_onetime object. You can also set them directly using the dimbuilder command, for example: /jed dimbuilder set SkyColor f844ee or to remove a key: /jed dimbuilder remove CloudHeight.

Note: For these settings to work, the dimension in question must be using one of the JED WorldProvider variants, in most cases WorldProviderSurfaceJED (the nether and end WorldProviders have different lighting and colors, so they probably wouldn't work properly for color customization).

Note: As of version 1.3.7, the SkyRenderType and the SkyDisableFlags options also work on non-JED WorldProviders.

{
	"dimensions": [
		{
			"dim": 2,
			"worldinfo": {
				"JED": {
					"DayLength": "200",
					"NightLength": "200",
					"SkyColor": "ff8888",
					"CloudColor": "ddddff",
					"ForceGameMode": "true",
					"SkyDisableFlags": 7
				}
			},
			"worldinfo_onetime": {
				"generatorName": "BIOMESOP",
				"RandomSeed": "Kitty Cat"
			}
		}
	]
}
		


Tip: If you want to try out different sky colors for example, you can do it like this (this example assumes the dimension ID to be 2):

  • /jed dimbuilder read-from 2 - reads the current settings from the config file to the in-memory dimbuilder
  • /jed dimbuilder set SkyColor 4296ff - sets the value. You can do this for everything you want to change.
  • /jed dimbuilder save-as 2 - saves the in-memory dimbuilder values back to the dimensions.json config
  • /jed reload - reloads the dimensions.json config and sets all the dimension settings in memory
  • Now, you can either save and exit in single player, or tp to another dimension, and watch the console for the dimension in question to unload, and then teleport back. Basically for the settings to come into effect, the world/dimension you are changing the settings for needs to unload and then load again, and that's when the reloaded settings will take effect.



Commands

To make things easier, this mod also adds a custom teleport command that works cross-dimensionally. That way you can easily get to a custom dimension at least once, so that you can set up whatever mod teleporters you have available. The command variants are:

  • /tpj <entity> - Teleport yourself to another entity. Works cross-dimensionally.
  • /tpj <dimension id> - Teleport yourself to the given dimension's spawn point.
  • /tpj <dimension id> [x y z] [yaw] [pitch] - Teleport yourself to the given dimension. The position arguments in square brackets are optional, it will default to the given world's spawn position.
  • /tpj <entity1> <entity2> - Teleport entity1 to entity2. Works cross-dimensionally.

Run the command without any arguments to see the current dimension ID, and to see the usage/help.

This command support the vanilla entity selectors, so you could for example teleport all creepers to 256, 64, 256 in dimension 6 by doing: /tpj @e[type=Creeper] 6 256 64 256 (entity name format in MC 1.10.2, in 1.11+ it would be creeper or minecraft:creeper).

The second command this mod adds is the /jed command, which has several "sub-commands". These can be used to register/unregister/create dimensions and set the per-dimension settings for dimensions that use a separate WorldInfo object.
If you don't want to fiddle around with the dimensions.json config file, everything in it can be manipulated through the /jed dimbuilder command.

Here are all the available /jed sub-commands, first the per-dimension counterparts of the vanilla commands:

  • /jed defaultgamemode [dimension] [options ...]
  • /jed difficulty [dimension] [options ...]
  • /jed gamerule [dimension] [options ...]
  • /jed seed [dimension]
  • /jed setworldspawn [dimension] [options ...]
  • /jed time [dimension] [options ...]
  • /jed weather [dimension] [options ...]
  • /jed worldborder [dimension] [options ...]

For example, assuming you are currently in dimension 6 and you want to disable the day light cycle:
/jed gamerule doDaylightCycle false.
OR, if you are in some other dimension, but you want to change the gamerule for dimension 6:
/jed gamerule 6 doDaylightCycle false. This does require dimension 6 to be currently loaded though.

Note: The dimension ID in the command is in most cases optional, and if you don't specify it, then it will affect the dimension you are currently in!
However, for the setworldspawn command the dimension ID however is required, IF you want to set the spawn and give the coordinates. Setting the spawn to your player's location or using the query command variant however don't require the dimension (ie. it's optional, like for most other commands).

Here are the actual JED commands:

  • /jed debug - print some information about the current dimension to the server console
  • /jed dimbuilder <options ...> - can create, read, modify and write dimension entries in the dimensions.json config
  • /jed listloadeddimensions - lists all currently loaded dimensions, including the number of chunks and entities currently loaded
  • /jed listregistereddimensions - lists all currently registered dimension IDs
  • /jed register <options ...> - register a new dimension (it's recommended to use the dimbuilder instead!)
  • /jed reload - reloads the dimensions.json config from disk
  • /jed unregister <dim id> - unregisters a dimension
  • /jed unregister-remove <dim id> - unregisters a dimension and removes it from the dimensions.json config. Does NOT remove the world files.
  • /jed unloademptydimensions [true] - tries to unload all empty dimension (= no chunks loaded). If the true option is given, then it will also try to unload all chunks first.



About the /jed dimbuilder command

The dimbuilder command can be used to "build" dimensions by setting all the various values for it the way you want it to be. It stores and manipulates all the values in a separate in-memory json structure until you tell it to save it, create it as a dimension, clear the data or read it from an existing dimension entry in the config.

Note: The list, set and remove commands have two variants, the regular, and a "-onetime" version. The onetime versions are used to change the values for the worldinfo_onetime object, whereas the normal versions change them for the regular worldinfo object. In general, it's recommended to set the vanilla properties in the worldinfo_onetime object, so that they get set only once during the creation/first load of the dimension, instead of them getting set again/overridden every time the dimension loads.

  • /jed dimbuilder read-from <dim id> - reads the values from a dimension entry in the dimensions.json config. This first clears the existing values from memory.
  • /jed dimbuilder <list | list-onetime> - print the current in-memory values as json to the server console
  • /jed dimbuilder clear - clears all the values from memory, ie. resets to an empty state
  • /jed dimbuilder dimtype <id> <name> <suffix> <keeploaded> <worldprovider> - sets the basic DimensionType values. These can be individually changed later using the set command.
  • /jed dimbuilder <set | set-onetime> <key> <value> - sets different values. They are recognized by name, so that for example "name" and "suffix" set the values inside the dimensiontype object, "override" and "unregister" are set on the "top" level where they belong, and all the other non-recognized keys/values will be set inside the "worldinfo" object.
  • /jed dimbuilder <remove | remove-onetime> <key> - removes the given key-value pair
  • /jed dimbuilder save-as <dim id> - saves the current in-memory values to a dimension entry in the dimensions.json file as the given dimension id
  • /jed dimbuilder create-as <dim id> - saves the current in-memory values to a dimension entry in the dimensions.json file as the given dimension id, and then registers it as a dimension

All the supported JED-properties and vanilla properties (keys that are inside the level.dat file) are recognized by name and automatically added to the correct place. Meaning that for example the JED-specific property SkyRendertype will get nested inside a "JED" object, inside the "worldinfo" object.

As of version 1.3.8, it's now also possible to set gamerules via the dimbuilder command. Anything that isn't a JED-property or a key inside level.dat, is assumed to be a gamerule and will get added inside a "GameRules" object, inside one of the worldinfo objects (depending on the set or set-onetime variant). As of 1.3.8, it is now also possible to add (an empty) or remove the worldinfo (or worldinfo_onetime) objects.

Here is an example how you would create a new Biomes O' Plenty dimension as dimension ID 6, with a world seed "Super Seed":

  • /jed dimbuilder clear (optional, depends on if you have older settings in memory that you don't want to keep)
  • /jed dimbuilder dimtype 6 tmpname _dim6 false WorldProviderSurfaceJED
  • /jed dimbuilder set name Real Name Dim 6
  • /jed dimbuilder set-onetime generatorName BIOMESOP
  • /jed dimbuilder set-onetime RandomSeed Super Seed
  • /jed dimbuilder create-as 6 (this will save the settings to the dimensions.json and register the dimension as ID 6)
  • /tpj 6 (teleports you to the spawn point of the newly created dimension 6)

NOTE: The keys (ie. what comes right after the "set" command: name, generatorName, RandomSeed etc.), and in many cases the values, are case-sensitive! So you MUST use them exactly as given here, or they won't work!

Note: The vanilla settings should usually be set in the worldinfo_onetime object, instead of the regular one (so using the "-onetime" variant of the set/remove/list commands). That way they will only be set once when the dimension is first created, instead of getting set/overridden every time the dimension loads. Of course if you actually want to set/override them every time the dimension gets loaded, then you can set them in the regular worldinfo object/section.

In this example the name for the dimension in the dimtype command is first set to tmpname because you can't use spaces in that command for any of the parameters, because space denotes a new parameter. But because the final chosen example name "Real Name Dim 6" has spaces in it, it is therefore set separately after the dimtype command by using the "/jed dimbuilder set" command with the key "name". The set command uses all of the parameters after the first one which is the key, as the value, joined by spaces. In other words, with the set command you can set values to keys that contain spaces. Using the dimtype command isn't even required, you could simply set the name, suffix, keeploaded and worldprovider keys using the set command directly, but the dimtype command is a bit of a shortcut though, setting them all in one command. And only the name can/should have spaces in it anyway.

This would produce an entry in the dimensions.json something like this:

{
	"dimensions": [
		{
			"dim": 6,
			"dimensiontype": {
				"id": 6,
				"name": "Real Name Dim 6",
				"suffix": "_dim6",
				"keeploaded": false,
				"worldprovider": "WorldProviderSurfaceJED"
			},
			"worldinfo_onetime": {
				"RandomSeed": "Super Seed",
				"generatorName": "BIOMESOP"
			}
		}
	]
}
			



About using existing worlds

If you want to use existing worlds as custom dimensions, you can do that in two cases:

  • The existing world is a vanilla world (or ONLY contains vanilla blocks)
  • You are able to use the level.dat (containing in particular the block ID map) from the old world when you first start this new world

Basically, using existing worlds as custom dimension is a bit tricky because of the dynamic block IDs. You can do it if you only need to use one such existing world, or if they only contain vanilla blocks. And you must prepare for that before first starting this new server/world. The issue here is the block IDs. They get assigned per-world, so essentially every modded world will have different numerical block IDs in the actual world data in the region files (for modded blocks anyway, vanilla IDs are still static, at least for now). So you need the block ID map that belongs for that particular world, otherwise all modded blocks will be completely messed up and will likely also lead to crashes on world load. The block ID map is stored in the level.dat file by Forge.

So if you want to use an existing modded world as a custom dimension, then you need to use the level.dat from that world as the "actual/main" level.dat file for this new world/server, ie. inside the main world directory, when you first create this new world for this project. That way the game will have the same block IDs as that old world had, and then all the new dimensions will be generated using the same IDs.



Miscellaneous tips and notes

  • Note: Setting 'allow-nether=false' in the server.properties file will actually stop any other dimensions than the overworld from ticking at all! (Yes, this was found out the hard way, ie. after a few hours of debugging weird problems of dimensions not loading after teleporting on one user's testing server.)

 

Mod packs/permissions

  • Mod packs: go ahead!
  • Re-hosting the mod file otherwise is not cool, mmkay?

 

If you have ideas or questions or feedback, or maybe you just want to hang out, you can join us on Discord:

Download

File Name Status Version Downloads Date
justenoughdimensions-1.10.2-1.2.0.jar release 1.10 409 17/01/2017
justenoughdimensions-1.11.2-1.2.0.jar release 1.11 500 17/01/2017
justenoughdimensions-1.12.2-1.6.0-dev.20171225.032648.jar alpha 1.12 79,601 29/12/2017
justenoughdimensions-1.10.2-1.5.4.jar release 1.10.2 43,042 15/07/2017
justenoughdimensions-1.11.2-1.5.4.jar release 1.11.2 4,371 15/07/2017
justenoughdimensions-1.12.2-1.6.0-dev.20190505.222902.jar beta 1.12.2 7,692 05/05/2019
Just Enough Dimensions 1.20.2 Updating 1.20.2 Updating Updating
Just Enough Dimensions 1.20.1 Updating 1.20.1 Updating Updating
Just Enough Dimensions 1.20 Updating 1.20 Updating Updating
Just Enough Dimensions 1.19.2 Updating 1.19.2 Updating Updating
Just Enough Dimensions 1.19.1 Updating 1.19.1 Updating Updating
Just Enough Dimensions 1.19 Updating 1.19 Updating Updating
Just Enough Dimensions 1.18 Updating 1.18 Updating Updating
Just Enough Dimensions 1.17.1 Updating 1.17.1 Updating Updating
Just Enough Dimensions Forge Updating Forge Updating Updating
Just Enough Dimensions Fabric Updating Fabric Updating Updating
Just Enough Dimensions
Just Enough Dimensions

Dear youtuber!
Have you a channel youtube and want to bring your Video to quality visitors?
Do you want your video to appear on our website?
Do you want to become partner with us?
Just 3 steps to become our partner:
Step 1: Make video review for mods, addons, plugins, ... which you like
Step 2: Upload this video to youtube and our link to your video description
Step 3: Send the youtube video link via message to http://fb.com/9lifehack or leave a comment in the post. We will add your video in the our post, it will help you have more view.
JOIN to get more youtube view with us!!!!

Related Posts

Smarty Productivity Happiness

9LifeHack.com - make things smart