have a while loop that runs while a is not pressed
WHILE BUTTON()!=#A
put in some code to check whether left dpad button is pressed, if so, move the selection left
IF BUTTON(3) == #LEFT THEN DEC SEL
vice-versa with right dpad button
IF BUTTON(3) == #RIGHT THEN INC SEL
now limit the selection variable
IF SEL < [lowest number] THEN SEL = [lowest number]
-cont-
1そうだね プレイ済み