What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Autohotkey scripting and honorbuddy

Thepriest

New Member
Joined
Oct 13, 2012
Messages
7
Reaction score
0
:confused:Hello all!

I have a question regarding the usage of autohotkey scripting and honorbuddy.

I would like to run honorbuddy launcher and start the game and enter my mail + pwd and select my 3th account and login with my last character

I have already done this but after logging into wow it checks if the window of honorbuddy is active else it will active it and starts logging in.

But now comes my problem each time honorbuddy login launched there is a ID that is random created so each time this ID is different.

I tried using **** because it's 4 random digits but that isn't working i tried google and searched here but couldn't find any useful information.

Here is my code:
Code:
Run C:\Honorbuddy.lnk
Sleep, 800
WinWait, Honorbuddy Launcher, 
IfWinNotActive, Honorbuddy Launcher, , WinActivate, Honorbuddy Launcher, 
WinWaitActive, Honorbuddy Launcher, 
MouseClick, left,  218,  125
Sleep, 4000
WinWait, World of Warcraft, 
IfWinNotActive, World of Warcraft, , WinActivate, World of Warcraft, 
WinWaitActive, World of Warcraft, 
MouseClick, left,  880,  599
Sleep, 1500
Send, mailadreshere{SHIFTDOWN}2{SHIFTUP}*.com{TAB}PWD{ENTER}
Sleep, 800
Send, {Down}
Send, {Down}
Send, {ENTER}
Sleep, 4100
Send, {Enter}
Sleep, 13000
WinWait, Honorbuddy Login, 
IfWinNotActive, Honorbuddy Login, , WinActivate, Honorbuddy Login, 
WinWaitActive, Honorbuddy Login, 
MouseClick, left,  130,  75
Sleep, 4200
WinWait, Honorbuddy - Attached to WoW with ID ****, 
IfWinNotActive, Honorbuddy - Attached to WoW with ID ****, , WinActivate, Honorbuddy - Attached to WoW with ID ****, 
WinWaitActive, Honorbuddy - Attached to WoW with ID ****, 
MouseClick, left,  510,  297
Sleep, 500
MouseClick, left,  515,  19

I hope some scripting guru can help me :-)

Greetings
 
Back
Top