Configuration

FunSpawner Standard Configuration:

config.yml
# List of blocked eggs (materials)
blocked:
  - "CREEPER_SPAWN_EGG"

chances:
  # Egg material and chance from 0 to 100
  ZOMBIE_SPAWN_EGG: 50

sounds:
  notAllowed:
    enabled: true
    type: ENTITY_VILLAGER_NO
    pitch: 1
    volume: 1
  fail:
    enabled: true
    type: ENTITY_VILLAGER_NO
    pitch: 1
    volume: 1
  success:
    enabled: true
    type: ENTITY_VILLAGER_YES
    pitch: 1
    volume: 1

particles:
  notAllowed:
    enabled: true
    name: failParticle # Particle name from particles.yml
  fail:
    enabled: true
    name: failParticle
  success:
    enabled: true
    name: successParticle

messages:
  notAllowed: "This mob can't be placed in the spawner!"
  fail: "You failed to place this mob in the spavener!"
  success: "You have successfully placed this mob into the spavener!"

The plugin also supports HEX colors of format &#RRRGGBB

Particles are configured similarly to BAirDrop, more details here.

Last updated