Started by
PythonIsCool
on
Topic category: Help with Minecraft modding (Java Edition)
I want in my jojo mod to have a certain structure spawn at a certain x y z location. Is there any way to do this?
Topic category: Help with Minecraft modding (Java Edition)
I want in my jojo mod to have a certain structure spawn at a certain x y z location. Is there any way to do this?
You could set structure spawn chance to 100% and then use custom conditions for the location. This may work, but did not test.
ok ima try that
Or you could just create a global logic variable that activates the first time the player joins the world, and then use another procedure to manually generate the structure at the position you need if that variable is true.
can u explain a little more please?
@braelin777 when the player first spawns into the world, their position is set to x:0, y:?, z:0. therefore, if you set the structure to spawn at a position relative to the player, you can get it to spawn at a certain position in the world.
I hope this clears things up!