Happy new year everyone!
atm i try to figure out why the script below crashes (no more input possible, cant even close it with F1 anymore).
This happens when i press the ShiftKey and Right Mouse Button together in fast succession (just randomly hammering them for a while usually is enough), interestingly it only happens
when i use Shift::x or another modifier like Control::x, as soon as i change it to something else like CapsLock::x the problem no longer occurs.
I know that the control keys get treated a little different under windows, but couldnt figure out a solution so far.
Any help/input is highly appreciated, thx in advance for your time!
atm i try to figure out why the script below crashes (no more input possible, cant even close it with F1 anymore).
This happens when i press the ShiftKey and Right Mouse Button together in fast succession (just randomly hammering them for a while usually is enough), interestingly it only happens
when i use Shift::x or another modifier like Control::x, as soon as i change it to something else like CapsLock::x the problem no longer occurs.
I know that the control keys get treated a little different under windows, but couldnt figure out a solution so far.
Any help/input is highly appreciated, thx in advance for your time!
CODE:
f1::ExitApp
f2::
{
send {shift up}
send {x up}
reload
}
shift::x
RButton::
{
send {x up}
send {MButton}
if GetKeyState("shift", "p")
{
send {x down}
}
sleep 20
}
Statistics: Posted by FirstTimeUser_2 — 44 minutes ago