init offset = 1 screen choice(items): style_prefix "choice" if len(items) == 1: timer 0.1 action Call('nosinglechoice', items[0].caption, items[0].action) else: $ choice_hotkey_text = "" vbox: for n, i in enumerate(items, 1): if renpy.variant("pc"): $ choice_hotkey_text = "{size=14}" + str(n) + "{/size} " key str(n) action i.action textbutton choice_hotkey_text + i.caption action i.action label nosinglechoice(text, act): "[text]" return(act)