Bug that sometimes freezes text options is still there, regardless of the latest version. Makes for an annoyance on an otherwise very useful mod unfortunately.
I appreciate the idea of this mod, but it didn't work, the game window just shows a black screen. I was able to write an Autohotkey script that auto-plays, press your controller's <BACK> button to toggle auto-play on/off, it feels very intuitive:
isActive := false
Joy7:: { SoundBeep,3500,500 isActive := !isActive if (isActive) { Send "{Enter down}" } else { Send "{Enter up}" } } if you want to use a different controller button, look in the Autohotkey help file's 'Joystick' section, it points to a test script that shows all your controller codes
8 comments
I was able to write an Autohotkey script that auto-plays, press your controller's <BACK> button to toggle auto-play on/off, it feels very intuitive:
isActive := false
Joy7::
{
SoundBeep,3500,500
isActive := !isActive
if (isActive) {
Send "{Enter down}"
} else {
Send "{Enter up}"
}
}
if you want to use a different controller button, look in the Autohotkey help file's 'Joystick' section, it points to a test script that shows all your controller codes
did you use the mod correctly?