Originally Posted by
crescentfresh007
I am having the same problem as Fangster above. Problem just started today; was working fine before. Using v4.01. When the game is launched from desktop, I get the "Waiting for launcher login", then the game opens. Next it goes from "Typing password and logging in" to "Waiting for play button to become available", but the password is not being input to the login screen.
Not sure what could have caused this.
Windows 7 / Aero theme.
Any help is much appreciated.
So the problem lies with the fact that before the launcher update yesterday, the password field was automatically highlighted. NOW you will have to add a line to click or select the password field before entering your password.
I made a dirty fix for this like so
Code:
If $result = 1 Then
custTooltip("Typing password and logging in..." & $pass)
waitSleepLong()
MouseMove(20,20,1)
Send($pass,1)
waitSleep()
Send("{ENTER}")
waitForPatching()
Else
custTooltip("Launcher timeout reached, relaunching...")
closeProcess()
openTOR()
EndIf
becomes
Code:
If $result = 1 Then
custTooltip("Typing password and logging in..." & $pass)
waitSleepLong()
MouseMove(1280,720,1)
MouseClick("left")
waitSleep()
Send($pass,1)
waitSleep()
Send("{ENTER}")
waitForPatching()
Else
custTooltip("Launcher timeout reached, relaunching...")
closeProcess()
openTOR()
EndIf
Where MouseMove(1280,720,1) will have to be your personal mouse coordinates for the password field. Then just recompile bread.au3 and you should be gtg.