4 digit pin code cracker

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
dragonlord3989
Posts: 2
Joined: 12 Dec 2015, 02:56

4 digit pin code cracker

12 Dec 2015, 03:02

I need help with this http://puu.sh/lSwLG/589fd1c7b0.jpg I am trying to do this manually but it is going to take for ever I was wondering if any one had a script that would crack it the numbers start at 0000 and and at 9999 the orange box is to check if it is the right one. Any help would be great
User avatar
Exaskryz
Posts: 2882
Joined: 17 Oct 2015, 20:28

Re: 4 digit pin code cracker

12 Dec 2015, 03:14

I take it you just click on the arrows above and below each number?

Code: Select all

F1:: ; start
Loop 10
{
Click ; coordinates for the left most button (top row)
Sleep 100
Loop 10
    {
    Click ; coordinates for the second button
    Sleep 100
    Loop 10
        {
        Click ; coordinates for the third button
        Sleep 100
        Loop 10
            {
            Click ; coordinates for the right most button
            Sleep 100
            Click ; coordinates for the orange button if that has to be clicked
            Sleep 100
            }
        }
    }
}

Esc::ExitApp
The Sleep 100s will mean, testing 10000 numbers, that you should expect taking over half an hour to run this script. That's why I put in the Esc hotkey, in case it goes wrong.

You just really need to fill out the coordinates for the Click command. That can be done using the WIndow Spy tool.

I hope the Click command can work on this game; it tends not to in FPS games.
dragonlord3989
Posts: 2
Joined: 12 Dec 2015, 02:56

Re: 4 digit pin code cracker

12 Dec 2015, 03:50

Thank you very much that works great XD

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: ShatterCoder and 106 guests