Перейти к содержимому
Mineforgian

Villainous Horde Manager

A tool for creating Continuous Horde events.

7K загрузок15 подписчиковMITfabricforgeneoforgequilt

Обновлён 5 июня 2026 г. · опубликован 25 апреля 2023 г.

Villainous Horde Manager is a tool for creating Continuous Horde events

The Shorthand Explanation

The code for this mod is based off of Cold Snap Horde and its horde system, where the server will try to keep a consistent number of enemies alive until enough have been killed to end the event. When I wrote the code for Cold Snap Horde's version though, it wasn't very... reusable. This api is my attempt at fixing that, capable of spawning vanilla (or modded) mobs and sending them towards the target player like the snowmen do during the horde event.

You can now make your own hordes via JSON magic See the github page for more information on how to do this. It and extending off of it is frankly the recommended path.

If you are a mod developer and you want more control over a custom horde Also see the github page. Each module has an example of how to instantiate hordes and get them to function correctly for a given platform (quilt being the same as fabric, for this case)

Interested? Here's some more!

If you're still reading this, you're probably a developer interested in looking into the code for this event. Which is very neat! I'll happily accept contributions that I see as helpful additions, and help out within reason to get you set up with hordes.

Extra details about horde requirements:

  • Entities added to the horde must extend the PathfinderMob class.
  • Bigger entities are harder to spawn due to the system attempting to avoid situations where mobs would suffocate. Try to keep larger mobs to a minimum/to low spawn weights.
  • The api will scan the environment around a potential spawnpoint for any solid blocks. The size of the scan depends on the size of the mob, meaning larger mobs will be more expensive on server resources.
  • The system tries to spawn mobs at a relatively close Y level to the player (preferring locations above the player over below).
  • If the system can not find a nearby Y level, it'll settle for any Y level it can find.

Server Hosting

I've partnered with BisectHosting! If you need a quality server, click the picture below and use code "cartoonish" for 25% off your first month!

Версии

ВерсияКаналИграЗагрузчикиДатаСкачать
1.0.1Релиз1.21.1neoforge5 июня 2026 г.Скачать (75 КБ)
1.0.1Релиз1.21.1fabric5 июня 2026 г.Скачать (77 КБ)
1.0.0Релиз1.21.1neoforge8 августа 2025 г.Скачать (74 КБ)
1.0.0Релиз1.21.1fabric8 августа 2025 г.Скачать (75 КБ)
0.6.1.2Релиз1.21.1neoforge12 января 2025 г.Скачать (65 КБ)
0.6.1.2Релиз1.21.1fabric12 января 2025 г.Скачать (67 КБ)
0.6.1Релиз1.21.1fabric13 августа 2024 г.Скачать (67 КБ)
0.6.1Релиз1.21.1neoforge13 августа 2024 г.Скачать (65 КБ)
0.6.1.1Релиз1.20.1forge6 августа 2024 г.Скачать (66 КБ)
0.6.1.1Релиз1.20.1fabric6 августа 2024 г.Скачать (68 КБ)
0.6.1Релиз1.21neoforge4 августа 2024 г.Скачать (65 КБ)
0.6.1Релиз1.21fabric, quilt4 августа 2024 г.Скачать (67 КБ)
0.6.1Релиз1.20.1fabric7 июля 2024 г.Скачать (68 КБ)
0.6.1Релиз1.20.1forge7 июля 2024 г.Скачать (66 КБ)
0.6Релиз1.20.4neoforge24 апреля 2024 г.Скачать (65 КБ)

Показаны последние 15 из 33 версий.

Ченджлог

1.0.1Релиз1.21.1 · 5 июня 2026 г.
  • Adds the minimumSpawnRange and maximumSpawnRange fields to the wave data
    • If these fields are not present, they'll default to the original values of 21 and 35
    • These numbers are recommended unless you're going for something specific, as they reduce the odds of pathfinding issues, as well as reduce the risk of low render/simulation distance causing problems.
  • Adds the "auto" setting when starting json hordes through the command.
    • Auto will pick the player with the most other players around them to be the anchor point of the horde
    • If the highest player is tied with another for number of players around them when the command is run, it'll randomly pick between the top contenders.
1.0.1Релиз1.21.1 · 5 июня 2026 г.
  • Adds the minimumSpawnRange and maximumSpawnRange fields to the wave data
    • If these fields are not present, they'll default to the original values of 21 and 35
    • These numbers are recommended unless you're going for something specific, as they reduce the odds of pathfinding issues, as well as reduce the risk of low render/simulation distance causing problems.
  • Adds the "auto" setting when starting json hordes through the command.
    • Auto will pick the player with the most other players around them to be the anchor point of the horde
    • If the highest player is tied with another for number of players around them when the command is run, it'll randomly pick between the top contenders.
1.0.0Релиз1.21.1 · 8 августа 2025 г.
  • Major breaking change to the structure of the format of the JSON, see the github for more details
  • Adds in the concept of waves, allowing for, well, waves of enemies to appear instead of one set of enemies and done.
    • Waves have most of the concepts the horde once had in them, such as how many enemies need to be killed, how many can be spawned at once, etc.
    • As such, each wave in a single horde can play entirely differently!
  • Adds in an optional boss phase for each wave
    • If boss entities are included, when the life count is depleted in a wave, and alternate boss bar also defined in the config will be displayed, and the wave will only end when the determined boss entities are killed
    • Depending on configuration, the normal horde can either continue to spawn, or not during the boss phase.
  • Hordes are loaded from a subfolder in the config folder now, again see the github for details
    • But, this means if you keep every horde in its own file, and one file breaks, every other horde should work fine.
1.0.0Релиз1.21.1 · 8 августа 2025 г.
  • Major breaking change to the structure of the format of the JSON, see the github for more details
  • Adds in the concept of waves, allowing for, well, waves of enemies to appear instead of one set of enemies and done.
    • Waves have most of the concepts the horde once had in them, such as how many enemies need to be killed, how many can be spawned at once, etc.
    • As such, each wave in a single horde can play entirely differently!
  • Adds in an optional boss phase for each wave
    • If boss entities are included, when the life count is depleted in a wave, and alternate boss bar also defined in the config will be displayed, and the wave will only end when the determined boss entities are killed
    • Depending on configuration, the normal horde can either continue to spawn, or not during the boss phase.
  • Hordes are loaded from a subfolder in the config folder now, again see the github for details
    • But, this means if you keep every horde in its own file, and one file breaks, every other horde should work fine.
0.6.1.2Релиз1.21.1 · 12 января 2025 г.
  • Fixes issue making modded entities not work in JSON hordes.
0.6.1.2Релиз1.21.1 · 12 января 2025 г.
  • Fixes issue making modded entities not work in JSON hordes.
0.6.1Релиз1.21.1 · 13 августа 2024 г.
  • direct 1.21.1 port
  • Quilt support available when the QFAPI launches for 1.21.1
0.6.1Релиз1.21.1 · 13 августа 2024 г.
  • direct 1.21.1 port

Комментарии

Загружаем…