#How to make a dungeon??
1 messages · Page 1 of 1 (latest)
What sort of "dungeon"?
in which there is loot and my entity to prevent them from getting it
You can simply build a cool little dungeon, export it using a structure block and follow the tutorial on the wiki to generate it in the world
https://wiki.bedrock.dev/world-generation/structure-features
k
thx
I tried using the tutorial but my structure doesn’t spawn
could I show you my code?
Ofc you could.. but please use discord code formatting
```json
my code
```
"format_version": "1.13.0",
"minecraft:structure_template_feature": {
"description": {
"identifier": "wisteria:pooch_hut_feature"
},
"structure_name": "mystructure:pooch_hut",
"adjustment_radius": 4,
"facing_direction": "random",
"constraints": {
"block_intersection": {
"block_allowlist": [
"minecraft:air"
]
}
}
}
}
{
"format_version": "1.13.0",
"minecraft:feature_rules": {
"description": {
"identifier": "wisteria:pooch_hut_feature_rule",
"places_feature": "wisteria:pooch_hut_feature"
},
"conditions": {
"placement_pass": "first_pass",
"minecraft:biome_filter": {
"test": "has_biome_tag",
"operator": "==",
"value": "overworld"
}
},
"distribution": {
"iterations": 1,
"x": {
"extent": [
0,
16
],
"distribution": "uniform"
},
"y": {
"extent": [
100, //Makes the structure generate from y100 to y200
200
],
"distribution": "uniform"
},
"z": {
"extent": [
0,
16
],
"distribution": "uniform"
},
"scatter_chance": {
"numerator": 1,
"denominator": 25
}
}
}
}
Interesting, what did you change from the tutorial?
I only imported my own structure, and changed up the names