As the Title Says Im trying to make a datapack that has a custom dimension, However, Im a complete and Udder idiot and have no idea how they work. I've watched videos I tried generators and nothing seems to work for me. Please Help Lmao
4
Yes, dimensions are a real pain to create with data packs.
Go to https://misode.github.io/. It has tons of useful tools and generators for making data packs. Custom dimensions require files for the dimension, the dimension type, the noise settings, and also files for all the custom biomes. To debug you data pack, in the launcher settings turn on "open output log". Look in the output log for any error when you load your data pack.
Even with misode's generator, making dimensions/worldgen is damn hard. Have you tried making near superflat overworld or an overworld-like hills and an uncovered sky in the nether?
Agreed.
Although I feel challenged.
worldgen/noise_settings/nether
Although I feel challenged.
worldgen/noise_settings/nether
roofless nether code
{
"bedrock_roof_position": -2147483648,
"bedrock_floor_position": 0,
"sea_level": 32,
"min_surface_level": 0,
"disable_mob_generation": false,
"noise_caves_enabled": false,
"noodle_caves_enabled": false,
"aquifers_enabled": false,
"deepslate_enabled": false,
"ore_veins_enabled": false,
"default_block": {
"Name": "minecraft:netherrack"
},
"default_fluid": {
"Name": "minecraft:lava",
"Properties": {
"level": "0"
}
},
"noise": {
"min_y": 0,
"height": 128,
"density_factor": 0,
"density_offset": 0.019921875,
"size_horizontal": 1,
"size_vertical": 2,
"simplex_surface_noise": false,
"sampling": {
"xz_scale": 1,
"y_scale": 3,
"xz_factor": 80,
"y_factor": 60
},
"bottom_slide": {
"target": 320,
"size": 4,
"offset": -1
},
"top_slide": {
"target": -20,
"size": 5,
"offset": 0
}
},
"structures": {
"structures": {
"minecraft:pillager_outpost": {
"spacing": 32,
"separation": 8,
"salt": 165745296
},
"minecraft:village": {
"spacing": 32,
"separation": 8,
"salt": 10387312
},
"minecraft:fortress": {
"spacing": 27,
"separation": 4,
"salt": 30084232
},
"minecraft:desert_pyramid": {
"spacing": 32,
"separation": 8,
"salt": 14357617
},
"minecraft:bastion_remnant": {
"spacing": 27,
"separation": 4,
"salt": 30084232
},
"minecraft:stronghold": {
"spacing": 1,
"separation": 0,
"salt": 0
},
"minecraft:monument": {
"spacing": 32,
"separation": 5,
"salt": 10387313
},
"minecraft:swamp_hut": {
"spacing": 32,
"separation": 8,
"salt": 14357620
},
"minecraft:endcity": {
"spacing": 20,
"separation": 11,
"salt": 10387313
},
"minecraft:mineshaft": {
"spacing": 1,
"separation": 0,
"salt": 0
},
"minecraft:igloo": {
"spacing": 32,
"separation": 8,
"salt": 14357618
},
"minecraft:mansion": {
"spacing": 80,
"separation": 20,
"salt": 10387319
},
"minecraft:buried_treasure": {
"spacing": 1,
"separation": 0,
"salt": 0
},
"minecraft:ocean_ruin": {
"spacing": 20,
"separation": 8,
"salt": 14357621
},
"minecraft:jungle_pyramid": {
"spacing": 32,
"separation": 8,
"salt": 14357619
},
"minecraft:ruined_portal": {
"spacing": 25,
"separation": 10,
"salt": 34222645
},
"minecraft:shipwreck": {
"spacing": 24,
"separation": 4,
"salt": 165745295
},
"minecraft:nether_fossil": {
"spacing": 2,
"separation": 1,
"salt": 14357921
}
}
}
}
