Created
February 10, 2019 15:33
-
-
Save itpropro/f1529c7bb7dd79a914c36f4d8e25d9c5 to your computer and use it in GitHub Desktop.
Example script, how to implement small (and of course slow) buteforce scripts with autohotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SendMode Input | |
!z:: | |
loop 26 { | |
i := Asc("a") + A_Index - 1 | |
loop 26 { | |
j := Asc("a") + A_Index - 1 | |
loop 26 { | |
k := Asc("a") + A_Index - 1 | |
l := Chr(i) | |
m := Chr(j) | |
n := Chr(k) | |
Send, {%l% down}{%m% down}{%n% down} | |
Sleep, 10 | |
Send, {%l% up}{%m% up}{%n% up} | |
If GetKeyState("Esc") | |
ExitApp | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment