I need help with boss spawing mob

Started by Pandabeys31 on

Topic category: Help with modding (Java Edition)

Last seen on 18:45, 12. Sep 2024
Joined Aug 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I need help with boss spawing mob

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.

Last seen on 04:06, 14. Sep 2024
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
In the entity tick, make a…
Wed, 08/21/2024 - 12:45

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.

Last seen on 18:45, 12. Sep 2024
Joined Aug 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thank you! 
Wed, 08/21/2024 - 16:28

Thank you! 

Last seen on 04:06, 14. Sep 2024
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Also make sure to set that…
Thu, 08/22/2024 - 02:54

Also make sure to set that counter to 0 every time after it spawns the skeletons, so that it can spawn them again repeatedly.