Muse Dash
MedMed 2. nov. 2023 kl. 9.35
Auto restart option on missed note?
Would be awesome if there was a toggle somewhere to enable auto restart on missed note. Not really all that great at the game but it can be a bit of a pain to manually restart when trying to 100% a song or just grinding away in an attempt to get better at some things that I'm not as good with. Cant find anything online so I guess I'm just leaving this here in case something like that does show up.
< >
Viser 13 av 3 kommentarer
Duchess Minty 2. nov. 2023 kl. 10.34 
Honestly wish this was an option, along with having a practice mode option that lets you do specific sections of songs.
MedMed 3. nov. 2023 kl. 0.15 
I got so lazy that I decided to put in minimal work to make restarting half a second faster. It's not a perfect solution but it brings down the key presses from 3 to 1 with an auto hotkey script. I personally like Alt so thats what I set it to but it really is basic so it shouldnt be too hard to change the key if anyone decides to use the script as well. Also it will only be active in game so no need to worry about forgetting to close the script once you exit game.
Default keys:
Alt: restarts
F12: closes script

Download autohotkey if you dont have it already, open notepad, paste the script and save as .ahk
might want to select all files when saving the file for it to save properly.
Script:
#If WinActive("ahk_exe MuseDash.exe")
*Alt::
Send {Esc down}
Send {Esc up}
Sleep 15
Send {Left down}
Send {Left up}
Sleep 4
Send {Enter down}
Send {Enter up}
Return

#If

F12::ExitApp
PBalint817 4. nov. 2023 kl. 10.03 
Opprinnelig skrevet av MedMed:
I got so lazy that I decided to put in minimal work to make restarting half a second faster. It's not a perfect solution but it brings down the key presses from 3 to 1 with an auto hotkey script. I personally like Alt so thats what I set it to but it really is basic so it shouldnt be too hard to change the key if anyone decides to use the script as well. Also it will only be active in game so no need to worry about forgetting to close the script once you exit game.
Default keys:
Alt: restarts
F12: closes script

Download autohotkey if you dont have it already, open notepad, paste the script and save as .ahk
might want to select all files when saving the file for it to save properly.
Script:
#If WinActive("ahk_exe MuseDash.exe")
*Alt::
Send {Esc down}
Send {Esc up}
Sleep 15
Send {Left down}
Send {Left up}
Sleep 4
Send {Enter down}
Send {Enter up}
Return

#If

F12::ExitApp
There's a mod called QuickRestart which restarts the level immediately, without needing to open the menu
< >
Viser 13 av 3 kommentarer
Per side: 1530 50

Dato lagt ut: 2. nov. 2023 kl. 9.35
Innlegg: 3