Started by
ultiCRAFTer
on
Topic category: Help with Minecraft modding (Java Edition)
I am creating a mod that adds an entity that i want only one of it to be in the world at one time, and i want its spawn to be extremely rare. I've tried different methods and they didnt work, and the weight of the mob spawning no matter what it still spawns pretty common. Please leave a detailed explanation as i am pretty new to mcreator.
You could make global variable of type logic that is false and is set on true when entity is spawned. Entity has then spawn condition procedure that checks if this variable is false to spawn. If false, it means no entity was spawned yet.
I suggest you check our tutorials collection playlist on our YouTube channel which contains many examples and tutorials that can help you get started with MCreator: https://www.youtube.com/playlist?list=PLAeL-oIFIEngE6jRgFYeFMfuj8WQsO3Ei
Oh ok, will do!