Custom Mob Settings
Detailed explanation of every custom mob setting.
Custom mobs can be assigned unique settings to differentiate their values, such as speed, hologram height, etc. We explain here every setting, how to use it and what it changes.
Settings are located in each custom mob's configuration file (
/plugins/AdvancedSpawners/customMobs
folder). Mob settings are set at the top of their respective .amob
file, e.g.:settings:
health: 30 # Mob's health
sounds: BLAZE # Sound List: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
hostile: true # Is mob hostile? If set to false, mob will not be aggressive towards players
nametagHeight: 0.3 # How high should the nametag be?
damage: 3 # How much damage should the mobs do to players?
animateOnWalking: true # Should animation be active only when mob is walking?
animationSmoothness: 20 # How smooth should the animation be? 1-20, higher being smoother.
animationSpeed: 10 # How smooth should the animation be? 1-20, lower being faster.
walkingSpeed: 0.9 # How custom fast mob walks
Explanation: Value of mob's health. To put into perspective, players by default have
20
health.
Value: integer
Example Usage: health: 20
Explanation: From what vanilla mob should the sounds be used. Sound list: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Sound.html
Value: Sound enum
Example Usage:
sounds: ZOMBIE
Explanation: Changes whether custom mob is hostile (attacks players) or does not.
Value: boolean
Example Usage:
hostile: true
Explanation: Changes how high mob nametag is compared to mob's head location.
Value: double
Example Usage:
nametagHeight: 2.0
Explanation: Sets mob's damage towards players. 1 = half a heart of damage.
Value: integer
Example Usage:
damage: 2
Explanation: Changes played animation smoothness. Does not impact performance, animations are cached on server startup.
Value: integer, 1 to 20
Example Usage:
animationSmoothness: 10
Explanation: Changes how fast animations are played between frames.
Value: ticks, 1 to 20. 20 ticks = 1 second between animation frames.
Example Usage:
animationSpeed: 10
Explanation: Changes mob's walking speed. 1.0 = default speed, 2.0 = 2x default speed, 0.5 = half default speed.
Value: double
Example Usage:
walkingSpeed: 2.5