Multi input sequence?

is there a way of making a multi input sequence? For example, you need to do the first execution first, then you have to do the 2nd execution, to fire a single output, in my case, the next widget. IF you execute the 2nd output first, then it will automatically go to false (widget assigned to do it again). Im currently trying to make a Morse Code game assignment (4 Weeks left T-T). Thanks in advance

you can use the Any Key node to read which key was pressed.

or in a widget, you can override the OnKeyDown to read which input was pressed.

From that, all you got to do is compared the pressed key with an array of key structs.

If matched, next key press compared against the next element in array.

If you have a ton of codes you probably want to setup a data table to hold the key combos.