this mini program will find the scancodes which is specific to each key on your keyboard and realted to each different language.
do
cls
print scancode()
sync
loop
once u have found your scancodes for the required keys.
u can use a snippet similar to this
if scancode(yourasciinum) = 1
perform action
endif
you can expand on this also
if scancode(yourasciinum) = 1 and scancode(yourotherasciinum) = 1
perform action
endif
Sometimes tho keys will not respond like the arrow keys used in combos and this is a direct result of the way windows handles the keyboard so its out of reach to fix but combos of standard keys are fine if u use this method.