If you're using the walkthrough and don't want to click the 'right' option every time, but just follow along with auto-forward enabled, replace your screen choice with this to automatically 'click' the right option after 2 sec:
With that, you only have to choose something if there are 0 or more than 1 'right' options. The rest is VN. Just hit Auto and enjoy reading.
Python:
screen choice(items):
style_prefix "choice"
python:
actions = []
vbox:
for i in items:
textbutton i.caption action i.action
python:
if (preferences.afm_enable or config.skipping) and i.caption[0:1] != "[":
actions.append(i.action)
if len(actions) == 1:
timer 2.0 action actions[0]