glasses-roundMob Visuals

The visual-settings section controls how mobs appear and display information to players.

Structure

Complete visual settings
visual-settings:
  # Glowing outline effect
  glow:
    enabled: true
    color: 'RED'
  
  # Boss bar displayed when targeting mob
  boss-bar:
    enabled: true
    display: '&cMy Mob &4❤&c%health%'
    color: 'RED'
    overlay: 'PROGRESS'
    flags:
      create-fog: false
      darken-sky: false
      play-boss-music: false
  
  # Damage numbers that appear when hitting mob
  damage-indicator:
    enabled: true
    display: '&c-%damage% &4❤'
    style: 'modern'

Glow Effect

Add a glowing outline around the mob visible through walls.

In-Game Example

Boss Bar

Display a health bar at the top of the screen when players target the mob.

Basic Configuration

enabled

Enable or disable the boss bar.

display

The text shown on the boss bar.

Supports:

  • Color codes

  • Placeholders (%health%, %max_health%)

  • PlaceholderAPI placeholders

color

The boss bar color.

Available colors:

Color
Visual

BLUE

Blue bar

GREEN

Green bar

PINK

Pink bar

PURPLE

Purple bar

RED

Red bar

WHITE

White bar

YELLOW

Yellow bar

overlay

The boss bar style/segmentation.

Available overlays:

Overlay
Description

PROGRESS

Smooth bar (no segments)

NOTCHED_6

Bar divided into 6 segments

NOTCHED_10

Bar divided into 10 segments

NOTCHED_12

Bar divided into 12 segments

NOTCHED_20

Bar divided into 20 segments

flags

Optional effects that apply when the boss bar is visible.

Use cases:

circle-exclamation

In-Game Fog Example

Darken Sky Example

Damage Indicator

Display damage numbers when the mob is hit.

Configuration

enabled

Enable or disable damage indicators.

display

The format for damage numbers.

Available Placeholder:

  • %damage% - The damage dealt (rounded)

Troubleshooting

chevron-rightBoss Bar Not Showinghashtag

Problem: Boss bar doesn't appear when targeting mob

Solutions:

  • Ensure enabled: true

  • Check display text is not empty

  • Verify color and overlay are valid values

chevron-rightGlow Not Visiblehashtag

Problem: Glow effect not showing

Solutions:

  • Verify enabled: true

  • Check color is a valid option

  • Ensure mob is spawned correctly

chevron-rightDamage Numbers Not Appearinghashtag

Problem: No damage indicators when hitting mob

Solutions:

  • Check enabled: true

  • Verify display contains %damage% placeholder

Last updated