promotional bannermobile promotional banner

Baguette Music

A dynamic audio toolkit for modpacks that adds custom boss and phase music, voice introductions, book narration, structure soundtracks, and condition-based audio events.

Boss Music

A dynamic audio toolkit for Minecraft modpacks.

Custom boss and phase music • Voice introductions • Book narration • Structure soundtracks • Condition-based audio

Boss Music lets modpack creators control what players hear and when they hear it. Drop your own Ogg Vorbis files into the config folder, then connect them to bosses, phases, books, structures, world conditions, player state, commands, or server-side events.

The mod includes simple JSON files for common use cases, an advanced rule engine for complex soundscapes, an in-game Audio Studio, and tools for discovering how modded bosses represent their phases. It does not ship copyrighted songs and it does not generate speech: you provide the audio you have permission to distribute.

Release status: The multi-loader 2.1.0 builds compile and pass automated compatibility checks. Complete in-game testing with real audio, modded bosses, and multiplayer is still in progress. Back up your instance and test the build that matches your exact Minecraft version and loader before using it in a public pack.

✨ Highlights

Feature What it provides
Boss music Assign custom tracks to any configured entity, including bosses from other mods.
Boss phases Change music and play new voice lines according to health or synchronized entity data.
Voice introductions Announce a boss or a new phase independently from the main soundtrack.
Book narration Play recorded narration when a matching written book or lectern book is opened.
Structure audio Play music or discovery narration inside configured vanilla or modded structures.
Advanced rules Combine entities, biomes, dimensions, weather, time, items, effects, structures, and server triggers.
Playback control Use one-shot, looped, or interval playback with intros, bodies, stingers, and outros.
Mixing Configure priorities, exclusive groups, fades, categories, subtitles, and group ducking.
Creator tools Edit, preview, validate, simulate, inspect, and record encounters without rebuilding the mod.

📦 Supported Versions and Loaders

Boss Music 2.1.0 has a separate build for each supported Minecraft and mod-loader combination. Choose exactly one file for your instance; the files are not universal or interchangeable.

Minecraft Java Loaders
1.20.1 Java 17 Forge, NeoForge, Fabric
1.21.1 Java 21 Forge, NeoForge, Fabric
1.21.11 Java 21 Forge, NeoForge, Fabric
26.1 Java 25 Forge, NeoForge, Fabric
26.1.1 Java 25 Forge, NeoForge, Fabric
26.1.2 Java 25 Forge, NeoForge, Fabric
26.2 Java 25 Forge, NeoForge, Fabric
  • Fabric builds require Fabric API.
  • NeoForge builds for 26.1 and 26.1.1 currently target beta NeoForge releases.
  • The optional Configuration integration is not available in every combination; Boss Music's JSON files and Audio Studio still work without it.
  • When using server-backed structure detection or server cues, install the same Minecraft, loader, and Boss Music build on both sides.

🚀 Quick Start

  1. Install the Boss Music file matching your exact Minecraft version and loader.
  2. For Fabric, install the matching Fabric API release.
  3. Start Minecraft once to generate config/bossmusic/.
  4. Place your Ogg Vorbis .ogg files in config/bossmusic/music/.
  5. Open a world and press F8, or run /bossmusic studio.
  6. Create or edit a rule, validate its audio paths, preview it, and save.
  7. Run /bossmusic validate and test the result in a disposable world before shipping your pack.

Boss Music scans audio folders recursively, so large packs can keep their files organized:

config/bossmusic/
├── music/
│   ├── bosses/warden/intro.ogg
│   ├── bosses/warden/phase_1.ogg
│   ├── bosses/warden/phase_2.ogg
│   └── narration/ancient_city.ogg
├── tracks.json
├── books.json
├── structures.json
├── bossmusic-pack.schema.json
├── packs/
│   └── example.json
└── recordings/

Paths inside JSON are relative to the music/ directory, for example bosses/warden/phase_1.ogg. Boss Music creates a virtual resource pack at runtime, so users do not need to build a separate Minecraft resource pack for these files. Long tracks are streamed from disk.

⚙️ Configurations & Features

Simple Boss Configuration

The classic tracks.json format is the quickest way to add boss music, presentations, and phases:

{
  "tracks": [
    {
      "entity": "minecraft:warden",
      "music": [
        "bosses/warden/phase_1_a.ogg",
        "bosses/warden/phase_1_b.ogg"
      ],
      "voice": "bosses/warden/presentation.ogg",
      "radius": 48,
      "volume": 1.0,
      "category": "record",
      "music_mode": "loop",
      "voice_mode": "once",
      "fade_in": 40,
      "fade_out": 60,
      "mute_other_music": true,
      "require_line_of_sight": false,
      "phases": [
        {
          "health_below": 0.5,
          "music": "bosses/warden/phase_2.ogg",
          "voice": "bosses/warden/phase_2_intro.ogg"
        }
      ]
    }
  ]
}

The nearest matching living entity inside its configured radius controls the classic boss track. Optional line-of-sight detection can require the player to see the entity. A short grace period prevents teleporting or briefly unloaded bosses from cutting the music immediately.

music and voice accept either one path or a list of alternatives. Lists select an alternative for the encounter; they do not play every file simultaneously.

Detecting Boss Phases

Health-based phases use a fraction from 0.0 to 1.0. Many modded bosses also expose their real phase through Minecraft's synchronized entity data:

{
  "when": {
    "data_id": 17,
    "type": "int",
    "equals": "2"
  },
  "music": "bosses/example/final_phase.ogg",
  "voice": "bosses/example/final_phase_name.ogg"
}

There is no universal phase value shared by every Minecraft boss. Use the scanner or recorder to inspect the actual entity. Prefer stable booleans or integers and avoid animation counters that change continuously. Classic phases only advance during the same encounter; healing the boss does not move the soundtrack back to an earlier phase.

Book Narration

books.json matches written books by title, author, text, or a combination. Narration also works for books opened from a lectern.

{
  "books": [
    {
      "title": "The Lost Expedition",
      "author": "Archivist",
      "text_contains": "beneath the ancient city",
      "audio": "books/lost_expedition.ogg",
      "playback_mode": "once",
      "volume": 1.0,
      "category": "voice",
      "stop_on_close": true
    }
  ]
}

All supplied matchers must match. The mod plays a recording you provide; it is not a text-to-speech engine. Use /bossmusic book while holding a book to inspect its title, author, and page count.

Structure Music and Narration

structures.json can attach a soundtrack and a discovery narration to a registered structure:

{
  "structures": [
    {
      "structure": "minecraft:ancient_city",
      "music": "structures/ancient_city.ogg",
      "narration": "structures/ancient_city_discovery.ogg",
      "music_mode": "loop",
      "narration_mode": "once",
      "volume": 0.8,
      "fade_in": 40,
      "fade_out": 60,
      "mute_other_music": true
    }
  ]
}

Exact structure detection uses the structure's real bounds and requires Boss Music on the logical server and the client. The server sends structure IDs only; audio remains local to each player. Install the audio and JSON files in every client through your modpack.

Advanced Modular Rule Packs

Files in config/bossmusic/packs/*.json provide the complete rule engine. They load in filename order and can contain any number of rules. Each pack has its own namespace and metadata, making it practical to distribute compatibility packs for different mods.

{
  "$schema": "../bossmusic-pack.schema.json",
  "pack": {
    "id": "my_pack",
    "name": "My Modpack Soundtrack",
    "author": "Pack Team",
    "version": "1.0.0",
    "license": "CC-BY-4.0",
    "enabled": true
  },
  "rules": [
    {
      "id": "warden_final_phase",
      "priority": 200,
      "exclusive_group": "main_music",
      "activation_delay_seconds": 1,
      "cooldown_seconds": 10,
      "minimum_active_seconds": 5,
      "when": {
        "all": [
          { "structure": "minecraft:ancient_city" },
          {
            "entity": "minecraft:warden",
            "radius": 48,
            "health_below": 0.5
          }
        ]
      },
      "audio": {
        "intro": "warden/phase_intro.ogg",
        "body": ["warden/final_a.ogg", "warden/final_b.ogg"],
        "stinger": "warden/phase_stinger.ogg",
        "outro": "warden/phase_outro.ogg",
        "mode": "loop",
        "shuffle": true,
        "fade_in": 40,
        "fade_out": 60,
        "volume": 1.0,
        "category": "record",
        "mute_other_music": true,
        "subtitle": "The Warden enters its final phase."
      }
    }
  ]
}

Available Conditions

Group Conditions
Entities Exact entity ID, entity tag, mod namespace, radius, health range, and synchronized data.
World Dimension, biome, biome tag, structure, altitude, time range, rain, and thunder.
Player Completed advancement, held item or tag, equipped item or tag, and active effect.
External A server trigger activated through a command or the Java API.
Logic Nested all, any, and not condition trees.

Rules in the same exclusive_group compete by priority, while different groups can play as intentional layers. Activation delays filter flickering conditions, minimum-active windows prevent rapid switching, and cooldowns limit repeated activation.

Playback and Mixing

Option Behavior
once Play once for the current activation.
loop Restart continuously while the rule remains active.
interval Wait for interval_seconds after the clip ends, then play it again.
intro Opening clip, commonly used for a boss announcement.
body Main music or narration controlled by the playback mode.
stinger Short effect fired when the rule activates.
outro Tail played when the rule ends or is replaced.
duck_groups Reduce configured Boss Music groups while this rule is active.
subtitle Show accessible text in Minecraft's action-bar area.

Supported Minecraft volume categories are master, music, record, weather, block, hostile, neutral, player, ambient, and voice. The record category is useful when you want custom music to have a slider independent of vanilla background music.

🎛️ Creator Tools

Audio Studio 2.1

Press F8 or run /bossmusic studio inside a world. The guided editor contains pages for:

  • Pack identity, author, license, rule ID, priority, and group.
  • Entity, detection radius, health threshold, and synchronized data.
  • Intro, body, stinger, outro, playback mode, and interval.
  • Volume, category, fades, music muting, and subtitles.

You can add and remove phase rules, validate IDs and paths, preview available audio, open the config folder, and save with the button or Ctrl+S. The editor may save an incomplete draft after warning you, which is useful while building a pack. Audio Studio configures playback; it is not a music-composition or waveform-editing application.

Boss Scanner and Encounter Recorder

Look directly at a boss and use these tools when its internal phase system is unknown:

/bossmusic debug scan
/bossmusic debug values
/bossmusic debug clear

/bossmusic record start
/bossmusic record mark
/bossmusic record status
/bossmusic record stop
/bossmusic record cancel

The manual scanner compares synchronized values before and after a visible transition. The recorder follows one entity through a fight and captures health, synchronized data, pose, effects, invulnerability, nearby sound events, nearby summons, and defeat or loss of tracking.

Stable changes are favored over noisy animation counters. A manual mark tells the analyzer when you observed a phase transition. Finishing a recording creates:

  • config/bossmusic/packs/recording_<boss>_<date>.json
  • config/bossmusic/recordings/recording_<boss>_<date>.md

The generated pack is deliberately disabled and uses placeholder audio paths. Review every detector, add real audio, validate the draft, and enable it yourself. The recorder suggests candidates; it cannot guarantee that an internal value represents a real gameplay phase. It records events and metadata, not microphone audio.

Commands

Client command Purpose
/bossmusic reload Rescan audio and reload configuration.
/bossmusic studio Open Audio Studio.
/bossmusic here List nearby entities and configured classic tracks.
/bossmusic book Inspect the held written book.
/bossmusic structure Report exact structure detection and the current configured structure.
/bossmusic validate Find malformed JSON, invalid IDs, missing audio, and duplicate rules.
/bossmusic debug audio Show active rules and the first unmet condition.
/bossmusic simulate <pack:rule> Temporarily force a loaded local rule.
/bossmusic stoprule Release locally simulated rules.

The record and phase-debug commands listed in the previous section are also client commands. A malformed modular pack is isolated so valid packs can continue loading; use /bossmusic validate to see all reported issues.

Server Cues and Modpack Scripting

With Boss Music installed on both the server and clients, permission-level-two commands can activate rule IDs for selected players:

/bossmusicserver play my_pack:quest_finale @a
/bossmusicserver play my_pack:danger @a[distance=..64]
/bossmusicserver stop my_pack:quest_finale @a

Command blocks, datapack functions, quest systems, KubeJS, CraftTweaker, or other scripting mods can invoke these commands without a direct code dependency on Boss Music. The exact method for executing a server command depends on the external scripting mod and Minecraft version.

A Java API is also available for server and client integrations. The server transmits a rule ID and shared start time; every client resolves the actual Ogg file from its local pack. Clients that do not expose the optional Boss Music network channel are skipped.

🔌 Optional Integrations

When a compatible release of the Configuration mod is installed, Boss Music can register a traditional configuration screen with classic slots for bosses, books, and structures. Modular files in packs/*.json remain independent and do not have that fixed slot count.

Minecraft Prepared integration
1.20.1 Forge / NeoForge Configuration 3.1.0 legacy Forge API
1.20.1 Fabric Not enabled
1.21.1 Configuration 3.1.1 for the corresponding loader
1.21.11 Configuration 4.1.0 for the corresponding loader
26.x Not enabled

Note: Do not install a Configuration build made for another Minecraft version just to force this integration. Boss Music's JSON system and Audio Studio do not require Configuration.

🖥️ Client vs Server Installation

  • Client only: local boss music, voice introductions, book narration, Audio Studio, scanning, recording, and client-side conditions.
  • Client and server: exact registered-structure detection, synchronized server cues, and /bossmusicserver.

The network channel is optional for ordinary connections, but server-backed features require a compatible channel on both sides. Cross-loader networking has not been certified; use the same loader and build on the client and server for these features.

🛠️ Troubleshooting & Performance

No audio plays

  • Confirm that the file is genuine Ogg Vorbis with a lowercase .ogg extension.
  • Check spelling, capitalization, spaces, and subfolders in the configured path.
  • Run /bossmusic reload and then /bossmusic validate.
  • Check the Minecraft volume slider selected by the rule's category.
  • Read logs/latest.log for a rejected sound or configuration error.

A rule does not activate

  • Run /bossmusic debug audio.
  • Inspect the first condition reported as false.
  • Check priority, exclusive group, activation delay, minimum-active time, and cooldown.
  • Use /bossmusic simulate pack:rule to separate playback problems from trigger problems.

A boss phase does not change

  • Check that health thresholds use the expected fraction.
  • Run /bossmusic debug scan before and after the visible phase transition.
  • Record a complete encounter and inspect the generated Markdown timeline.
  • Avoid data values that continuously count animation ticks.
  • Remember that classic phases do not move backward during one encounter.

A structure is not detected

  • Install the matching Boss Music build on the client and server.
  • Make sure the structure ID is registered and referenced by a rule.
  • Use /bossmusic structure to inspect the current status.

Performance Recommendations

  • Use practical entity radii, normally 32 to 64 blocks.
  • Add activation delays to conditions that fluctuate rapidly.
  • Avoid hundreds of unrestricted entity rules with very large radii.
  • Use reasonable Ogg Vorbis bitrates; lossless-quality source audio is unnecessary for long background tracks.
  • Keep layered groups at moderate volumes and use ducking for important narration.

📜 Modpack Use and Audio Licensing

Boss Music is designed for modpack use. Rule packs can be separated by namespace, and duplicate IDs are resolved deterministically, with later definitions replacing earlier ones and producing a validation warning.

The Boss Music code is released under the MIT License. That license does not grant rights to songs, performances, or voice recordings added by a modpack creator. Only distribute audio you own or have permission to use, preserve required attribution, and record the audio license in the pack metadata.

Turn boss fights, discoveries, books, quests, and entire dimensions into authored audio experiences.

Configure it with JSON, build it visually with Audio Studio, or drive it from commands and code.

The Baguette Music Team

High Crafter tier frameprofile avatar
  • 13
    Followers
  • 16
    Projects
  • 1.9M
    Downloads

More from KubePixelView all

  • FOXY COZY project image

    FOXY COZY

    FOXY COZY is a peaceful modpack for builders and explorers. Escape hardcore stress and enjoy stunning terrain, 200+ biomes, advanced cooking, and beautiful textures. Build, farm, and relax in a cozy journey. Your aesthetic adventure awaits!

    • 8.5K
    • September 3, 2026
  • FCHUD project image

    FCHUD

    The FC offical HUD

    • 279
    • September 3, 2026
  • PickLoot project image

    PickLoot

    Choose exactly what you pick up, even the crops... with configurable loot cards, filters, rarity markers, and 3D or flat HUD modes.

    • 843
    • September 3, 2026
  • FC Performance Core project image

    FC Performance Core

    This is the essential optimization foundation designed specifically for the Foxy Cozy modpack. It works silently in the background to eliminate lag and maximize performance, ensuring your gameplay experience is as relaxing as the world you are building.

    • 286
    • September 3, 2026
  • FOXY COZY project image

    FOXY COZY

    FOXY COZY is a peaceful modpack for builders and explorers. Escape hardcore stress and enjoy stunning terrain, 200+ biomes, advanced cooking, and beautiful textures. Build, farm, and relax in a cozy journey. Your aesthetic adventure awaits!

    • 8.5K
    • September 3, 2026
  • FCHUD project image

    FCHUD

    The FC offical HUD

    • 279
    • September 3, 2026
  • PickLoot project image

    PickLoot

    Choose exactly what you pick up, even the crops... with configurable loot cards, filters, rarity markers, and 3D or flat HUD modes.

    • 843
    • September 3, 2026
  • FC Performance Core project image

    FC Performance Core

    This is the essential optimization foundation designed specifically for the Foxy Cozy modpack. It works silently in the background to eliminate lag and maximize performance, ensuring your gameplay experience is as relaxing as the world you are building.

    • 286
    • September 3, 2026