I have searched this function and used the scripts but all didn't work.
What I want is a script that if I press a
, it does a
and 4.
If press d
, it does d
and 5.
It needs to keep doing the action until I release the button.
a
is for moving left and right is moving right in a fps games but I also wanted to do 4 and 5 at the same time while i'm holding.
Can anyone help me please?
Any help would be appreciated.
If you really just want to add another number to a key, build up a hotkey and add the tilde (
~
) prefix:or, shorter:
For more information on how to build hotkeys, available prefixes and posibilities, you might want to have a look into Hotkeys (AHK documentation). It is pretty well written and important to understand.
Assuming that with "mouse 2" you mean the right mouse button (also see key list for other keys) (untested) :
Please know that StackOverflow is there to help you with your problems, but not to code your scripts for you.