Started by
tetch_wolf
on
Topic category: Advanced modding
Heya,it's me again
I think now this is simpler than my last call for help
I want to make a block that after a while will generate a structure, I think this must be simple
if anyone can help me I would be extremely grateful
can explain with prints too, is that I am Brazilian and use the translator :3
thaaaanks ^^
I'm not too sure what prints are, but I'll do my best to explain this:
So basically, on the block you should be able to set a procedure for the Block Update tick. In this, you can set it to Place at X Y Z structure: [structure]. This should place your structure as soon as the block is placed. To make it take longer you can go about it 1 of 2 ways:
-You can change the block tick rate to something very high like 6000 so it takes roughly 5 minutes to spawn
-You can change to block to tick randomly to add randomness to it. If you find this generates it too quickly you can also add a do with % chance on top of the procedure to your liking.
I'm not sure how clear I was in this so feel free to ask questions.