Ok, got tired of waiting to get authenticated so I made a little autoit script that pushes the login button every 10 seconds until I get in.
As its written it leaves an icon in the systemtray so you can kill it, as it keeps running and tries to login again if you open a new window. You must select the honorbuddy window manually first for it to kick in the first time.
After it starts to try logging in, the honorbuddy window does not need to be active. Feel free to pornsurf.
I could compile this into an exe but I'm pretty sure nobody would download it in todays scary world. Instead, google for autoit3 and download it. Paste the code into a file called something.au3
Load it in autoit and either run it directly from there or, in the Aut2Exe folder, run Aut2exe.exe to convert this into an .exe file you can easely click on.
Edit: Compiled latest version for the brave
As its written it leaves an icon in the systemtray so you can kill it, as it keeps running and tries to login again if you open a new window. You must select the honorbuddy window manually first for it to kick in the first time.
After it starts to try logging in, the honorbuddy window does not need to be active. Feel free to pornsurf.
Code:
Opt("WinTitleMatchMode", 1)
TrayTip("AutoClickLogin", "Starting", 5, 1)
$success = 0
WinWaitActive("[CLASS:WindowsForms10.Window.8.app.0.2004eee]")
TrayTip("AutoClickLogin", "Got window. Starting checking!", 5, 1)
While 1 < 2
while WinGetTitle("[CLASS:WindowsForms10.Window.8.app.0.2004eee]", "") < "hb"
$success = 1
Sleep(1000)
ControlClick("[CLASS:WindowsForms10.Window.8.app.0.2004eee]", "", "[CLASS:WindowsForms10.BUTTON.app.0.2004eee]")
Sleep(9000)
WEnd
If $success = 1 Then
$success = 0
TrayTip("AutoClickLogin", "Successful Login!", 5, 1)
EndIf
Sleep(5000)
Wend
I could compile this into an exe but I'm pretty sure nobody would download it in todays scary world. Instead, google for autoit3 and download it. Paste the code into a file called something.au3
Load it in autoit and either run it directly from there or, in the Aut2Exe folder, run Aut2exe.exe to convert this into an .exe file you can easely click on.
Edit: Compiled latest version for the brave
Attachments
Last edited: