
Problems when using on a forge 1.20.1 server
Kuro1131 opened this issue ยท 3 comments
Hey @SmileycorpMC, I love the mod very much but I have some problems and tried to fixed them for sometime but no success. I'm using with All The Mod 9 mod pack on a server. I have tried /horde reset
and remove horde config but the problems still exist. The problems I encounter :
- The horde spawn ONLY zombie despite all config with script / table. This is my script and table
AllTheMod9.json
[
{
"function": "hordes:set_spawntable",
"value": [
"hordes:occultism",
"hordes:quark",
"hordes:thermal"
],
"conditions": []
}
]
quark.json
[
{
"entity": "quark:forgotten",
"weight": 7,
"first_day": 0,
"last_day": 0
},
{
"entity": "quark:wraith",
"weight": 7,
"first_day": 0,
"last_day": 0
}
]
occultism.json
[
{
"entity": "occultism:afrit_wild",
"weight": 7,
"first_day": 0,
"last_day": 0
},
{
"entity": "occultism:wild_hunt_skeleton",
"weight": 7,
"first_day": 0,
"last_day": 0
},
{
"entity": "occultism:wild_hunt_wither_skeleton",
"weight": 7,
"first_day": 0,
"last_day": 0
}
]
thermal.json
[
{
"entity": "thermal:basalz",
"weight": 7,
"first_day": 0,
"last_day": 0
},
{
"entity": "thermal:blitz",
"weight": 7,
"first_day": 0,
"last_day": 0
},
{
"entity": "thermal:blizz",
"weight": 7,
"first_day": 0,
"last_day": 0
}
]
The config work on single player world but not work on the server. But on server when I start a manual horde using command the horde spawn the correct mob of the table selected
- The second problem I had is the event spawn the so much mob that it max the horde spawn limit on the first wave spawn. Changing the number of mob spawn on horde-common.toml does not work
["Horde Event"]
#Set to false to completely disable the horde event and anything relating to it.
enableHordeEvent = true
#Set to true to disable natural horde spawns (hordes can only be spawned with commands).
hordesCommandOnly = false
#Amount of mobs to spawn per wave.
spawnAmount = 10
#Multiplier by which the spawn amount increases by each time the event naturally spawns. (Set to 1 to disable scaling.)
hordeSpawnMultiplier = 1.05
#Time in ticks the event lasts for
hordeSpawnDuration = 8000
#Time in ticks between spawns for the horde spawn event.
hordeSpawnInterval = 2000
#What time of day does the horde event start? eg 18000 is midnight with default day length.
hordeStartTime = 18000
#Amount of days between horde spawns.
hordeSpawnDays = 1
#Amount of days a horde event can be randomly delayed by
hordeSpawnVariation = 0
#Max cap for the number of entities that can exist from the horde at once.
hordeSpawnMax = 60
#Length of a day (use only if you have another day that changes the length of the day/night cycle) Default is 24000
dayLength = 24000
#How many ticks does the horde pathing ai take before recalculating? (Increase this if you are having server slowdown during horde events.)
hordePathingInterval = 10
#How fast do horde mobs move towards their tracked player?
hordeEntitySpeed = 1.0
#Set to true to enable the horde spawning on the first day. (Game day 0)
spawnFirstDay = false
#Set to false to disable the use of beds during a horde event.
canSleepDuringHorde = false
#How much should the size of each horde scale down by when multiple players are near each other?
hordeMultiplayerScaling = 0.8
#Do the daylight cycle (and active horde events get paused while there are no players online.).
pauseEventServer = true
#Are horde events tracked by player play time instead of world time.
hordeEventByPlayerTime = false
#How many ticks after a hordes scheduled time can it start?
hordeStartBuffer = 1200
#How many attempts should horde events make to avoid spawning mobs in light areas or outside their spawn type.
hordeSpawnChecks = 25
[Infection]
#Set to false to completely disable mob infection and anything related to it.
enableMobInfection = false
#Can villagers be infected.
infectVillagers = true
#Chance for a villager to get infected, a value of 1 or higher makes it guaranteed
villagerInfectChance = 0.85
#Can players be infected.
infectPlayers = true
#Whether later levels of infected should slightly slow movement speed?
infectSlowness = true
#Whether later levels of infected should deplete hunger quicker?
infectHunger = true
#Chance for a player to get infected, a value of 1 or higher makes it guaranteed
playerInfectChance = 0.75
#How long do each of the 4 effect phases last for before the next phase is activated?
ticksForEffectStage = 6000
#Do players who die to infection spawn a zombie?
infectionSpawnsZombiePlayers = true
#Do entities on the infectionEntities list automatically target entities on the infectionConversionList
infectionEntitiesAggroConversions = true
#What factor should the infection potion effect timer be multiplied by for each cured infection? (Resets on death, set to 1 to disable scaling)
effectStageTickReduction = 0.95
[Misc]
#Whether zombies and drowned burn in sunlight.
zombiesBurn = false
#Whether skeletons and strays burn in sunlight.
skeletonsBurn = false
#Whether zombie villagers have vanilla curing mechanics or not
zombieVillagersCanBeCured = false
#Whether piglins and hoglins automatically convert to zombies in the overworld
piglinsHoglinsConvert = false
#Whether zombie horses are aggressive or not.
aggressiveZombieHorses = true
#Whether zombie horses burn in sunlight.
zombieHorsesBurn = false
#Whether skeleton horses burn in sunlight.
skeletonHorsesBurn = false
#Whether unmounted horses are scared of zombies.
zombiesScareHorses = true
#Whether zombie piglins are hostile by default
zombiePiglinsHostile = true
#Whether piglins kill zombie mobs
piglinsHuntZombies = true
#Whether piglins use cures they find and keep in their inventory to heal infection.
piglinsCureThemself = true
#Whether illagers kill zombie mobs
illagersHuntZombies = true
#Whether zoglins are agressive towards other undead mobs
zoglinsAttackUndead = false
#Whether zoglins are agressive towards non-undead monsters
zoglinsAttackMobs = true
[Misc."Zombie Players"]
#Whether to use zombie players as graves all the time. (Even if infection is disabled)
zombieGraves = false
#Whether to spawn drowned players when a player dies underwater instead of a zombie player. (Whether the zombie is spawned from infection or zombieGraves being true)
drownedPlayers = true
#Whether to spawn husk players when a player dies in a desert biome instead of a zombie player. (Whether the zombie is spawned from infection or zombieGraves being true)
huskPlayers = true
#Whether zombie players, drowned players and husk players should be immune to fire damage
zombiePlayersFireImmune = false
#Whether zombie players and drowned players burn in sunlight.
zombiePlayersBurn = false
#Whether zombie players, drowned players and husk players are immune to all damage from non player sources.
zombiePlayersOnlyHurtByPlayers = false
#Whether zombie players, drowned players and husk players store items dropped by the player that spawned them.
zombiePlayersStoreItems = true
#Do zombie players despawn in peaceful mode?
zombiePlayersDespawnPeaceful = false
- Here is a list of mods on the server
'[1.20.1] SecurityCraft v1.9.10.jar' l2archery-2.4.15.jar
absentbydesign-1.20.1-1.9.0.jar l2complements-2.4.41.jar
AchievementOptimizer-1.20.1-1.0.5.jar l2hostility-2.4.33.jar
ad_astra-forge-1.20.1-1.15.18.jar l2library-2.4.29.jar
Ad-Astra-Giselle-Addon-forge-1.20.1-6.14.jar l2weaponry-2.4.34.jar
AdditionalEnchantedMiner-1.20.1-1201.1.90.jar laserio-1.6.8.jar
additionallanterns-1.1.1a-forge-mc1.20.jar ldlib-forge-1.20.1-1.0.27.b.jar
additional_lights-1.20.1-2.1.7.jar L_Enders_Cataclysm-1.99.6-1.20.1.jar
AdvancedPeripherals-1.20.1-0.7.40r.jar letmedespawn-1.20.x-forge-1.4.4.jar
advgenerators-1.6.0.6-mc1.20.1.jar LibX-1.20.1-5.0.14.jar
ae2insertexportcard-1.20.1-1.3.0.jar lionfishapi-1.9.jar
AE2-Things-1.2.1.jar lithostitched-forge-1.20.1-1.1.8.jar
ae2wtlib-15.2.3-forge.jar littlecontraptions-forge-1.20.1.2.jar
AEAdditions-1.20.1-5.0.6.jar littlelogistics-mc1.20.1-v1.20.1.2.jar
AEInfinityBooster-1.20.1-1.0.0+21.jar logprot-1.20.1-3.4.jar
aether-1.20.1-1.4.2-neoforge.jar lootr-forge-1.20-0.7.34.89.jar
AI-Improvements-1.20-0.5.2.jar lost_aether_content-1.20.1-1.2.3.jar
aiotbotania-1.20.1-4.0.5.jar lostcities-1.20-7.3.2.jar
alchemistry-1.20.1-2.3.4.jar macawsbridgesbop-1.20-1.3.jar
alchemylib-1.20.1-1.0.30.jar macawsroofsbop-1.20-1.1.jar
allthecompressed-1.20.1-3.0.2.jar mahoutsukai-1.20.1-v1.34.71.jar
allthemodium-1.20.1-47.1.25-2.5.1.jar matc-1.6.0.jar
alltheores-1.20.1-47.1.3-2.2.4.jar MaxHealthFix-Forge-1.20.1-12.0.3.jar
allthetweaks-1.20.1-47.2.20-2.3.2.jar mcjtylib-1.20-8.0.6.jar
allthewizardgear-1.20.1-1.1.4.jar mcw-bridges-3.0.0-mc1.20.1forge.jar
almanac-1.20.x-forge-1.0.2.jar mcw-doors-1.1.1forge-mc1.20.1.jar
almostunified-forge-1.20.1-0.9.4.jar mcw-fences-1.1.2-mc1.20.1forge.jar
alternate_current-mc1.20-1.7.0.jar mcwfencesbop-1.20-1.2.jar
amendments-1.20-1.2.8.jar mcw-furniture-3.3.0-mc1.20.1forge.jar
AngelRing2-1.20.1-2.2.2.jar mcw-lights-1.1.0-mc1.20.1forge.jar
Apotheosis-1.20.1-7.4.2.jar mcw-paintings-1.0.5-1.20.1forge.jar
ApothicAttributes-1.20.1-1.3.7.jar mcw-paths-1.0.5-1.20.1forge.jar
ApothicCurios-1.20.1-1.0.3d.jar mcw-roofs-2.3.1-mc1.20.1forge.jar
appleskin-forge-mc1.20.1-2.5.1.jar mcw-trapdoors-1.1.3-mc1.20.1forge.jar
Applied-Botanics-forge-1.5.0.jar mcw-windows-2.3.0-mc1.20.1forge.jar
appliedenergistics2-forge-15.2.13.jar Measurements-forge-1.20.1-2.0.0.jar
AppliedFlux-1.20-1.1.8-forge.jar megacells-forge-2.4.4-1.20.1.jar
Applied-Mekanistics-1.4.2.jar Mekanism-1.20.1-10.4.9.61.jar
Aquaculture-1.20.1-2.5.2.jar MekanismGenerators-1.20.1-10.4.9.61.jar
architectury-9.2.14-forge.jar MekanismTools-1.20.1-10.4.9.61.jar
ars_creo-1.20.1-4.1.0.jar memorysettings-1.20.1-5.5.jar
ars_elemental-1.20.1-0.6.5.0.1.jar merequester-forge-1.20.1-1.1.4.jar
arseng-1.2.0.jar minecolonies-1.20.1-1.1.647-beta.jar
ars_nouveau-1.20.1-4.12.4-all.jar mininggadgets-1.15.6.jar
ars_ocultas-1.20.1-1.2.2-all.jar MobDespawnTimers-1.20.1-3.0.1.jar
artifacts-forge-9.5.11.jar mob_grinding_utils-1.20.1-1.1.0.jar
athena-forge-1.20.1-3.1.2.jar mobtimizations-forge-1.20.1-1.0.0.jar
'Atlas Lib-1.20.1-1.1.12.jar' modernfix-forge-5.19.4+mc1.20.1.jar
AttributeFix-Forge-1.20.1-21.0.4.jar modonomicon-1.20.1-forge-1.75.0.jar
Axiom-4.1.1-for-MC1.20.1.jar modulargolems-2.4.41.jar
balm-forge-1.20.1-7.3.9-all.jar modular-routers-12.1.1+mc1.20.1.jar
BambooEverything-forge-3.0.3+mc1.20.1.jar monolib-forge-1.20.1-1.4.1.jar
baubley-heart-canisters-1.20.1-1.0.5.jar MonsterPlus-Forge1.20.1-v1.1.6.1.jar
bdlib-1.27.0.8-mc1.20.1.jar moonlight-1.20-2.12.17-forge.jar
BetterAdvancements-Forge-1.20.1-0.4.2.10.jar moredragoneggs-4.0.jar
BiomesOPlenty-1.20.1-18.0.0.598.jar morejs-forge-1.20.1-0.10.0.jar
blockui-1.20.1-1.0.186-beta.jar moreoverlays-1.22.7-mc1.20.2.jar
bloodmagic-1.20.1-3.3.3-45.jar morered-1.20.1-4.0.0.4.jar
blueflame-1.20.0-1.0.3.jar MouseTweaks-forge-mc1.20.1-2.25.1.jar
blue_skies-1.20.1-1.3.31.jar multipiston-1.20-1.2.43-RELEASE.jar
Bookshelf-Forge-1.20.1-20.2.13.jar MutantMonsters-v8.0.7-1.20.1-Forge.jar
Botania-1.20.1-446-FORGE.jar MyServerIsCompatible-1.20-1.0.jar
BotanyPots-Forge-1.20.1-13.0.38.jar mysterious_mountain_lib-1.4.7-1.20.1.jar
BotanyTrees-Forge-1.20.1-9.0.15.jar MysticalAgradditions-1.20.1-7.0.3.jar
botarium-forge-1.20.1-2.3.4.jar MysticalAgriculture-1.20.1-7.0.12.jar
BrandonsCore-1.20.1-3.2.1.302-universal.jar MysticalCustomization-1.20.1-5.0.2.jar
buildinggadgets2-1.0.7.jar MythicBotany-1.20.1-4.0.3.jar
cabletiers-1.20.1-1.2.2.jar naturalist-forge-4.0.3-1.20.1.jar
caelus-forge-3.2.0+1.20.1.jar NaturesAura-39.4.jar
caupona-1.20.1-0.4.9.jar NaturesCompass-1.20.1-1.11.2-forge.jar
cc-tweaked-1.20.1-forge-1.113.0.jar netherportalfix-forge-1.20-13.0.1.jar
cfm-forge-1.20.1-7.0.0-pre36.jar nethersdelight-1.20.1-4.0.jar
charginggadgets-1.11.0.jar NoChatReports-FORGE-1.20.1-v2.2.2.jar
charmofundying-forge-6.5.0+1.20.1.jar noflyzone-1.20.1-1.1.0.jar
chemlib-1.20.1-2.0.19.jar noisium-forge-2.3.0+mc1.20-1.20.1.jar
Chimes-v2.0.1-1.20.1.jar 'Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar'
Chipped-forge-1.20.1-3.0.6.jar notrample-1.20.1-1.0.1.jar
citadel-2.6.0-1.20.1.jar novillagerdm-1.20.1-5.0.0.jar
cleanswing-1.20-1.5.jar occultism-1.20.1-1.137.0.jar
clickadv-1.20.1-3.8.jar oceansdelight-1.0.2-1.20.jar
cloth-config-11.1.118-forge.jar OctoLib-FORGE-0.4.2+1.20.1.jar
Clumps-forge-1.20.1-12.0.0.4.jar packetfixer-forge-1.4.2-1.19-to-1.20.1.jar
CodeChickenLib-1.20.1-4.4.0.512-universal.jar PackingTape-1.20.1-0.14.3.jar
cofh_core-1.20.1-11.0.2.56.jar Paraglider-forge-20.1.3.jar
comforts-forge-6.4.0+1.20.1.jar PassiveSkillTree-1.20.1-BETA-0.6.14a-all.jar
CommonCapabilities-1.20.1-2.9.3.jar Patchouli-1.20.1-84-FORGE.jar
configuration-forge-1.20.1-2.2.1.jar PigPen-Forge-1.20.1-15.0.2.jar
connectedglass-1.1.12-forge-mc1.20.1.jar pipez-forge-1.20.1-1.2.16.jar
connectivity-1.20.1-5.6.jar Placebo-1.20.1-8.6.2.jar
Connector-1.0.0-beta.46+1.20.1.jar platforms-forge-1.20.1-1.1.jar
ConnectorExtras-1.11.2+1.20.1.jar player-animation-lib-forge-1.0.2-rc1+1.20.jar
constructionwand-1.20.1-2.11.jar pneumaticcraft-repressurized-6.0.17+mc1.20.1.jar
Controlling-forge-1.20.1-12.0.2.jar polyeng-forge-0.1.1-1.20.1.jar
cookingforblockheads-forge-1.20.1-16.0.6.jar polymorph-forge-0.49.5+1.20.1.jar
corail_woodcutter-1.20.1-3.0.5.jar ponderjs-1.20.1-1.4.0.jar
CorgiLib-forge-1.20.1-4.0.1.3.jar Potion-Blender-1.20.1-FORGE-3.1.1.jar
corn_delight-1.0.4-1.20.1.jar potionsmaster-1.20.1-47.1.70-0.6.0.jar
coroutil-forge-1.20.1-1.3.7.jar Powah-5.0.7.jar
cosmeticarmorreworked-1.20.1-v1a.jar productivebees-1.20.1-12.6.0.jar
crafting-on-a-stick-1.20.1-1.1.5.jar productivetrees-1.20.1-0.2.6.jar
craftingtweaks-forge-1.20.1-18.2.5.jar puffish_attributes-0.6.1-1.20-fabric.jar
crashutilities-8.1.4.jar puffish_skills-0.14.1-1.20-fabric.jar
create-1.20.1-0.5.1.f.jar PuzzlesLib-v8.1.24-1.20.1-Forge.jar
createaddition-1.20.1-1.2.4e.jar pylons-1.20.1-4.2.1.jar
create_enchantment_industry-1.20.1-for-create-0.5.1.f-1.2.9.d.jar Quark-4.0-460.jar
create_jetpack-forge-4.2.1.jar quickstack-1.20.1-1.jar
create-new-age-forge-1.20.1-1.1.2.jar radium-mc1.20.1-0.12.4+git.26c9d8e.jar
createoreexcavation-1.20-1.5.0.jar railcraft-reborn-1.20.1-1.1.7.jar
creeperoverhaul-3.0.2-forge.jar rangedpumps-1.1.0.jar
cristellib-1.1.5-forge.jar rebornstorage-1.20.1-5.0.7.jar
Croptopia-1.20.1-FORGE-3.0.4.jar rechiseled-1.1.6-forge-mc1.20.jar
Cucumber-1.20.1-7.0.11.jar rechiseledcreate-1.0.2-forge-mc1.20.jar
cupboard-1.20.1-2.7.jar redstone_arsenal-1.20.1-8.0.1.24.jar
curios-forge-5.11.0+1.20.1.jar refinedpolymorph-0.1.1-1.20.1.jar
CyclopsCore-1.20.1-1.19.5.jar refinedstorage-1.12.4.jar
dankstorage-forge-1.20.1-13.jar refinedstorageaddons-0.10.0.jar
DarkPaintings-Forge-1.20.1-17.0.4.jar reliquary-1.20.1-2.0.41.1229.jar
DarkUtilities-Forge-1.20.1-17.0.3.jar repurposed_structures-7.1.15+1.20.1-forge.jar
deeperdarker-forge-1.20.1-1.2.1.jar Reroll-Enchants-fabric-1.20.1-0.jar
deepresonance-1.20-5.0.4.jar resourcefulconfig-forge-1.20.1-2.1.2.jar
Delightful-1.20.1-3.6.jar resourcefullib-forge-1.20.1-2.1.29.jar
DimStorage-1.20.1-8.0.1.jar rftoolsbase-1.20-5.0.5.jar
disenchanting_table-merged-1.20.1-3.1.0.jar rftoolsbuilder-1.20-6.0.5.jar
domesticationinnovation-1.7.1-1.20.1.jar rftoolscontrol-1.20-7.0.2.jar
domum_ornamentum-1.20.1-1.0.203-beta-universal.jar rftoolspower-1.20-6.0.2.jar
Draconic-Evolution-1.20.1-3.1.2.588-universal.jar rftoolsstorage-1.20-5.0.3.jar
'Dungeon Crawl-1.20.1-2.3.14.jar' rftoolsutility-1.20-6.0.6.jar
DungeonsArise-1.20.x-2.1.58-release.jar rhino-forge-2001.2.3-build.6.jar
durabilitytooltip-1.1.5-forge-mc1.20.jar RSInfinityBooster-1.20.1-1.0+32.jar
dyenamics-1.20.1-3.2.0.jar rsinsertexportupgrade-1.20.1-1.4.0.jar
dyenamicsandfriends-1.20.1-1.8.0.jar rsrequestify-1.20.1-2.3.3.jar
dynamiclightsreforged-1.20.1_v1.6.0.jar Runelic-Forge-1.20.1-18.0.2.jar
EasyAnvils-v8.0.2-1.20.1-Forge.jar ScalableCatsForce-3.3.1-build-0-with-library.jar
easy-villagers-forge-1.20.1-1.1.17.jar Searchables-forge-1.20.1-1.0.3.jar
eccentrictome-1.20.1-1.10.2.jar serverconfigupdater-4.0.2.jar
EdivadLib-1.20.1-2.0.1.jar servercore-forge-1.5.1+1.20.1.jar
eidolon_repraised-1.20.1-0.3.8.13.jar shetiphiancore-forge-1.20.1-1.3.jar
elevatorid-1.20.1-lex-1.9.jar Shrink-1.20.1-1.4.5.jar
elytraslot-forge-6.4.3+1.20.1.jar silent-gear-1.20.1-3.6.6.jar
emi-1.1.16+1.20.1+forge.jar silent-lib-1.20.1-8.0.0.jar
enderchests-forge-1.20.1-1.2.jar SimpleBackups-1.20.1-3.1.7.jar.DISABLED
EnderIO-1.20.1-6.1.8-beta-all.jar simplemagnets-1.1.11-forge-mc1.20.jar
endermanoverhaul-forge-1.20.1-1.0.4.jar simplylight-1.20.1-1.4.6-build.50.jar
endersdelight-1.20.1-1.0.3.jar simplyskills-1.7.1+1.20.1.jar
endertanks-forge-1.20.1-1.3.jar sliceanddice-forge-3.2.1.jar
ends_delight-1.20.1-2.4.jar SmartBrainLib-forge-1.20.1-1.15.jar
energymeter-forge-1.20.1-1.0.0.jar solcarrot-1.20.1-1.15.1.jar
ensorcellation-1.20.1-5.0.2.24.jar sophisticatedbackpacks-1.20.1-3.20.6.1064.jar
entangled-1.3.19-forge-mc1.20.4.jar sophisticatedcore-1.20.1-0.6.25.632.jar
EpheroLib-1.20.1-FORGE-1.2.0.jar sophisticatedstorage-1.20.1-0.10.26.817.jar
everythingcopper-1.20.1-2.3.4.jar sparsestructuresreforged-1.20.1-1.0.0.jar
EvilCraft-1.20.1-1.2.44.jar spell_engine-0.15.11+1.20.1.jar
Exchangers-1.20.1-3.5.1.jar spell_power-0.12.0+1.20.1.jar
ExtendedAE-1.20-1.1.12-forge.jar 'Stargate Journey-1.20.1-0.6.27.jar'
ExtraDisks-1.20.1-3.0.2.jar starlight-1.1.2+forge.1cda73c.jar
ExtraStorage-1.20.1-4.0.7.jar Steam_Rails-1.6.4+forge-mc1.20.1.jar
ExtremeReactors2-1.20.1-2.0.84.jar Structory_1.20.x_v1.3.5.jar
ExtremeSoundMuffler-3.48-forge-1.20.1.jar StructureCompass-1.20.1-2.0.9.jar
fabric-api-0.92.2+1.11.8+1.20.1.jar structure_gel-1.20.1-2.16.2.jar
FarmersDelight-1.20.1-1.2.4.jar structurize-1.20.1-1.0.755-beta.jar
farmingforblockheads-forge-1.20.1-14.0.2.jar stylecolonies-1.9.jar
fasterrandom-5.1.0.jar StylishEffects-v8.0.2-1.20.1-Forge.jar
FastFurnace-1.20.1-8.0.2.jar 'Super Factory Manager-1.20.1-4.19.0.jar'
FastLeafDecay-32.jar supermartijn642configlib-1.1.8-forge-mc1.20.jar
FastSuite-1.20.1-5.0.1.jar supermartijn642corelib-1.1.17a-forge-mc1.20.1.jar
FastWorkbench-1.20.1-8.0.4.jar supplementaries-1.20-2.8.17.jar
ferritecore-6.0.1-forge.jar sushigocrafting-1.20.1-0.5.3.jar
findme-3.2.1-forge.jar tempad-forge-1.20.1-2.3.4.jar
flib-1.20.1-0.0.14.jar tenshilib-1.20.1-1.7.6-forge.jar
flickerfix-1.20.1-4.0.1.jar TerraBlender-forge-1.20.1-3.0.1.7.jar
FluxNetworks-1.20.1-7.2.1.15.jar Terralith_1.20.x_v2.5.4.jar
forbidden_arcanus-1.20.1-2.2.6.jar The-Hordes-1.20.1-1.5.4.jar
'[Forge]CTOV-v3.4.5.jar' thermal_cultivation-1.20.1-11.0.1.24.jar
FramedBlocks-9.3.1.jar thermal_dynamics-1.20.1-11.0.1.23.jar
ftb-chunks-forge-2001.3.1.jar thermal_expansion-1.20.1-11.0.1.29.jar
ftb-essentials-forge-2001.2.2.jar ThermalExtra-3.1.7-1.20.1.jar
ftb-library-forge-2001.2.4.jar thermal_foundation-1.20.1-11.0.6.70.jar
ftb-quests-forge-2001.4.8.jar thermal_innovation-1.20.1-11.0.1.23.jar
ftb-ranks-forge-2001.1.3.jar thermal_integration-1.20.1-11.0.1.27.jar
ftb-teams-forge-2001.3.0.jar thermal_locomotion-1.20.1-11.0.1.19.jar
ftb-ultimine-forge-2001.1.5.jar The_Undergarden-1.20.1-0.8.14.jar
ftb-xmod-compat-forge-2.1.1.jar theurgy-1.20.1-1.21.1.jar
fuelgoeshere-1.20.0-1.0.1.jar time-in-a-bottle-4.0.4-mc1.20.1.jar
functionalstorage-1.20.1-1.2.12.jar tinyredstone-1.20-5.0.2.jar
fusion-1.1.1-forge-mc1.20.1.jar titanium-1.20.1-3.8.32.jar
GatewaysToEternity-1.20.1-4.2.5.jar ToastControl-1.20.1-8.0.3.jar
geckolib-forge-1.20.1-4.4.9.jar tombstone-1.20.1-8.7.1.jar
generatorgalore-1.20.1-1.2.4.jar ToolBelt-1.20.1-1.20.01.jar
getittogetherdrops-forge-1.20-1.3.jar torchmaster-20.1.6.jar
Glassential-renewed-forge-1.20.1-2.4.1.jar totw_modded-forge-1.20.1-1.0.5.jar
Glodium-1.20-1.5-forge.jar Towns-and-Towers-1.12-Fabric+Forge.jar
GravitationalModulatingAdditionalUnit-1.20.1-3.2.jar towntalk-1.20.1-1.1.0.jar
gtceu-1.20.1-1.4.0.jar trashcans-1.0.18b-forge-mc1.20.jar
GunpowderLib-1.20.2-2.2.2.jar trashcompactor-1.20.1-1.0.1.jar
handcrafted-forge-1.20.1-3.0.6.jar trashslot-forge-1.20-15.1.0.jar
harvestwithease-1.20.1-8.0.1.0-forge.jar travelersbackpack-forge-1.20.1-9.1.15.jar
HostileNeuralNetworks-1.20.1-5.3.1.jar trinkets-3.7.2.jar
hyperbox-1.20.1-4.0.2.0.jar Twigs-1.20.1-3.1.0.jar
Icterine-forge-1.20.0-1-1.3.0.jar twilightdelight-2.0.12.jar
ImmersiveEngineering-1.20.1-10.1.0-171.jar twilightforest-1.20.1-4.3.2508-universal.jar
improvedmobs-1.20.1-1.13.0-forge.jar universalgrid-1.20.1-1.1.jar
incontrol-1.20-9.2.8.jar utilitarian-1.20.1-0.9.1.jar
industrial-foregoing-1.20.1-3.5.19.jar UtilitiX-1.20.1-0.8.22.jar
industrial-foregoing-souls-1.20.1-1.0.9.jar valhelsia_core-forge-1.20.1-1.1.2.jar
IntegratedCrafting-1.20.1-1.1.8.jar villagertools-1.20.1-1.0.3.jar
IntegratedDynamics-1.20.1-1.23.2.jar Voidscape-1.20.1-1.5.389.jar
IntegratedTerminals-1.20.1-1.5.1.jar voidtotem-forge-1.20-3.0.1.jar
IntegratedTunnels-1.20.1-1.8.31.jar waystones-forge-1.20-14.1.5.jar
ironfurnaces-1.20.1-4.1.6.jar wirelesschargers-1.0.9a-forge-mc1.20.jar
IronJetpacks-1.20.1-7.0.6.jar WitherSkeletonTweaks-1.20.1-9.1.0.jar
irons_spellbooks-1.20.1-3.4.0.jar xnet-1.20-6.1.4.jar
itemcollectors-1.1.10-forge-mc1.20.jar xnetgases-1.20.1-5.1.4.jar
item-filters-forge-2001.1.0-build.59.jar YungsApi-1.20-Forge-4.0.5.jar
ItemProductionLib-1.20.1-1.0.2a-all.jar YungsBetterDesertTemples-1.20-Forge-3.0.3.jar
Jade-1.20.1-forge-11.11.1.jar YungsBetterDungeons-1.20-Forge-4.0.4.jar
JadeAddons-1.20.1-Forge-5.3.0.jar YungsBetterEndIsland-1.20-Forge-2.0.6.jar
JCPlugin-1.17.x-1.20.x-4.0.4-Forge.jar YungsBetterJungleTemples-1.20-Forge-2.0.5.jar
jearchaeology-1.20.1-1.0.4.jar YungsBetterMineshafts-1.20-Forge-4.0.4.jar
jei-1.20.1-forge-15.14.0.65.jar YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar
jumpboat-1.20.0-1.0.5.jar YungsBetterOceanMonuments-1.20-Forge-3.0.4.jar
JustEnoughMekanismMultiblocks-1.20.1-4.5.jar YungsBetterStrongholds-1.20-Forge-4.0.3.jar
JustEnoughProfessions-forge-1.20.1-3.0.1.jar YungsBetterWitchHuts-1.20-Forge-3.0.3.jar
JustEnoughResources-1.20.1-1.4.0.247.jar YungsExtras-1.20-Forge-4.0.3.jar
justzoom_forge_2.0.0_MC_1.20.1.jar ZeroCore2-1.20.1-2.1.45.jar
konkrete_forge_1.8.0_MC_1.20-1.20.1.jar Zeta-1.0-24.jar
kotlinforforge-4.11.0-all.jar zombieawareness-1.20.1-1.13.1.jar
kubejs-forge-2001.6.5-build.14.jar
- Here is the log from horde.log. The first active horde is mod auto start and the second one is I manual start with command
Trying to load common config
Trying to load client config
Config files are up to date, skipping data/asset generation
Loaded entity voidscape:null_servant as entity.voidscape.null_servant with weight 7, min day 0 and max day 0
Loaded entity voidscape:voids_wrath as entity.voidscape.voids_wrath with weight 7, min day 0 and max day 0
loaded horde table hordes:voidscape
Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 35, min day 0 and max day 20
Loaded entity minecraft:zombie_villager as entity.minecraft.zombie_villager with weight 1, min day 0 and max day 20
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 20 and max day 40
Loaded entity minecraft:husk as entity.minecraft.husk with weight 40, min day 20 and max day 40
Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 3, min day 30 and max day 40
Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 40 and max day 40
Loaded entity minecraft:zombified_piglin as entity.minecraft.zombified_piglin with weight 10, min day 40 and max day 0
Loaded entity minecraft:husk as entity.minecraft.husk with weight 25, min day 50 and max day 0
Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 50 and max day 0
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 50 and max day 0
loaded horde table hordes:default
Loaded entity ars_nouveau:wilden_guardian as entity.ars_nouveau.wilden_guardian with weight 7, min day 0 and max day 0
Loaded entity ars_nouveau:wilden_hunter as entity.ars_nouveau.wilden_hunter with weight 7, min day 0 and max day 0
Loaded entity ars_nouveau:wilden_stalker as entity.ars_nouveau.wilden_stalker with weight 7, min day 0 and max day 0
loaded horde table hordes:ars_nouveau
Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 20, min day 0 and max day 20
Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 10, min day 20 and max day 30
Loaded entity minecraft:spider as entity.minecraft.spider with weight 15, min day 20 and max day 30
Loaded entity minecraft:creeper as entity.minecraft.creeper with weight 5, min day 30 and max day 30
Loaded entity minecraft:husk as entity.minecraft.husk with weight 20, min day 30 and max day 50
Loaded entity minecraft:stray as entity.minecraft.stray with weight 10, min day 40 and max day 50
Loaded entity minecraft:cave_spider as entity.minecraft.cave_spider with weight 10, min day 40 and max day 50
Loaded entity minecraft:witch as entity.minecraft.witch with weight 5, min day 40 and max day 50
Loaded entity minecraft:pillager as entity.minecraft.pillager with weight 10, min day 40 and max day 50
Loaded entity minecraft:zombified_piglin as entity.minecraft.zombified_piglin with weight 10, min day 40 and max day 50
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 40 and max day 50
Loaded entity minecraft:wither_skeleton as entity.minecraft.wither_skeleton with weight 10, min day 50 and max day 0
Loaded entity minecraft:phantom as entity.minecraft.phantom with weight 5, min day 50 and max day 50
Loaded entity minecraft:vindicator as entity.minecraft.vindicator with weight 10, min day 50 and max day 50
Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 5, min day 40 and max day 40
Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 5, min day 50 and max day 50
Loaded entity minecraft:evoker as entity.minecraft.evoker with weight 5, min day 50 and max day 50
Loaded entity minecraft:piglin_brute as entity.minecraft.piglin_brute with weight 10, min day 60 and max day 0
Loaded entity minecraft:cave_spider as entity.minecraft.cave_spider with weight 15, min day 60 and max day 0
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 5, min day 60 and max day 0
Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 3, min day 60 and max day 0
Loaded entity minecraft:phantom as entity.minecraft.phantom with weight 3, min day 60 and max day 0
loaded horde table hordes:mixed_mobs
Loaded entity minecraft:pillager as entity.minecraft.pillager with weight 15, min day 0 and max day 0
Loaded entity minecraft:vindicator as entity.minecraft.vindicator with weight 10, min day 0 and max day 0
Loaded entity minecraft:witch as entity.minecraft.witch with weight 5, min day 20 and max day 0
Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 5, min day 30 and max day 40
Loaded entity minecraft:evoker as entity.minecraft.evoker with weight 3, min day 40 and max day 40
Loaded entity minecraft:illusioner as entity.minecraft.illusioner with weight 5, min day 50 and max day 0
Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 3, min day 50 and max day 0
Loaded entity minecraft:ravager as entity.minecraft.ravager with weight 5, min day 50 and max day 0
loaded horde table hordes:illagers
Loaded entity deeperdarker:sculk_centipede as entity.deeperdarker.sculk_centipede with weight 7, min day 0 and max day 0
Loaded entity deeperdarker:sculk_leech as entity.deeperdarker.sculk_leech with weight 7, min day 0 and max day 0
Loaded entity deeperdarker:shattered as entity.deeperdarker.shattered with weight 7, min day 0 and max day 0
Loaded entity deeperdarker:shriek_worm as entity.deeperdarker.shriek_worm with weight 7, min day 0 and max day 0
loaded horde table hordes:deeperdarker
Loaded entity bygonenether:corpor as entity.minecraft.pig with weight 7, min day 0 and max day 0
Loaded entity bygonenether:piglin_hunter as entity.minecraft.pig with weight 7, min day 0 and max day 0
Loaded entity bygonenether:piglin_prisoner as entity.minecraft.pig with weight 7, min day 0 and max day 0
Loaded entity bygonenether:warped_enderman as entity.minecraft.pig with weight 7, min day 0 and max day 0
Loaded entity bygonenether:wex as entity.minecraft.pig with weight 7, min day 0 and max day 0
Loaded entity bygonenether:wither_skeleton_knight as entity.minecraft.pig with weight 7, min day 0 and max day 0
Loaded entity bygonenether:wraither as entity.minecraft.pig with weight 7, min day 0 and max day 0
loaded horde table hordes:bygonenether
Loaded entity aether:cockatrice as entity.aether.cockatrice with weight 7, min day 0 and max day 0
Loaded entity aether:fire_minion as entity.aether.fire_minion with weight 7, min day 0 and max day 0
Loaded entity aether:mimic as entity.aether.mimic with weight 7, min day 0 and max day 0
Loaded entity aether:slider as entity.aether.slider with weight 7, min day 0 and max day 0
Loaded entity aether_redux:blightbunny as entity.minecraft.pig with weight 7, min day 0 and max day 0
Loaded entity aether_redux:skyroot_mimic as entity.minecraft.pig with weight 7, min day 0 and max day 0
loaded horde table hordes:aether
Loaded entity evilcraft:netherfish as entity.evilcraft.netherfish with weight 7, min day 0 and max day 0
Loaded entity evilcraft:werewolf as entity.evilcraft.werewolf with weight 7, min day 0 and max day 0
loaded horde table hordes:evilcraft
Loaded entity irons_spellbooks:archevoker as entity.irons_spellbooks.archevoker with weight 7, min day 0 and max day 0
Loaded entity irons_spellbooks:catacombs_zombie as entity.irons_spellbooks.catacombs_zombie with weight 7, min day 0 and max day 0
Loaded entity irons_spellbooks:citadel_keeper as entity.irons_spellbooks.citadel_keeper with weight 7, min day 0 and max day 0
Loaded entity irons_spellbooks:cryomancer as entity.irons_spellbooks.cryomancer with weight 7, min day 0 and max day 0
Loaded entity irons_spellbooks:cultist as entity.irons_spellbooks.cultist with weight 7, min day 0 and max day 0
Loaded entity irons_spellbooks:magehunter_vindicator as entity.irons_spellbooks.magehunter_vindicator with weight 7, min day 0 and max day 0
Loaded entity irons_spellbooks:necromancer as entity.irons_spellbooks.necromancer with weight 7, min day 0 and max day 0
loaded horde table hordes:irons_spellbooks
Loaded entity blue_skies:armored_frost_spirit as entity.blue_skies.armored_frost_spirit with weight 7, min day 0 and max day 0
Loaded entity blue_skies:artificial_golem as entity.blue_skies.artificial_golem with weight 7, min day 0 and max day 0
Loaded entity blue_skies:crynocerous as entity.blue_skies.crynocerous with weight 7, min day 0 and max day 0
Loaded entity blue_skies:diophyde_prowler as entity.blue_skies.diophyde_prowler with weight 7, min day 0 and max day 0
Loaded entity blue_skies:emberback as entity.blue_skies.emberback with weight 7, min day 0 and max day 0
Loaded entity blue_skies:infested_swarmer as entity.blue_skies.infested_swarmer with weight 7, min day 0 and max day 0
Loaded entity blue_skies:nyctofly as entity.blue_skies.nyctofly with weight 7, min day 0 and max day 0
Loaded entity blue_skies:polargeist as entity.blue_skies.polargeist with weight 7, min day 0 and max day 0
Loaded entity blue_skies:seclam as entity.blue_skies.seclam with weight 7, min day 0 and max day 0
Loaded entity blue_skies:shrumpty as entity.blue_skies.shrumpty with weight 7, min day 0 and max day 0
Loaded entity blue_skies:spewter as entity.blue_skies.spewter with weight 7, min day 0 and max day 0
Loaded entity blue_skies:stonelet as entity.blue_skies.stonelet with weight 7, min day 0 and max day 0
Loaded entity blue_skies:venom_spider as entity.blue_skies.venom_spider with weight 7, min day 0 and max day 0
Loaded entity blue_skies:whistleshell_crab as entity.blue_skies.whistleshell_crab with weight 7, min day 0 and max day 0
loaded horde table hordes:blue_skies
Loaded entity immersiveengineering:bulwark as entity.immersiveengineering.bulwark with weight 7, min day 0 and max day 0
Loaded entity immersiveengineering:commando as entity.immersiveengineering.commando with weight 7, min day 0 and max day 0
Loaded entity immersiveengineering:fusilier as entity.immersiveengineering.fusilier with weight 7, min day 0 and max day 0
loaded horde table hordes:immersiveengineering
Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 10, min day 0 and max day 20
Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 20, min day 0 and max day 30
Loaded entity minecraft:skeleton_horse as entity.minecraft.skeleton_horse with weight 5, min day 20 and max day 50
Loaded entity minecraft:stray as entity.minecraft.stray with weight 10, min day 20 and max day 0
Loaded entity minecraft:wither_skeleton as entity.minecraft.wither_skeleton with weight 10, min day 40 and max day 0
Loaded entity minecraft:skeleton_horse as entity.minecraft.skeleton_horse with weight 5, min day 40 and max day 0
loaded horde table hordes:skeletons
Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 30, min day 0 and max day 0
loaded horde table hordes:fallback
Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 40, min day 0 and max day 20
Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 3, min day 30 and max day 40
loaded horde table hordes:drowned
Loaded entity undergarden:forgotten as entity.undergarden.forgotten with weight 7, min day 0 and max day 0
Loaded entity undergarden:forgotten_guardian as entity.undergarden.forgotten_guardian with weight 7, min day 0 and max day 0
Loaded entity undergarden:gwib as entity.undergarden.gwib with weight 7, min day 0 and max day 0
Loaded entity undergarden:muncher as entity.undergarden.muncher with weight 7, min day 0 and max day 0
Loaded entity undergarden:nargoyle as entity.undergarden.nargoyle with weight 7, min day 0 and max day 0
Loaded entity undergarden:rotbeast as entity.undergarden.rotbeast with weight 7, min day 0 and max day 0
Loaded entity undergarden:rotling as entity.undergarden.rotling with weight 7, min day 0 and max day 0
Loaded entity undergarden:rotwalker as entity.undergarden.rotwalker with weight 7, min day 0 and max day 0
Loaded entity undergarden:sploogie as entity.undergarden.sploogie with weight 7, min day 0 and max day 0
Loaded entity undergarden:stoneborn as entity.undergarden.stoneborn with weight 7, min day 0 and max day 0
loaded horde table hordes:undergarden
Loaded entity thermal:basalz as entity.thermal.basalz with weight 7, min day 0 and max day 0
Loaded entity thermal:blitz as entity.thermal.blitz with weight 7, min day 0 and max day 0
Loaded entity thermal:blizz as entity.thermal.blizz with weight 7, min day 0 and max day 0
loaded horde table hordes:thermal
Loaded entity creeperoverhaul:badlands_creeper as entity.creeperoverhaul.badlands_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:bamboo_creeper as entity.creeperoverhaul.bamboo_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:beach_creeper as entity.creeperoverhaul.beach_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:cave_creeper as entity.creeperoverhaul.cave_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:dark_oak_creeper as entity.creeperoverhaul.dark_oak_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:desert_creeper as entity.creeperoverhaul.desert_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:dripstone_creeper as entity.creeperoverhaul.dripstone_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:hills_creeper as entity.creeperoverhaul.hills_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:jungle_creeper as entity.creeperoverhaul.jungle_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:mushroom_creeper as entity.creeperoverhaul.mushroom_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:ocean_creeper as entity.creeperoverhaul.ocean_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:savannah_creeper as entity.creeperoverhaul.savannah_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:snowy_creeper as entity.creeperoverhaul.snowy_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:spruce_creeper as entity.creeperoverhaul.spruce_creeper with weight 7, min day 0 and max day 0
Loaded entity creeperoverhaul:swamp_creeper as entity.creeperoverhaul.swamp_creeper with weight 7, min day 0 and max day 0
loaded horde table hordes:creeperoverhaul
Loaded entity eidolon:giant_skeleton as entity.eidolon.giant_skeleton with weight 7, min day 0 and max day 0
Loaded entity eidolon:necromancer as entity.eidolon.necromancer with weight 7, min day 0 and max day 0
Loaded entity eidolon:wraith as entity.eidolon.wraith with weight 7, min day 0 and max day 0
Loaded entity eidolon:zombie_brute as entity.eidolon.zombie_brute with weight 7, min day 0 and max day 0
loaded horde table hordes:eidolon
Loaded entity occultism:afrit_wild as entity.occultism.afrit_wild with weight 7, min day 0 and max day 0
Loaded entity occultism:wild_hunt_skeleton as entity.occultism.wild_hunt_skeleton with weight 7, min day 0 and max day 0
Loaded entity occultism:wild_hunt_wither_skeleton as entity.occultism.wild_hunt_wither_skeleton with weight 7, min day 0 and max day 0
loaded horde table hordes:occultism
Loaded entity ad_astra:corrupted_lunarian as entity.ad_astra.corrupted_lunarian with weight 7, min day 0 and max day 0
Loaded entity ad_astra:martian_raptor as entity.ad_astra.martian_raptor with weight 7, min day 0 and max day 0
Loaded entity ad_astra:pygro as entity.ad_astra.pygro with weight 7, min day 0 and max day 0
Loaded entity ad_astra:pygro_brute as entity.ad_astra.pygro_brute with weight 7, min day 0 and max day 0
Loaded entity ad_astra:star_crawler as entity.ad_astra.star_crawler with weight 7, min day 0 and max day 0
Loaded entity ad_astra:sulfur_creeper as entity.ad_astra.sulfur_creeper with weight 7, min day 0 and max day 0
Loaded entity ad_astra:zombified_mogler as entity.ad_astra.zombified_mogler with weight 7, min day 0 and max day 0
Loaded entity ad_astra:zombified_pygro as entity.ad_astra.zombified_pygro with weight 7, min day 0 and max day 0
loaded horde table hordes:adastra
Loaded entity endermanoverhaul:axolotl_pet_enderman as entity.endermanoverhaul.axolotl_pet_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:badlands_enderman as entity.endermanoverhaul.badlands_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:crimson_forest_enderman as entity.endermanoverhaul.crimson_forest_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:dark_oak_enderman as entity.endermanoverhaul.dark_oak_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:desert_enderman as entity.endermanoverhaul.desert_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:end_enderman as entity.endermanoverhaul.end_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:end_islands_enderman as entity.endermanoverhaul.end_islands_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:flower_fields_enderman as entity.endermanoverhaul.flower_fields_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:hammerhead_pet_enderman as entity.endermanoverhaul.hammerhead_pet_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:ice_spikes_enderman as entity.endermanoverhaul.ice_spikes_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:mushroom_fields_enderman as entity.endermanoverhaul.mushroom_fields_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:nether_wastes_enderman as entity.endermanoverhaul.nether_wastes_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:pet_enderman as entity.endermanoverhaul.pet_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:savanna_enderman as entity.endermanoverhaul.savanna_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:scarab as entity.endermanoverhaul.scarab with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:snowy_enderman as entity.endermanoverhaul.snowy_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:soulsand_valley_enderman as entity.endermanoverhaul.soulsand_valley_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:swamp_enderman as entity.endermanoverhaul.swamp_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:warped_forest_enderman as entity.endermanoverhaul.warped_forest_enderman with weight 7, min day 0 and max day 0
Loaded entity endermanoverhaul:windswept_hills_enderman as entity.endermanoverhaul.windswept_hills_enderman with weight 7, min day 0 and max day 0
loaded horde table hordes:endermanoverhaul
Loaded entity cataclysm:coral_golem as entity.cataclysm.coral_golem with weight 7, min day 0 and max day 0
Loaded entity cataclysm:coralssus as entity.cataclysm.coralssus with weight 7, min day 0 and max day 0
Loaded entity cataclysm:endermaptera as entity.cataclysm.endermaptera with weight 7, min day 0 and max day 0
Loaded entity cataclysm:koboleton as entity.cataclysm.koboleton with weight 7, min day 0 and max day 0
Loaded entity cataclysm:lionfish as entity.cataclysm.lionfish with weight 7, min day 0 and max day 0
Loaded entity cataclysm:the_watcher as entity.cataclysm.the_watcher with weight 7, min day 0 and max day 0
loaded horde table hordes:cataclysm
Loaded entity roamers:bandit as entity.minecraft.pig with weight 7, min day 0 and max day 0
loaded horde table hordes:roamers
Loaded entity monsterplus:abyssologer as entity.monsterplus.abyssologer with weight 7, min day 0 and max day 0
Loaded entity monsterplus:crystal_zombie as entity.monsterplus.crystal_zombie with weight 7, min day 0 and max day 0
Loaded entity monsterplus:glow_skeleton as entity.monsterplus.glow_skeleton with weight 7, min day 0 and max day 0
Loaded entity monsterplus:lava_squid as entity.monsterplus.lava_squid with weight 7, min day 0 and max day 0
Loaded entity monsterplus:opalescent_eye as entity.monsterplus.opalescent_eye with weight 7, min day 0 and max day 0
Loaded entity monsterplus:overgrown_skeleton as entity.monsterplus.overgrown_skeleton with weight 7, min day 0 and max day 0
Loaded entity monsterplus:spectral_skeleton as entity.monsterplus.spectral_skeleton with weight 7, min day 0 and max day 0
Loaded entity monsterplus:swamp_zombie as entity.monsterplus.swamp_zombie with weight 7, min day 0 and max day 0
loaded horde table hordes:monsterplus
Loaded entity minecraft:cave_spider as entity.minecraft.cave_spider with weight 7, min day 0 and max day 0
Loaded entity minecraft:creeper as entity.minecraft.creeper with weight 7, min day 0 and max day 0
Loaded entity minecraft:enderman as entity.minecraft.enderman with weight 7, min day 0 and max day 0
Loaded entity minecraft:slime as entity.minecraft.slime with weight 7, min day 0 and max day 0
Loaded entity minecraft:spider as entity.minecraft.spider with weight 7, min day 0 and max day 0
Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 35, min day 0 and max day 0
Loaded entity minecraft:zombie_villager as entity.minecraft.zombie_villager with weight 1, min day 0 and max day 0
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 0 and max day 0
Loaded entity minecraft:husk as entity.minecraft.husk with weight 40, min day 0 and max day 0
Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 3, min day 0 and max day 0
Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 0 and max day 40
Loaded entity minecraft:zombified_piglin as entity.minecraft.zombified_piglin with weight 10, min day 0 and max day 0
Loaded entity minecraft:husk as entity.minecraft.husk with weight 25, min day 0 and max day 0
Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 0 and max day 0
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 0 and max day 0
Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 10, min day 0 and max day 20
Loaded entity minecraft:skeleton as entity.minecraft.skeleton with weight 20, min day 0 and max day 0
Loaded entity minecraft:skeleton_horse as entity.minecraft.skeleton_horse with weight 5, min day 0 and max day 0
Loaded entity minecraft:stray as entity.minecraft.stray with weight 10, min day 20 and max day 0
Loaded entity minecraft:wither_skeleton as entity.minecraft.wither_skeleton with weight 10, min day 40 and max day 0
Loaded entity minecraft:skeleton_horse as entity.minecraft.skeleton_horse with weight 5, min day 0 and max day 0
loaded horde table hordes:vanilla
Loaded entity quark:forgotten as entity.quark.forgotten with weight 7, min day 0 and max day 0
Loaded entity quark:wraith as entity.quark.wraith with weight 7, min day 0 and max day 0
loaded horde table hordes:quark
Loaded entity minecraft:zombie as entity.minecraft.zombie with weight 35, min day 0 and max day 0
Loaded entity minecraft:zombie_villager as entity.minecraft.zombie_villager with weight 1, min day 0 and max day 0
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 0 and max day 0
Loaded entity minecraft:husk as entity.minecraft.husk with weight 40, min day 0 and max day 0
Loaded entity minecraft:drowned as entity.minecraft.drowned with weight 3, min day 0 and max day 0
Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 0 and max day 40
Loaded entity minecraft:zombified_piglin as entity.minecraft.zombified_piglin with weight 10, min day 0 and max day 0
Loaded entity minecraft:husk as entity.minecraft.husk with weight 25, min day 0 and max day 0
Loaded entity minecraft:zoglin as entity.minecraft.zoglin with weight 3, min day 0 and max day 0
Loaded entity minecraft:zombie_horse as entity.minecraft.zombie_horse with weight 3, min day 0 and max day 0
loaded horde table hordes:zombie
Loaded entity ars_elemental:air_mage as entity.ars_elemental.air_mage with weight 7, min day 0 and max day 0
Loaded entity ars_elemental:earth_mage as entity.ars_elemental.earth_mage with weight 7, min day 0 and max day 0
Loaded entity ars_elemental:fire_mage as entity.ars_elemental.fire_mage with weight 7, min day 0 and max day 0
Loaded entity ars_elemental:water_mage as entity.ars_elemental.water_mage with weight 7, min day 0 and max day 0
loaded horde table hordes:ars_elemental
[net.smileycorp.hordes.hordeevent.capability.HordeEvent@4960357e]Trying to start horde event on day 162 with nextDay 162 and time 18000
Adding entry HordeSpawnEntry[type=entity.minecraft.zombie,weight=30,minDay=0,maxDay=0]{{ArmorItems:[{},{},{},{Count:1,id:"carved_pumpkin"}]}} to hordespawn on day 161
Adding entry HordeSpawnEntry[type=entity.minecraft.zombie,weight=30,minDay=0,maxDay=0]{{ArmorItems:[{},{},{},{Count:1,id:"carved_pumpkin"}]}} to hordespawn on day 162
[net.smileycorp.hordes.hordeevent.capability.HordeEvent@4960357e]Can't spawn wave because max cap has been reached
Horde world data:
net.smileycorp.hordes.hordeevent.capability.HordeSavedData@33b53efd[current_day: 162, current_time: 18494, next_day=163]
Existing events: {
OngoingHordeEvent@4960357e[player = chickenlai43, isActive = true, ticksLeft=7506, entityCount=61, nextDay=163, day=162]
entities: {
Zombie@c08, Zombie@c09, Zombie@c0a, Zombie@c0b, Zombie@c0c, Zombie@c0d, Zombie@c0e, Zombie@c0f, Zombie@c10, }
Zombie@c12, Zombie@c13, Zombie@c14, Zombie@c15, Zombie@c16, Zombie@c17, Zombie@c18, Zombie@c19, Zombie@c1a, }
Zombie@c1c, Zombie@c1d, Zombie@c1e, Zombie@c1f, Zombie@c20, Zombie@c21, Zombie@c22, Zombie@c23, Zombie@c24, }
Zombie@c26, Zombie@c27, Zombie@c28, Zombie@c29, Zombie@c2a, Zombie@c2b, Zombie@c2c, Zombie@c2d, Zombie@c2e, }
Zombie@c30, Zombie@c31, Zombie@c32, Zombie@c33, Zombie@c34, Zombie@c35, Zombie@c36, Zombie@c37, Zombie@c38, }
Zombie@c3a, Zombie@c3b, Zombie@c3c, Zombie@c3d, Zombie@c3e, Zombie@c3f, Zombie@c40, Zombie@c41, Zombie@c42, }
}
}
Adding entry HordeSpawnEntry[type=entity.minecraft.zombie,weight=30,minDay=0,maxDay=0]{{ArmorItems:[{},{},{},{Count:1,id:"carved_pumpkin"}],id:"minecraft:zombie"}} to hordespawn on day 162
[net.smileycorp.hordes.hordeevent.capability.HordeEvent@4960357e]Can't spawn wave because max cap has been reached
Adding entry HordeSpawnEntry[type=entity.deeperdarker.sculk_centipede,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
Adding entry HordeSpawnEntry[type=entity.deeperdarker.sculk_leech,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
Adding entry HordeSpawnEntry[type=entity.deeperdarker.shattered,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
Adding entry HordeSpawnEntry[type=entity.deeperdarker.shriek_worm,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
Adding entry HordeSpawnEntry[type=entity.deeperdarker.sculk_centipede,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
Adding entry HordeSpawnEntry[type=entity.deeperdarker.sculk_leech,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
Adding entry HordeSpawnEntry[type=entity.deeperdarker.shattered,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
Adding entry HordeSpawnEntry[type=entity.deeperdarker.shriek_worm,weight=7,minDay=0,maxDay=0] to hordespawn on day 162
[net.smileycorp.hordes.hordeevent.capability.HordeEvent@4960357e]Can't spawn wave because max cap has been reached
Horde world data:
net.smileycorp.hordes.hordeevent.capability.HordeSavedData@33b53efd[current_day: 162, current_time: 23002, next_day=163]
Existing events: {
OngoingHordeEvent@4960357e[player = chickenlai43, isActive = true, ticksLeft=3667, entityCount=61, nextDay=163, day=162]
entities: {
SculkCentipede@f00, SculkCentipede@f01, SculkCentipede@f02, SculkLeech@f03, SculkLeech@f04, Shattered@f05, SculkLeech@f06, SculkLeech@f07, SculkLeech@f08, }
SculkLeech@f0a, SculkLeech@f0b, Shattered@f0c, Shattered@f0d, Shattered@ed1, SculkLeech@ed2, Shattered@ed3, SculkLeech@ed4, SculkLeech@ed5, }
Shattered@ed7, Shattered@ed8, ShriekWorm@ed9, SculkCentipede@eda, ShriekWorm@edb, ShriekWorm@edc, Shattered@edd, SculkLeech@ede, ShriekWorm@edf, }
ShriekWorm@ee1, Shattered@ee2, SculkCentipede@ee3, ShriekWorm@ee4, SculkLeech@ee5, SculkCentipede@ee6, SculkLeech@ee7, SculkCentipede@ee8, ShriekWorm@ee9, }
SculkCentipede@eeb, SculkCentipede@eec, Shattered@eed, ShriekWorm@eee, ShriekWorm@eef, ShriekWorm@ef0, SculkCentipede@ef1, Shattered@ef2, ShriekWorm@ef3, }
SculkCentipede@ef5, SculkLeech@ef6, SculkCentipede@ef7, SculkLeech@ef8, SculkLeech@ef9, SculkCentipede@efa, SculkLeech@efb, ShriekWorm@efc, SculkLeech@efd, }
}
}
Hope you can help me solve the problems.
For the max spawn it seem like hordeSpawnMultiplier = 1.05
is the culprit. Thing turn back to set spawnAmount = 10
after change the value to 1.0
After remove the config to let mod regenerate file and digging to the log it look like the custom script doesn't loaded when start server but only load the default horde:default
script. I don't see what wrong with the custom script