The Binding of Isaac: Rebirth

The Binding of Isaac: Rebirth

Not enough ratings
Muse Soundtrack
   
Award
Favorite
Favorited
Unfavorite
Tags: Lua, Music
File Size
Posted
Updated
402.402 MB
21 Feb, 2023 @ 12:40am
21 Feb, 2023 @ 3:06am
3 Change Notes ( view )
You need DLC to use this item.

Subscribe to download
Muse Soundtrack

Description
Songs from Muse's discography.

I recommend using Jukebox, but it is not required.

All songs by Matt Bellamy, Chris Wolstenholm, and Dominic Howard.
https://www.muse.mu/

Track List:
Basement - Falling Down
Cellar - Showbiz
Burning Basement - Fillip
Caves - Cave
Catacombs - Space Dementia
Flooded Caves - Micro Cuts
Depths - Megalomania
Necropolis - Sober
Dank Depths - Hate This And I'll Love You
Womb/Scarred Womb - Break It To Me
Blue Womb - Break It To Me (Sam de Jong Remix)
Sheol - Explorers
Cathedral - Hoodoo
Dark Room - Guiding Light
Chest - Panic Station
Void - The Void
Devil Room - Ruled by Secrecy
Angel Room - Dig Down (Gospel Version)
Library Room - Interlude
Secret Room - Endlessly
Shop Room/Arcade Room/Planetarium Room - Can't Take My Eyes off You
Boss Fight - Revolt
Boss Fight (Alternate) - Survival
Boss Fight (Alternate Alternate) - Knights of Cydonia
Satan/Lamb Fight - Stockholm Syndrome
Isaac Fight - Thoughts of a Dying Atheist
??? Fight - Uprising
Hush Fight - Animals
Ultra Greed Fight - Map of the Problematique
Mega Satan Fight - The Small Print
Void Fight - Blockades
Challenge - Pressure
Safe Boss - Drones
Downpour - The Globalist
Dross - Follow Me
Mines - Algorithm
Ashpit - Won't Stand Down
Mausoleum/Corpse/Genesis - Aftermath
Gehenna - The Dark Side (Alternate Reality)
Home/Echoes - The Void (Acoustic)
Mother Fight - Reapers
Beast Fight - Psycho
Boss Rush - Kill Or Be Killed
Dogma Fight - Thought Contagion
Mineshaft Escape - The Dark Side
Abandoned Mineshaft - The Dark Side (Alternate Reality Instrumental)
5 Comments
Mabel  [author] 21 Feb, 2023 @ 3:05am 
Think I got it working. Titles are appearing, and it's the right song names. No idea what I did to make it work but at least it works
Mabel  [author] 21 Feb, 2023 @ 2:40am 
Added that into the main.lua file in place of what was there before and it still won't show the names. Either some mod is conflicting somehow, or isaac is being isaac
☢ Nato Potato ☢ 21 Feb, 2023 @ 2:32am 
the jukebox mod came out after a lot of music mods had already been made, the person who made it added track lists for those soundtracks to the jukebox manually when they released it in order to support those older mods
if you check my later soundtrack mods (Hades onwards) you'll see the same function in the main.lua

as for the names still not showing up I don't know, it worked for me after I added that code into the main.lua, did you add it in the right place? here's what the whole function should look like

function mymod:startGame()
if SoundtrackSongList then
AddSoundtrackToMenu("Muse")
if Titles then
AddTitlesToJukebox("Muse", "Muse", "Muse", Musetracklst)
end
else
Isaac.ConsoleOutput("The Soundtrack Menu Mod is required for Muse Soundtrack")
end
end
mymod:AddCallback(ModCallbacks.MC_POST_GAME_STARTED, mymod.startGame);
Mabel  [author] 21 Feb, 2023 @ 1:32am 
but that does not appear in the main.lua of the other music mods that I looked at, added that code and it still won't show the names
☢ Nato Potato ☢ 21 Feb, 2023 @ 1:11am 
the song names aren't appearing because you didn't include the line of code that actually adds the track names from your mod to the list, need to update like this (and yes the 3 'Muse's are intentional)

AddSoundtrackToMenu("Muse")
if Titles then
AddTitlesToJukebox("Muse", "Muse", "Muse", Musetracklst)
end