Started by
Jean'sMods
on
Topic category: Help with MCreator software
I am currently making a Terminator mod, and I would like to spawn it once for the entire game, when I enter the world for the first time, but I can't find any info or other help! I am sorting still learning the ropes for Mcreator.
You could try to do this with variables, like make it so that if one spawns it will stop all others from spawning
or on GLOBAL_WORLD variable (logic) and name it "spawn_condition"
your condition of spawning would be if spawn_condition = false
do return true
return false
and on the trigger, "on initial entity spawn"
set spawn_condition = true
Ok, thanks! I tried it earlier, and it didn't work, do I need to enable something else in order for it to work? Or do I just need that piece of code?
it is 2 pieces