Started by
Pandabeys31
on
Topic category: Help with Minecraft modding (Java Edition)
I'm making a boss and I want the boss to spawn 4 skeletons every minute. It would be better if I use tick time while using this.
Sorry for my English, it's not my native language.
Edited by Pandabeys31 on Sat, 10/26/2024 - 15:51
In the entity tick, make a counter that add +1 to itself, then if the counter is equal to 1200, have a repeat block that will spawn 4 skeletons.
Thank you!
Also make sure to set that counter to 0 every time after it spawns the skeletons, so that it can spawn them again repeatedly.