[Feedback] Can the music from Sewers Hideout be played more often in the game?

It’s a beautiful musical piece, one of the better ones in the game. Yet I only hear it in one location. Everywhere else it’s the same ominous “dum dum dum” when you go into battle. Found it:

6 Likes

Damn, I like it too. Soundtrack is good but this is perhaps my favorite piece.

Thanks. I wouldn’t hear it because I’ve got music disabled so that I’m not distracted.

AutoHotkey to the rescue!

  1. play it in-game after clicking Ctrl + M
^m::SoundPlay, Grim Dawn - 07 - Lonely Moon.mp3
  1. play it once automatically every time you start the game or activate its window after Alt-Tab
played := false
Loop
{
    if WinActive("Grim Dawn", , "Grim Dawn ")
    {
        if not played
        {
            SoundPlay, Grim Dawn - 07 - Lonely Moon.mp3
            played := true
        }
    }
    else 
        played := false
        
    Sleep, 1000
}

and one funny thing, if you use

if WinActive("Grim Dawn")

instead of similar longer line above, it will even play when you’re planning your build in Grim Tools in your web browser!

3 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.