Comment on page
Mobs & Spawners Stacking
Configure stacking and toggle it on or off
AdvancedMobs can stack your mobs and spawners - to dramatically increase performance, be it vanilla or custom mobs.
Stacking is disabled by default.
To enable, go into
plugins/AdvancedMobs/config.yml
file. You will need to find settings called spawnerStacking
and mobStacking
. Set both enabled
to true and restart.You can give your players mob spawners, to spawn vanilla/custom mobs. To save performance, your server's RAM and space, mob spawners and mobs can be stacked.
Placing spawners near one another will stack them depending on type and level.
Once mobs spawn from these spawners, they will be stacked as well. Killing stacked mobs will have them killed one by one (can be changed to whole stack dying in config).
You can upgrade spawners with this plugin. Plugin has a fully customisable leveling experience -
customMobs/AdvancedMobs/upgrades.yml
.Configure upgrades menu, economy, prices.
Each level has configuration of:
- Price to upgrade
- How many mobs should spawn at once (spawning multiplier to spawn formula)
- Spawning time of how often mobs should spawn
config.yml
1
# Spawner Stacking Settings
2
spawnerStacking:
3
# Is spawner stacking enabled?
4
enabled: false
5
# Maximum number of spawners in a stack
6
maxSpawnersPerStack: 100
7
# Max distance in which spawners will stack together
8
maxStackDistance: 5;
9
# Number of mobs spawning per spawner
10
mobsPerSpawner: "<random>1-4</random> * %spawner count% * %upgrades%"
11
# Default spawner spawning speed, in ticks
12
spawnSpeed: 600
You can change how many spawners are allowed per stack (per one block), stacking distance, formula which is used to calculate how many mobs spawn from spawner and the default spawning speed.
config.yml
1
# Mob Stacking Configuration
2
mobStacking:
3
# Is mob stacking enabled?
4
enabled: false
5
# Should vanilla mobs stack?
6
# If set to false, only custom mobs will stack
7
stackVanillaMobs: true
8
# Max distance in which mobs will stack together
9
maxMobStackDistance: 16
10
# Maximum number of mobs in a stack
11
maxMobsPerStack: 100
12
# Should whole stack die when one is killed?
13
wholeStackDeath: false
14
# Stacked Mobs Blacklist
15
# Add any mob type you want here to not stack
16
mobBlacklist:
17
- 'ENDER_DRAGON'
Toggle stacking, set whether vanilla or custom mobs should spawn, distances, max mobs per stack, if whole stack dies and mobs blacklist here.
Last modified 1yr ago