Valheim
0 of 0

File information

Last updated

Original upload

Created by

Joey Parrish

Uploaded by

cashpipeplusplus

Virus scan

Safe to use

Tags for this mod

About this mod

MusicMod is a base mod that you can depend on to add custom music to your own mod.

Permissions and credits
Mirrors
MusicMod - A Valheim Mod by Joey Parrish

Source: https://github.com/joeyparrish/valheim-musicmod


About

MusicMod is a base mod that you can depend on to add custom music to your own mod.


Installation

MusicMod is only useful as a dependency for other mods. Mod developers should install it, build against it, and depend on it. End users will only ever install it to satisfy dependencies for other mods.

MusicMod is published on both ThunderStore and Nexus Mods. Install using your favorite mod manager.


Sample Usage

using System.IO;
using System.Reflection;
using MusicMod;

public class MyMod : BaseUnityPlugin {
  private void Awake() {
// When your mod wakes up, build an absolute path
// to your music file, then tell MusicMod about it.
string assemblyFolder = Path.GetDirectoryName(
Assembly.GetExecutingAssembly().Location);
string absolutePath = Path.Combine(
assemblyFolder, "Main-Menu.mp3");
MusicMod.Mod.OverrideMusic["menu"] = absolutePath;
  }
}


Override Keys

Each piece of music in Valheim is identified by a string "key". MusicMod will discover all music at runtime and print debug logs showing all music currently in the game. For an up-to-date list, check the log.

These are the current keys showing up in the log as of August 2022:

  • respawn
  • intro
  • menu
  • combat
  • CombatEventL1
  • CombatEventL2
  • CombatEventL3
  • CombatEventL4
  • boss_eikthyr
  • boss_gdking
  • boss_bonemass
  • boss_moder
  • boss_goblinking
  • morning
  • evening
  • sailing
  • blackforest
  • meadows
  • swamp
  • mountain
  • plains
  • forestcrypt
  • frostcaves
  • home
  • location_forest


Dependencies

Just BepInEx.


Incompatibilities

None that we know of!


Links


Credits

MusicMod was created by Joey Parrish, and spun out of Pokéheim.