Tutorial [SOLVED]Is the a way to make scroll down to show next dialog

forgetmaster

Active Member
Oct 14, 2020
612
370
I just want to scroll down to progress don't wanna click, just like scroll up to see history scroll down to see next?
Is there a way?
 

scrumbles

Engaged Member
Jan 12, 2019
2,250
2,292
Without modding the game?
I guess you can install Autohotkey and make a script that "presses" the Enter key for you when you scroll down.
Probably a couple of lines like that should work:
Code:
#IfWinActive
WheelDown::Send {Enter}
I don't have Windows though, I can't test the script.
 

forgetmaster

Active Member
Oct 14, 2020
612
370
Without modding the game?
I guess you can install Autohotkey and make a script that "presses" the Enter key for you when you scroll down.
Probably a couple of lines like that should work:
Code:
#IfWinActive
WheelDown::Send {Enter}
I don't have Windows though, I can't test the script.
Thanks a lot this is what I wanted
 
  • Like
Reactions: scrumbles