I've disassembled this software and there are indeed delay subroutines built into the software:
An example of this:
Public Sub Delay(ByVal Time As Integer)
Dim num As Integer = (Environment.TickCount + Time)
Do While (Environment.TickCount < num)
Application.DoEvents
Thread.Sleep(2)
Loop
End Sub
And directed to the developer, what's the deal with AmericaRunsOnDunkin? ?(
I personally don't like running software that can talk home. Having a global keyboard hook as part of the software, it can easily be converted into a keylogger, you can replace the software without the user knowing, and then you're hacking accounts.
Too risky IMHO.
Connect With Us