Started by
Green4
on
Topic category: Help with Minecraft modding (Java Edition)
Hi! I'm working on a mod that teleports you to another dimension with a structure in it. How could I make it so that the structure only spawns at 0, 0 (To simplify the teleportation)?
Make a logic variable eg DimensionStructureSpawned = false. Then on player enters dimension, tp player to 0 ~ 0, then if variable = false: place structure nbt file at 0 ~ 0 and set logic variable to true.