promotional bannermobile promotional banner

Music Trigger

A mod that lets you play specific music whenever an FTB Quest is completed.

Overview

This mod allows you to play a custom music track when an FTB Quest is completed. Usage is as follows:

// kubejs/server_scripts/example.js

/**
 * Play music upon quest completion
 * 
 * @param {string} questLinkObjectId - The quest ID (can be copied from the quest UI)
 * @param {string} fileName          - Name of the audio file .mp3, .wav, or .flac (must be in config/music_trigger/audio/)
 * @param {number} volume            - Playback volume, range: [0.0, 1.0]
 * @param {string} scope             - Playback scope ("self", "nearby", or "all")
 * @param {boolean} stopVanillaMusic - Whether to suppress vanilla Minecraft background music while playing (may cause unexpected behavior)
 */

MusicTriggerEvents.registerMusicTriggers(event => {
    // Basic usage: play music for all players when the quest is completed
    event.register("#67C8AAFC31D6F28B", "victory.mp3", 1.0);

    // Advanced usage: only the completing player hears it, and vanilla music is stopped
    event.register("#67C8AAFC31D6F28B", "secret_theme.mp3", 0.8, "self", true);

    // Or play only for nearby players
    event.register("#67C8AAFC31D6F28B", "boss_music.flac", 1.0, "nearby");
});

The Music Trigger Team

profile avatar
  • 4
    Followers
  • 11
    Projects
  • 1.4M
    Downloads

More from Flechazo098View all

  • AuraTip project image

    AuraTip

    • 96
    • Mods

    A powerful toolkit for creating highly customizable Radial Menus and Tips via Java, KubeJS, or Datapacks.

    • 96
    • May 12, 2026
    • Mods
    • +1
  • ApricityUI project image

    ApricityUI

    • 272
    • Mods

    Build Minecraft UI with HTML + CSS + JS, follows Web standards as closely as possible.

    • 272
    • May 11, 2026
    • Mods
    • +1
  • One Enough Lib project image

    One Enough Lib

    • 1.3M
    • Mods

    A Lib for simplified development of the OE series

    • 1.3M
    • May 9, 2026
    • Mods
  • Merry Snow project image

    Merry Snow

    • 1.8K
    • Mods

    Focuses on snow-related mechanics, aiming to add more variations to the vanilla snow mechanics in Minecraft.

    • 1.8K
    • April 25, 2026
    • Mods
  • AuraTip project image

    AuraTip

    • 96
    • Mods

    A powerful toolkit for creating highly customizable Radial Menus and Tips via Java, KubeJS, or Datapacks.

    • 96
    • May 12, 2026
    • Mods
    • +1
  • ApricityUI project image

    ApricityUI

    • 272
    • Mods

    Build Minecraft UI with HTML + CSS + JS, follows Web standards as closely as possible.

    • 272
    • May 11, 2026
    • Mods
    • +1
  • One Enough Lib project image

    One Enough Lib

    • 1.3M
    • Mods

    A Lib for simplified development of the OE series

    • 1.3M
    • May 9, 2026
    • Mods
  • Merry Snow project image

    Merry Snow

    • 1.8K
    • Mods

    Focuses on snow-related mechanics, aiming to add more variations to the vanilla snow mechanics in Minecraft.

    • 1.8K
    • April 25, 2026
    • Mods