I want to block the Alt key but it doesn't work.
new iButton = get_uc( ucHandle, UC_Buttons );
if( iButton & IN_ALT1 ) {
iButton &= ~IN_ALT1;
set_uc( ucHandle, UC_Buttons, iButton );
}
I use something like this.. But no results. I want this to block the +strafe command. I know that it's imposible to block the +strafe, i am happy if i block the Alt key
new iButton = get_uc( ucHandle, UC_Buttons );
if( iButton & IN_ALT1 ) {
iButton &= ~IN_ALT1;
set_uc( ucHandle, UC_Buttons, iButton );
}
I use something like this.. But no results. I want this to block the +strafe command. I know that it's imposible to block the +strafe, i am happy if i block the Alt key