this program turns individual button presses into a representation in binary. each button (w, a, s, d, n, m) corresponds to a bit in a 6-bit string. those strings are passed along to fabio and affect his movement. use the program by pressing the green flag and experimenting with button combos. a (100000): move left d (010000): move right s (001000): crouch w (000100): jump a + w (100100): jump and go left d + w (010100): jump and go right j (000010): say b k (000001): say a
this program works by turning button presses into a string and appending that string to a list, which the fabio sprite is processing constantly in a forever loop to get new button presses.