- Dec 11, 2020
- 481
- 1,212
I agree. There is a workaround solution. You can make your own auto-clicker. If you copy the script below, paste it into a notepad and save it as a ".ahk" file, then when you are in game, you can start the AHK script by press "tab", and "f12" to pause or unpause it. This will auto-click through the scenes (when your mouse is pointing at the VN). The script below is set to click every 4 seconds "Sleep 4000" (4000 milliseconds). If you want it to click faster, change it to perhaps "Sleep 100" or "Sleep 500".This game has so much clicking. Upon replaying it becomes unbearable, like you have to click none stop for 5 minutes, before selecting the next story to click through for 5 minutes.
I realize i am describing a lot of visual novels here, but as far as I can tell there is no way to auto this, or skip through it, even if it is stuff you have already seen.
The stories get longer and longer, which should be a great thing, but having to click through it over and over is chore.
Tab::
toggle:=!toggle
While toggle{
MouseClick, Left
Sleep 4000
}
f12::
Pause
Suspend
return