I am new here (hello) and been using honorbuddy for less than a month. the issue I am having is usually before sleep I leave wow and GB2 on to gather and do stuff . but when waking up in the morning , I sometimes see "you have been disconnected from server". (here I am talking about wow itself not GB2)
I don't know if people having the same issue as me or not . but I am working on a script for auto relog to wow. it is at very early stage . and needs lots of work to be a decent script . but still it works for now .
so please give me your general opinion about having auto relog . if people like the Idea I can make it as small project and keep developing it . atm its very primitive script . so if you like the idea post here and share your opinion .
*Note: you need to change the address of wow.exe in script if it is under different path
*Note 2 : In this Stage this works only if you have "remember account name" in logging page of wow active . (will add use and password both later if people show any interest in the project)
P.S. don't move the mouse when ur running the script till ur logged in with you character
you can repeat this part of the code as many times as u want so for example if you copy paste it 6 times ,it will repeat relog attempt for 6 times every 1 hour :
you can reduce sleep(3600000); to 1 min to test see if works for u , when ur running the scrip remember to not move the mouse when it is working.
if you don't have script runner or editor you can get this one here free :
also the code might work as .bat file too without script software . haven't test it yet , its just a theory
I don't know if people having the same issue as me or not . but I am working on a script for auto relog to wow. it is at very early stage . and needs lots of work to be a decent script . but still it works for now .
so please give me your general opinion about having auto relog . if people like the Idea I can make it as small project and keep developing it . atm its very primitive script . so if you like the idea post here and share your opinion .
*Note: you need to change the address of wow.exe in script if it is under different path
*Note 2 : In this Stage this works only if you have "remember account name" in logging page of wow active . (will add use and password both later if people show any interest in the project)
P.S. don't move the mouse when ur running the script till ur logged in with you character
Code:
Run("c:\World Of Warcraft\Wow.exe")
sleep(8000); 8 seconds delay to let everything load up
MouseClick("left", 675, 470, 1, 2);clicks on password window
send("password here"); put your password in between " "
send("{enter}");hits enter
sleep(4000);
Mouseclick("left", 1130, 150, 1, 2);this attempts to click the first character you have on loging screen , change this number to move mouse to other char or move ur desired char to first spot ( [left -] 1130 [+ right] ) ( [down+] 150[- up]
Mouseclick("left", 1130, 150, 1, 2);repeat the proccess considered as double click
sleep(3600000); will press enter and repeat the proccess after 1 hour so it can log back in(if ur dc) , you can change this number to suit ur need (1sec x1000= 1000ms)
send("{enter}");
sleep(8000);
MouseClick("left", 672, 470, 1, 2);
sleep(6000);
send("password here");
send("{enter}");
sleep(3000);
Mouseclick("left", 1130, 150, 1, 2);
Mouseclick("left", 1130, 150, 1, 2);
Code:
sleep(3600000); will press enter and repeat the proccess after 1 hour so it can log back in(if ur dc) , you can change this number to suit ur need (1sec x1000= 1000ms)
send("{enter}");
sleep(8000);
MouseClick("left", 672, 470, 1, 2);
sleep(6000);
send("password here");
send("{enter}");
sleep(3000);
Mouseclick("left", 1130, 150, 1, 2);
Mouseclick("left", 1130, 150, 1, 2);
if you don't have script runner or editor you can get this one here free :
Code:
http://www.autoitscript.com/site/
Last edited: